Home
last modified time | relevance | path

Searched refs:pos (Results 76 – 100 of 1609) sorted by relevance

12345678910>>...65

/plugin/cryptsign/
H A Dsyntax.php51 function handle($match, $state, $pos, Doku_Handler $handler){ argument
55 $pos = strrpos($match,'$$');
56 $text = trim(substr($match,0,$pos));
57 $sig = substr($match,$pos+2,32);
58 $user = substr($match,$pos+36);
/plugin/do/db/
H A Dupdate0007.sql9 CREATE TABLE tasks_tmp ( page, md5, date, text , creator , pos ); field
10 INSERT INTO tasks_tmp SElECT page, md5, date, text , creator , pos FROM tasks;
13 CREATE TABLE tasks ( page, md5, date, text , creator , pos); field
14 INSERT INTO tasks SElECT page, md5, date, text , creator , pos FROM tasks_tmp;
/plugin/dtable/
H A Dhelper.php28 function line_nr($pos, $file_path, $start_line = 0) { argument
44 $pos += $find;
56 $pos += $i;
62 if ($start_pos >= $pos) {
65 return self::$line_nr_c[$file_path][$pos];
70 for($i=$start_pos;$i <= $pos; $i++)
76 return self::$line_nr_c[$file_path][$pos];
161 function table($match, $state, $pos) { argument
170 $line = helper_plugin_dtable::line_nr($pos, $this->file_path, $this->start_line);
178 $line = helper_plugin_dtable::line_nr($pos, $this->file_path, $this->start_line);
[all …]
/plugin/creole/syntax/
H A Dpreinline.php33 function handle($match, $state, $pos, Doku_Handler $handler) { argument
36 $handler->addCall('monospace_open', array(), $pos);
39 $handler->addCall('unformatted', array($match), $pos);
42 $handler->addCall('monospace_close', array(), $pos);
/plugin/saveandedit/
H A Daction.php133 $pos = $event->data->findElementByAttribute('type','submit');
134 if(!$pos) return; // no submit button found, source view
135 $pos -= 1;
136 $event->data->insertElement($pos++, form_makeOpenTag('div', array()));
138 …$event->data->insertElement($pos++, form_makeCheckboxField('saveandedit', '1', $this->getLang('btn…
139 $event->data->insertElement($pos++, form_makeCloseTag('div'));
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DRule.php184 if (false !== $pos = strpos($nodeId, ':')) {
185 $this->_nodeId = substr($nodeId, 0, $pos);
186 $this->_nodeOptions = str_split(substr($nodeId, $pos + 1));
225 if (false !== $pos = strpos($defaultId, ':')) {
226 $this->_defaultId = substr($defaultId, 0, $pos);
227 $this->_defaultOptions = str_split(substr($defaultId, $pos + 1));
/plugin/diagrams/syntax/
H A Dmediafile.php44 * @param int $pos
48 public function handle($match, $state, $pos, Doku_Handler $handler) argument
56 $handler->media($match, $state, $pos);
69 * @param int $pos
74 public function handleMove($match, $state, $pos, $plugin, $handler) argument
78 $handler->media($match, $state, $pos);
132 $imageAttributes['data-pos'] = $data['pos'] ?? '';
/plugin/freechat/phpfreechat/lib/utf8/
H A Dutf8_char2byte_pos.php14 function utf8_char2byte_pos($str,$pos) { argument
16 $p = abs($pos); // number of characters wanted
18 if ($pos >= 0) {
35 if ($pos >= 0) {
/plugin/mtg/
H A Dsyntax.php58 * @param int $pos The position in the document
63 public function handle($match, $state, $pos, Doku_Handler $handler) argument
78 $data = array($card_name, $pos, $image_uri);
99 $pos = $data[1];
103 $id = "mtg-" . str_replace(" ", "_", strtolower($card_name)) . "-$pos";
/plugin/headernofloat/
H A Dsyntax.php37 function handle( $match, $state, $pos, &$handler ) argument
55 $opts["pos"] = $pos;
63 $pos = $data["pos"];
70 $renderer->header($title, $level, $pos);
73 $renderer->header($title, $level, $pos);
/plugin/tagsections/action/
H A Dajax.php114 $pos = 0;
120 while ($data[$pos]['id'] != $tmp_ns) {
121 …if ($pos >= count($data) || ($data[$pos]['level'] <= $level+1 && strnatcmp(utf8_encodeFN($data[$po…
122 …array_splice($data, $pos, 0, array(array('level' => $level+1, 'id' => $tmp_ns, 'open' => 'true')));
125 ++$pos;
/plugin/numberedheadings/
H A Dsyntax.php73 public function handle($match, $state, $pos, Doku_Handler $handler)
139 if ($this->getSectionState($handler)) $this->addCall($handler, 'section_close', [], $pos);
142 $handler->addPluginCall(substr(get_class($this), 14), $data, $state, $pos, $match);
143 $this->addCall($handler, 'section_open', [$level], $pos);
164 private function addCall(Doku_Handler $handler, $method, $args, $pos)
168 $handler->addCall($method, $args, $pos);
171 $handler->_addCall($method, $args, $pos);
66 handle($match, $state, $pos, Doku_Handler $handler) global() argument
155 addCall(Doku_Handler $handler, $method, $args, $pos) global() argument
/plugin/codemirror/dist/modes/
H A Dperl.min.js1pos:1,print:1,printf:1,prototype:1,push:1,q:null,qq:null,qr:null,quotemeta:null,qw:null,qx:null,ra… property in AnonymousFunction3829359c0200.a
/plugin/odt/ODT/css/
H A Dcssdocument.php155 * @param integer $pos Current position in $input
159 protected function collect_attribute_value (&$value, $input, $pos, $max) { argument
163 while ($pos < $max) {
164 $sign = $input [$pos];
165 $pos++;
185 return $pos;
201 $pos = 0;
203 while ($pos < $max) {
204 $equal_sign = strpos ($attributes, '=', $pos);
208 $att_name = substr ($attributes, $pos, $equal_sign-$pos);
[all …]
/plugin/odt/helper/
H A Dcssimport.php942 $pos = 0;
944 while ( $pos < $end ) {
954 $property = substr ($decls, $pos, $colon - $pos);
977 $pos = $semi + 1;
1123 $pos = 0;
1134 $pos += 2;
1145 $pos += 2;
1151 $pos++;
1162 $pos = 0;
1183 $before_open_bracket = substr ($contents, $pos, $bracket_open - $pos);
[all …]
/plugin/bootswrapper/syntax/
H A Dpane.php39 list($state, $match, $pos, $attributes) = $data;
48 …$renderer->startSectionEdit($pos, array('target' => 'plugin_bootswrapper_pane', 'name' => $state));
50 $renderer->startSectionEdit($pos, 'plugin_bootswrapper_pane', $state);
57 $renderer->finishSectionEdit($pos + strlen($match));
/plugin/linkpagechild/
H A Dsyntax.php57 * @param int $pos The position in the document
62 public function handle($match, $state, $pos, Doku_Handler $handler) argument
71 $handler->internallink($rewritten, $state, $pos);
74 $handler->media($rewritten, $state, $pos);
/plugin/include/syntax/
H A Dheader.php22 function handle($match, $state, $pos, Doku_Handler $handler) { argument
35 list($headline, $lvl, $pos, $page, $sect, $flags) = $data;
54 $classes[] = $renderer->startSectionEdit($pos, array('target' => 'section', 'name' => $headline, 'hid' => $hid));
56 $classes[] = $renderer->startSectionEdit($pos, 'section', $headline);
68 $renderer->header($headline, $lvl, $pos);
/plugin/task/
H A Dhelper.php457 $pos = 1;
460 $form->addFieldsetOpen($this->getLang('newtask'), $pos++);
468 $input = $form->addTextInput('title', NULL, $pos++);
476 $input = $form->addTextInput('user', NULL, $pos++);
491 $form->addHTML('</td></tr>', $pos++);
496 $input = $form->addTextInput('date', NULL, $pos++);
498 $form->addHTML('</td></tr>', $pos++);
513 $form->addHTML('</td></tr>', $pos++);
515 $form->addHTML('</table>', $pos++);
518 $form->addButton(NULL, $lang['btn_create'], $pos++);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php72 private $pos; variable in phpseclib3\\Net\\SFTP\\Stream
332 $this->pos += strlen($result);
364 $this->pos += strlen($data);
365 if ($this->pos > $this->size) {
366 $this->size = $this->pos;
380 return $this->pos;
418 $offset += $this->pos;
424 $this->pos = $offset;
559 $this->pos = 0;
572 if (isset($this->entries[$this->pos])) {
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php345 if ($pos === null) {
366 $pos = 0;
369 while (($pos = strpos($input, '@', $pos)) !== false) {
374 return $pos;
377 $pos++;
701 $pos = strpos($name, '\\');
702 $alias = (false === $pos)? $name : substr($name, 0, $pos);
716 $name = (false !== $pos)
933 $pos = strpos($className, '\\');
934 $alias = (false === $pos) ? $className : substr($className, 0, $pos);
[all …]
/plugin/struct/meta/
H A DFilterValueListHandler.php25 * @param int pos - byte index where match was made
27 public function row($match, $state, $pos) argument
51 * @param int pos - byte index where match was made
53 public function singleQuoteString($match, $state, $pos) argument
64 * @param int pos - byte index where match was made
66 public function escapeSequence($match, $state, $pos)
76 * @param int pos - byte index where match was made
78 public function number($match, $state, $pos)
68 escapeSequence($match, $state, $pos) global() argument
80 number($match, $state, $pos) global() argument
/plugin/exttab1/
H A Dsyntax.php205 if ( ($pos = strpos($linedata, '|', 2)) !== false ) {
206 $parsedData = $this->_parseDisplayData(trim(substr($linedata, $pos + 1)));
207 $my2c .= ' <caption ' . trim(substr($linedata, 2, $pos - 2)) . '>' .
240 if ( ($pos = strpos($pick, '|', 1)) !== false ) {
241 $parsedData = $this->_parseDisplayData(trim(substr($pick, $pos + 1)));
242 $my2c .= ' <td ' . trim(substr($pick, 1, $pos - 1)) . '>' .
269 if ( ($pos = strpos($pick, '|', 1)) !== false ) {
270 $parsedData = $this->_parseDisplayData(trim(substr($pick, $pos + 1)));
272 $my2c .= ' <th ' . trim(substr($pick, 1, $pos - 1)) . '>' .
/plugin/markdowku/
H A Dolists.php39 function handle($match, $state, $pos, Doku_Handler $handler) { argument
44 $handler->_addCall('list_open', array($match), $pos);
47 $handler->_addCall('list_item', array($match), $pos);
50 $handler->_addCall('cdata', array($match), $pos);
53 $handler->_addCall('list_close', array(), $pos);
H A Dulists.php40 function handle($match, $state, $pos, Doku_Handler $handler) { argument
45 $handler->_addCall('list_open', array($match), $pos);
48 $handler->_addCall('list_item', array($match), $pos);
51 $handler->_addCall('cdata', array($match), $pos);
54 $handler->_addCall('list_close', array(), $pos);

12345678910>>...65