Home
last modified time | relevance | path

Searched refs:pos (Results 51 – 75 of 1609) sorted by relevance

12345678910>>...65

/plugin/markdowku/
H A Dblockquotes.php50 function handle($match, $state, $pos, Doku_Handler $handler) { argument
59 $handler->_addCall('quote_start', $quotearg, $pos);
61 $handler->_addCall('quote_end', array(), $pos);
68 $handler->_addCall('quote_newline', $quotearg, $pos);
72 $plugin->handle($quoteinarg, $state, $pos, $handler);
78 $plugin->handle($quoteinarg, $state, $pos, $handler);
84 $plugin->handle($quoteinarg, $state, $pos, $handler);
86 $handler->_addCall('cdata', array($quoteinarg), $pos);
H A Dcodeblocks.php35 function handle($match, $state, $pos, Doku_Handler $handler) { argument
40 $handler->_addCall('preformatted_start', array($match), $pos);
43 $handler->_addCall('preformatted_newline', array($match), $pos);
46 $handler->_addCall('preformatted_content', array($match), $pos);
49 $handler->_addCall('preformatted_end', array(), $pos);
50 $handler->_addCall('preformatted_content', array($match), $pos);
/plugin/latexport/_test/
H A Dcommand.php19 public $pos; variable in CommandHeader
21 function __construct($text, $level, $pos) { argument
25 $this->pos = $pos;
151 private $pos = null; variable in CommandTableOpen
153 function __construct($maxcols = null, $numrows = null, $pos = null) { argument
157 $this->pos = $pos;
162 private $pos = null; variable in CommandTableClose
164 function __construct($pos = null) { argument
166 $this->pos = $pos;
/plugin/creole/syntax/
H A Dheader.php40 function handle($match, $state, $pos, Doku_Handler $handler) { argument
56 $this->eventhandler->notifyEvent('insert', 'header', 'header', $pos, $match, $handler);
58 if ($handler->getStatus('section')) $handler->addCall('section_close', array(), $pos);
60 $handler->addCall('header', array($title, $level, $pos), $pos);
62 $handler->addCall('section_open', array($level), $pos);
/plugin/zip/pear/File/Archive/Predicate/
H A DDuplicate.php56 var $pos = 0; variable in File_Archive_Predicate_Duplicate
68 $pos = 0;
77 $this->newest[$filename] = array($stat[9], $pos);
79 $pos++;
108 ($comp == 0 && $this->pos != $value[1]);
111 $this->pos++;
/plugin/findologicxmlexport/vendor/hoa/protocol/Node/
H A DLibrary.php65 if (false !== $pos = strpos($queue, '/')) {
66 $head = substr($head, 0, $pos);
67 $queue = DIRECTORY_SEPARATOR . substr($queue, $pos + 1);
86 $pos = strrpos(rtrim($part, DIRECTORY_SEPARATOR), DIRECTORY_SEPARATOR) + 1;
87 $head = substr($part, 0, $pos);
88 $tail = substr($part, $pos);
H A DNode.php213 $pos = strpos($path, '/');
215 if (false !== $pos) {
216 $next = substr($path, 0, $pos);
222 if (false === $pos) {
237 return $tnext->_resolve(substr($path, $pos + 1), $accumulator, $id);
261 if (false !== $pos = strrpos($reach, "\r")) {
262 $reach = substr($reach, $pos + 1);
281 if (false !== $pos = strrpos($choice, "\r")) {
282 $choice = substr($choice, $pos + 1);
/plugin/tcycle/
H A Dsyntax.php33 function handle($match, $state, $pos, Doku_Handler $handler) { argument
103 $pos = strpos($attributeString, $attribute."=");
104 if ($pos === false) {
105 $pos = strpos($attributeString, $attribute." ");
107 if ($pos > 0) {
108 $pos = $pos + strlen($attribute);
109 $value = substr($attributeString,$pos);
115 $pos = strpos($value, " ");
116 if ($pos > 0) {
117 $value = substr($value,0,$pos);
/plugin/layeranimation/syntax/
H A Danimation.php41 function handle($match, $state, $pos, Doku_Handler $handler){ argument
60 return array('animation__start', $option, $pos);
65 return array('animation__end', null, $pos + strlen($match));
80 list($instr, $data, $pos) = $input;
88 …xists($renderer, "finishSectionEdit") ? ' ' . $renderer->startSectionEdit($pos, array( 'target' =>…
95 … if ( method_exists($renderer, "finishSectionEdit") ) { $renderer->finishSectionEdit($pos); }
/plugin/loglog/helper/
H A Dlogging.php86 $pos = ftell($fp);
89 while ($pos) {
92 if ($pos > $chunk_size) {
93 $pos -= $chunk_size;
96 $read = $pos;
97 $pos = 0;
99 fseek($fp, $pos);
109 if ($pos) $chunk = array_shift($cparts);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DAppendStream.php18 private $pos = 0; variable in GuzzleHttp\\Stream\\AppendStream
75 $this->pos = $this->current = 0;
102 return $this->pos;
147 $this->pos = $this->current = 0;
161 while ($this->pos < $offset && !$this->eof()) {
162 $this->read(min(8096, $offset - $this->pos));
165 return $this->pos == $offset;
191 $this->pos += strlen($buffer);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfString.php29 $pos = $startPos = $streamReader->getOffset();
33 for ($length = \strlen($buffer); $openBrackets !== 0 && $pos < $length; $pos++) {
34 switch ($buffer[$pos]) {
42 $pos++;
47 $result = \substr($buffer, $startPos, $openBrackets + $pos - $startPos - 1);
48 $streamReader->setOffset($pos);
/plugin/revealjs/syntax/
H A Dheader.php47 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
68 $handler->_addCall('header', array($title, $level, $pos), $pos);
70 return array($title, $level, $pos);
88 list($text, $level, $pos) = $data;
124 $pos = $renderer->wikipage_next_slide_no_footer_position;
132 * @param int $pos byte position in the original source
145 $renderer->finishSectionEdit($pos - 1);
161 …$renderer->startSectionEdit($pos, $sectionEditStartData, 'Slide '.$renderer->wikipage_slide_number…
/plugin/complex_lists/complex_lists/
H A Dsyntax.php50 function handle($match, $state, $pos, &$handler){ argument
60 $handler->base($match, $state, $pos);
305 $listtext = substr($renderer->doc, $pos + 22);
306 $renderer->doc = substr($renderer->doc, 0, $pos);
313 $pos = strpos($listtext, '<!--CPLX-LIST-');
314 if (!$pos)
319 $renderer->doc .= substr($listtext, 0, $pos);
320 $listtext = substr($listtext, $pos+14);
321 $pos = strpos($listtext, '-->');
322 if (!$pos)
[all …]
/plugin/src/
H A Dsyntax.php59 * @param int $pos The position in the document
63 public function handle($match, $state, $pos, Doku_Handler &$handler) { argument
188 $pos = mb_strpos($haystack, $needle);
189 while ($pos !== false) {
190 $haystack = mb_substr($haystack, 0, $pos) . $replacement
191 . mb_substr($haystack, $pos + $needle_len);
192 $pos = mb_strpos($haystack, $needle, $pos + $replacement_len);
207 $pos = mb_strrpos($url, '/');
208 $url = mb_substr($url, 0, $pos);
/plugin/authyubikey/
H A Daction.php55 $pos = $form->findElementByAttribute('name', 'p');
56 $form->insertElement($pos + 1, $element);
81 $pos = $form->findElementByAttribute('name', 'login');
82 $elem =& $form->getElementAt($pos);
113 $pos = $form->findElementByAttribute('name', 'email');
114 $form->insertElement($pos + $i + 1, $element);
/plugin/togglewrap/
H A Dsyntax.php30 public function handle($match, $state, $pos, Doku_Handler &$handler){ argument
36 return array($class, $label, $pos, $opts);
41 list($class, $label, $pos, $opts) = $data;
42pos.'" type="checkbox" class="togglewrap" value="'.strtolower($class).'" '.(in_array('checked',$op…
/plugin/structsection/
H A Dsyntax.php64 * @param int $pos The position in the document
68 public function handle($match, $state, $pos, \Doku_Handler $handler) argument
111 $pos = $handlerData['pos'];
113 $R->finishSectionEdit($pos - 1);
137 $R->header($field->getColumn()->getTranslatedLabel(), $lvl, $pos);
138 $pos += strlen($field->getColumn()->getTranslatedLabel());
150 $R->finishSectionEdit($pos);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php21 private $pos = 0; variable in GuzzleHttp\\Psr7\\AppendStream
77 $this->pos = $this->current = 0;
96 $this->pos = $this->current = 0;
110 return $this->pos;
161 $this->pos = $this->current = 0;
174 while ($this->pos < $offset && !$this->eof()) {
175 $result = $this->read(min(8096, $offset - $this->pos));
217 $this->pos += strlen($buffer);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
H A DMyanmar.php118 $pos = ($type >> 8);
237 switch ($pos) {
240 $pos = self::POS_PRE_M;
254 $info['myanmar_position'] = $pos;
400 $pos = self::POS_AFTER_MAIN;
412 if ($pos == self::POS_AFTER_MAIN && $info[$i]['myanmar_category'] == self::OT_VBLW) {
413 $pos = self::POS_BELOW_C;
414 $info[$i]['myanmar_position'] = $pos;
418 if ($pos == self::POS_BELOW_C && $info[$i]['myanmar_category'] == self::OT_A) {
422 if ($pos
[all...]
/plugin/calendoku/syntax/
H A Dshowicalendar.php28 function handle($match, $state, $pos, &$handler) { argument
43 $handler->_addCall('cdata', array($match), $pos);
51 $handler->_addCall('cdata', array($match), $pos);
64 $handler->_addCall('cdata', array($match), $pos);
72 $handler->_addCall('cdata', array($match), $pos);
82 reHandleText($componenttext, $pos, $handler);
/plugin/phosphor/
H A Dphblock.php50 function handle($match, $state, $pos, Doku_Handler $handler){ argument
75 return array('phosphor__start', $option, $pos);
80 return array('phosphor__end', null, $pos + strlen($match));
95 list($instr, $data, $pos) = $input;
101 …xists($renderer, "finishSectionEdit") ? ' ' . $renderer->startSectionEdit($pos, array( 'target' =>…
114 … if ( method_exists($renderer, "finishSectionEdit") ) { $renderer->finishSectionEdit($pos); }
/plugin/dpicorrect/
H A Daction.php86 $pos = strpos($string, "JFIF");
88 if($pos===false) { return $this->NO_RESOLUTION; }
90 $pos += 5 + 2;
91 $unit = ord(substr($string, $pos, 1));
92 $x = (ord(substr($string, $pos+1, 1)) << 8) + ord(substr($string, $pos+2, 1));
93 $y = (ord(substr($string, $pos+3, 1)) << 8) + ord(substr($string, $pos+4, 1));
/plugin/badbehaviour/
H A Dadmin.php172 $pos = ftell($fp);
175 while($pos){
178 if($pos > $chunk_size){
179 $pos -= $chunk_size;
182 $read = $pos;
183 $pos = 0;
185 fseek($fp,$pos);
195 if($pos) $chunk = array_shift($cparts);
/plugin/codehighlight/cp/engines/
H A Dopera.js231 pos : -1, // actual history position property in CodePress.actions
237 this.history[this.pos] = editor.innerHTML;
239 this.pos--;
240 if(typeof(this.history[this.pos])=='undefined') this.pos++;
241 editor.innerHTML = this.history[this.pos];
246 this.pos++;
247 if(typeof(this.history[this.pos])=='undefined') this.pos--;
248 editor.innerHTML = this.history[this.pos];
253 if(this.pos>20) this.history[this.pos-21] = undefined;
254 return ++this.pos;

12345678910>>...65