Home
last modified time | relevance | path

Searched refs:pos (Results 101 – 125 of 1609) sorted by relevance

12345678910>>...65

/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfHexString.php33 * @var int $pos
37 $pos = \strpos($buffer, '>', $bufferOffset);
38 if ($pos === false) {
48 $result = \substr($buffer, $bufferOffset, $pos - $bufferOffset);
49 $streamReader->setOffset($pos + 1);
/plugin/bbcode/
H A Dlink.php26 function handle($match, $state, $pos, Doku_Handler $handler) { argument
40 $handler->_addCall('externallink',array($url,$title),$pos);
44 $handler->_addCall('locallink',array(substr($url,1),$title),$pos);
48 $handler->_addCall('internallink',array($url,$title),$pos);
/plugin/mdpage/vendor/cebe/markdown/block/
H A DFencedCodeTrait.php38 $fence = substr($line, 0, $pos = strrpos($line, $line[0]) + 1);
39 $language = rtrim(substr($line, $pos));
43 if (($pos = strpos($line = $lines[$i], $fence)) === false || $pos > 3) {
/plugin/diagrams/action/
H A Dembed.php46 $pos = $INPUT->int('pos');
65 $svg = substr($svg, $pos, $len);
91 $pos = $INPUT->int('pos');
116 $new = substr($original, 0, $pos) . $svg . substr($original, $pos + $len);
/plugin/codehighlight/cp/engines/
H A Dgecko.js260 pos : -1, // actual history position property in CodePress.actions
268 this.history[this.pos] = editor.innerHTML;
270 this.pos --;
271 if(typeof(this.history[this.pos])=='undefined') this.pos ++;
272 editor.innerHTML = this.history[this.pos];
279 this.pos++;
280 if(typeof(this.history[this.pos])=='undefined') this.pos--;
281 editor.innerHTML = this.history[this.pos];
286 if(this.pos>20) this.history[this.pos-21] = undefined;
287 return ++this.pos;
H A Dmsie.js275 pos : -1, // actual history position property in CodePress.actions
281 this.history[this.pos] = editor.innerHTML;
283 this.pos--;
284 if(typeof(this.history[this.pos])=='undefined') this.pos++;
285 editor.innerHTML = this.history[this.pos];
290 this.pos++;
291 if(typeof(this.history[this.pos])=='undefined') this.pos--;
292 editor.innerHTML = this.history[this.pos];
297 if(this.pos>20) this.history[this.pos-21] = undefined;
298 return ++this.pos;
/plugin/zip/pear/File/Archive/Reader/
H A DMimeList.php38 $pos = strrpos($filename, '.');
40 if ($pos !== false) {
41 $extension = strtolower(substr($filename, $pos+1));
/plugin/fckg/
H A Dscript.js157 var pos = 0;
161 for ( var pos = stack.length - 1; pos >= 0; pos-- )
162 if ( stack[ pos ] == tagName )
165 if ( pos >= 0 ) {
167 for ( var i = stack.length - 1; i >= pos; i-- )
172 stack.length = pos;
/plugin/googlesearch/
H A Dnusoap.php2574 if($pos > 1){
2578 if($pos > 1){
5941 $this->message[$pos] = array('pos' => $pos,'children'=>'','cdata'=>'');
5947 if($pos != 0){
6108 $this->message[$pos]['result'] =& $this->multirefs[$id][$pos];
6113 $this->message[$pos]['result'] = $this->buildVal($pos);
6121pos]['xattrs']['!'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$pos]['typ…
6131 $this->message[$pos]['result'] = $this->message[$pos]['xattrs'];
6138pos]['result'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$pos]['type'], …
6144 $this->message[$pos]['result'] = $this->message[$pos]['cdata'];
[all …]
/plugin/bibtex4dw/syntax/
H A Dbibtex.php51 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
60 return array($state, $matches[0], $matches[1], $pos);
62 return array($state, '', $match, $pos);
69 list($state, $substate, $match, $pos) = $data;
139 list($state, $substate, $match, $pos) = $data;
/plugin/alphaindex/
H A Dsyntax.php49 function handle($match, $state, $pos, Doku_Handler $handler){ argument
65 $pos = strrpos($ID,':');
66 if($pos != false){
67 $ns = substr($ID,0,$pos);
202 $pos = strrpos(utf8_decode($tmpData), ':');
207 if($pos != FALSE) {
208 $pageName = utf8_substr($tmpData, $pos+1, utf8_strlen($tmpData));
215 if($pos != FALSE) {
216 $pageName = utf8_substr($tmpData, $pos+1, utf8_strlen($tmpData));
/plugin/task/syntax/
H A Dtasks.php27 function handle($match, $state, $pos, Doku_Handler $handler) { argument
180 $pos = 1;
182 $form->addHTML('<label class="simple">', $pos++);
183 $form->addHTML('<span>'.$this->getLang('view').'</span>', $pos++);
199 $input = $form->addDropdown('filter', $dropDownOptions, NULL, $pos++);
202 $form->addHTML('</label>', $pos++);
205 … $form->addHTML('<label class="simple"><span>'.$this->getLang('view_user').':</span>', $pos++);
206 $input = $form->addCheckbox('view_user', NULL, $pos++);
211 $form->addHTML('</label>', $pos++);
215 $form->addButton(NULL, $this->getLang('btn_refresh'), $pos++);
/plugin/definitionlist/
H A Dsyntax.php83 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
87 … $this->_writeCall('dl',DOKU_LEXER_ENTER,$pos,$match,$handler); // open a new DL
88 … $this->_writeCall('dt',DOKU_LEXER_ENTER,$pos,$match,$handler); // always start with a DT
96 …$this->_writeCall($oldtag,DOKU_LEXER_EXIT,$pos,$match,$handler); // close the current definition …
97 … $this->_writeCall($newtag,DOKU_LEXER_ENTER,$pos,$match,$handler); // ...and open the new dl item
103 $this->_writeCall($tag,DOKU_LEXER_EXIT,$pos,$match,$handler);
107 $this->_writeCall('dl',DOKU_LEXER_EXIT,$pos,$match,$handler);
111 …$handler->base($match, $state, $pos); // cdata --- use base() as _writeCall() is prefixed for p…
126 protected function _writeCall($tag, $state, $pos, $match, &$handler) { argument
127 $handler->addPluginCall('definitionlist', array($tag, $state, ''), $state, $pos, $match);
/plugin/include/syntax/
H A Dinclude.php64 * @param int $pos The position of the match
68 function handle($match, $state, $pos, Doku_Handler $handler) { argument
78 return array($mode, $page, $sect, explode('&', $flags), $level, $pos);
98 list($mode, $page, $sect, $flags, $level, $pos) = $data;
140 $renderer->meta['plugin_include']['secids'][$id] = array('hid' => 'plugin_include__'.str_replace(':', '__', $id), 'pos' => $pos);
144 if (isset($secids[$id]) && $pos === $secids[$id]['pos']) {
/plugin/mytemplate/
H A Daction.php132 if ($pos = strpos($field, '=')) {
133 $map[trim(substr($field, 0, $pos))] = trim(substr($field, $pos + 1));
218 function do_lookrange($map, $pos) { argument
225 if ($pos < $key) {
243 $pos = count($fields) - 1;
244 for ($pos = count($fields) - 1; $pos >= 0; $pos--) {
245 $row = str_replace('@' . $pos, trim($fields[$pos], ' \''), $row);
/plugin/owncloud/
H A Dwork.php35 $pos = strrpos($link,'?');
36 if($pos != false){
37 $src = substr($link,0,$pos);
38 $param = substr($link,$pos+1);
/plugin/database2/
H A Dsyntax.php57 * @param int $pos The position in the document
61 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
75 $pos = 0;
78 while($pos < strlen($temp)) {
79 $arg = Database2::parseAssignment($temp, $pos);
/plugin/slider/
H A Dsyntax.php62 * @param int $pos The position in the document
66 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
105 $handler->_addCall('cdata', array($match), $pos);
115 $handler->_addCall('header',array($title,$level,$pos), $pos);
118 … $handler->addPluginCall('wrap_closesection', array(), DOKU_LEXER_SPECIAL, $pos, '');
/plugin/odt/ODT/
H A DODTSpan.php148 $pos = 0;
149 while ($pos < $max) {
150 $found = ODTUtility::getNextTag($HTMLCode, $pos);
153 $entry ['content'] = substr($HTMLCode, $pos, $found [0]-$pos);
181 $pos = $found [1]+1;
184 $entry ['content'] = substr($HTMLCode, $pos);
/plugin/bookcreator/action/
H A Dexport.php
/plugin/mantis/lib/
H A Dnusoap.php2930 if($pos > 1){
2934 if($pos > 1){
6589 $this->message[$pos] = array('pos' => $pos,'children'=>'','cdata'=>'');
6595 if($pos != 0){
6760 $this->message[$pos]['result'] =& $this->multirefs[$id][$pos];
6765 $this->message[$pos]['result'] = $this->buildVal($pos);
6773pos]['xattrs']['!'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$pos]['typ…
6783 $this->message[$pos]['result'] = $this->message[$pos]['xattrs'];
6790pos]['result'] = $this->decodeSimple($this->message[$pos]['cdata'], $this->message[$pos]['type'], …
6796 $this->message[$pos]['result'] = $this->message[$pos]['cdata'];
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_quick_info.js169 var pos = this._get_event_counter_part(id, offset, container.viewport);
171 if (pos){
172 this._quick_info_box = this._init_quick_info(pos, id);
177 this._show_quick_info(pos, offset);
237 gantt._show_quick_info = function(pos, offset){ argument
253 …qi.style.left = Math.min(Math.max(scrolls.x, pos.left - pos.dx*(width - pos.width)), screenWidth) …
254 qi.style.top = pos.top - (pos.dy ? (height + pos.height + 2*offset) : 0) + "px";
257 if (pos.dx == 1){
272 qi.className += " gantt_qi_"+(pos.dx == 1 ? "left" : "right");
288 gantt._init_quick_info = function(pos, id){ argument
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFunctionCommentSniff.php194 foreach ($tokens[$commentStart]['comment_tags'] as $pos => $tag) {
219 $end = $tokens[$commentStart]['comment_tags'][($pos + 1)];
272 foreach ($tokens[$commentStart]['comment_tags'] as $pos => $tag) {
365 foreach ($realParams as $pos => $param) {
367 $realParams[$pos]['name'] = '...'.$realParams[$pos]['name'];
371 foreach ($params as $pos => $param) {
413 if ($suggestedTypeHint !== '' && isset($realParams[$pos]) === true) {
414 $typeHint = $realParams[$pos]['type_hint'];
442 $typeHint = $realParams[$pos]['type_hint'];
506 if (isset($realParams[$pos]) === true) {
[all …]
/plugin/badbehaviour/bad-behavior/
H A Dblacklist.inc.php104 $pos = strpos($ua, $spambot);
105 if ($pos !== FALSE && $pos == 0) {
H A Dfunctions.inc.php20 for ($pos=0, $chunks = array(); $pos < strlen($string); $pos+=$split_length) {
21 $chunks[] = substr($string, $pos, $split_length);

12345678910>>...65