Home
last modified time | relevance | path

Searched refs:pos (Results 201 – 225 of 1609) sorted by relevance

12345678910>>...65

/plugin/datasearchform/
H A Dsyntax.php55 * @param int $pos The character position of the matched text
59 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
68 return array($options, $state, $pos);
/plugin/textmodule/
H A Daction.php66 $pos = $event->data->findElementByAttribute( 'type', 'submit' );
67 if ( !$pos ){ return; }
73 $event->data->insertElement( $pos++, $out );
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
H A DFileCommentSniff.php267 $pos = 0;
288 if (isset($foundTags[$pos]) === false) {
292 if ($foundTags[$pos] !== $tag) {
295 ($pos + 1),
298 …$phpcsFile->addError($error, $tokens[$commentStart]['comment_tags'][$pos], ucfirst(substr($tag, 1)…
302 $pos++;
303 while (isset($foundTags[$pos]) === true && $foundTags[$pos] === $tag) {
304 $pos++;
/plugin/jdraw/src/com/mxgraph/examples/swing/
H A DUserObject.java119 int pos = label.indexOf(' '); in UserObject()
121 String firstName = (pos > 0) ? label.substring(0, in UserObject()
122 pos).trim() : label; in UserObject()
123 String lastName = (pos > 0) ? label.substring( in UserObject()
124 pos + 1, label.length()).trim() : ""; in UserObject()
/plugin/s5reloaded/ui/effects_support/
H A Deffects.js77 reverse: function(pos) { argument
78 return 1-pos;
81 var pos = ((-Math.cos(pos*Math.PI)/4) + .75) + Math.random()/4;
82 return pos > 1 ? 1 : pos;
84 wobble: function(pos) { argument
85 return (-Math.cos(pos*Math.PI*(9*pos))/2) + .5;
90 spring: function(pos) { argument
91 return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
93 none: function(pos) { argument
96 full: function(pos) { argument
[all …]
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushXml.js35 pos = 0,
41 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
45 pos = attributes.index + attributes[0].length;
/plugin/requiz/
H A Daction.php94 $pos = $event->data->findElementByAttribute('type','submit');
95 if(!$pos) return; // no button -> source view mode
114 $event->data->insertElement($pos++,$out);
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushXml.js19 pos = 0,
25 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
29 pos = attributes.index + attributes[0].length;
/plugin/todo/
H A Daction.php216 private function _strnpos($haystack, $needle, $occurance, $pos = 0) {
218 $pos = strpos($haystack, $needle, $pos);
220 if ($pos===false) {return false; }
222 $pos++;
224 return $pos - 1;
192 _strnpos($haystack, $needle, $occurance, $pos = 0) global() argument
/plugin/freechat/phpfreechat/data/public/js/
H A Dpfcprompt.js102 var pos = this._findPos(this.container);
103 this.bgbox.style.top = pos[1]+'px';
104 this.bgbox.style.left = pos[0]+'px';
122 … this.box.style.top = parseInt(pos[1]+(this.bgbox.offsetHeight-this.box.offsetHeight)/2)+'px';
123 this.box.style.left = parseInt(pos[0]+(this.bgbox.offsetWidth-this.box.offsetWidth)/2)+'px';
/plugin/abc2/
H A Dsyntax.php60 * @param int $pos The position in the document
65 public function handle($match, $state, $pos, Doku_Handler $handler) argument
370 $pos = strpos($haystack, $needle);
371 if ($pos !== false) {
372 $newstring = substr_replace($haystack, $replace, $pos, strlen($needle));
/plugin/latexport/implementation/
H A Ddecorator_tables.php110 * @param int $pos byte position in the original source
112 function table_open($maxcols = null, $numrows = null, $pos = null) { argument
114 $this->decorator->table_open($maxcols, $numrows, $pos);
118 function table_close($pos = null) { argument
119 $this->decorator->table_close($pos);
/plugin/combo/syntax/
H A Dheadingwiki.php118 * @param int $pos
122 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
143 PluginUtility::POSITION => $pos
190 $pos = $data[PluginUtility::POSITION];
191 HeadingTag::processRenderEnterXhtml($context, $tagAttributes, $renderer, $pos);
/plugin/dokuprism/syntax/
H A Dcode.php47 function handle($match, $state, $pos, Doku_Handler $handler){ argument
53 return array($match, $state, $pos);
60 list($match, $state, $pos) = $data;
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dclass.csstidy.php833 foreach($this->sel_separate as $num => $pos)
836 $pos += 1;
840 $lastpos = $pos;
858 * @param integer $pos
863 function escaped(&$string,$pos) argument
865 return !(@($string{$pos-1} != '\\') || csstidy::escaped($string,$pos-1));
950 * @param integer $pos
955 function property_is_next($istring, $pos) argument
958 $istring = substr($istring,$pos,strlen($istring)-$pos);
959 $pos = strpos($istring,':');
[all …]
/plugin/zip/pear/File/Archive/Predicate/
H A DIndex.php44 var $pos = 0; variable in File_Archive_Predicate_Index
58 return isset($this->indexes[$this->pos++]);
/plugin/svgembed/
H A Dsyntax.php34 $pos = strrpos($link[0], '?');
36 if ($pos !== false) {
37 $param = substr($link[0], $pos + 1);
146 * @param int $pos The position in the document
151 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
159 $handler->media($match, $state, $pos);
/plugin/sphinxsearch-was/
H A Daction.php327 if (false !== ($pos = strpos($query, "@ns"))) {;
328 $categories = substr($query, $pos + strlen("@ns"));
337 if (false !== ($pos = strpos($query, "-@ns"))) {;
338 $keywords = substr($keywords, 0, $pos);
339 } else if (false !== ($pos = strpos($query, "@ns"))) {;
340 $keywords = substr($keywords, 0, $pos);
/plugin/sphinxsearch/
H A Daction.php372 if (false !== ($pos = strpos($query, "@ns"))){;
373 $categories = substr($query, $pos + strlen("@ns"));
382 if (false !== ($pos = strpos($query, "-@ns"))){;
383 $keywords = substr($keywords, 0, $pos);
384 }else if (false !== ($pos = strpos($query, "@ns"))){;
385 $keywords = substr($keywords, 0, $pos);
/plugin/adhoctags/syntax/
H A Dabstractinline.php21 function handleUnmatched($match, $state, $pos, Doku_Handler $handler) { argument
22 $handler->addCall('cdata', array($match), $pos);
/plugin/preregister/
H A Daction.php154 $pos = $form->findPositionByAttribute('type','submit');
155 $form->removeElement($pos);
161 $pos = $form->findPositionByAttribute('type','submit');
163 else $pos = $event->data->findElementByAttribute('type','submit');
164 if(!$pos) return; // no button -> source view mode
171 $form->addHTML($out,$pos++);
175 $event->data->insertElement($pos++,$out);
/plugin/openid/Auth/Yadis/
H A DParseHTML.php167 foreach ([$key_tags_pos[3], $key_tags_pos[4]] as $pos) {
168 if (!is_null($pos) && $pos < $key_tags_pos[2]) {
169 $key_tags_pos[2] = $pos;
/plugin/fckg/
H A Drenderer.php68 function header($text, $level, $pos) { argument
113 function table_open($maxcols = null, $numrows = null, $pos = null){ argument
115 parent::table_open($maxcols = null, $numrows = null, $pos = null);
/plugin/syntaxhighlightjs/syntax/
H A Dsxh.php71 * @param int $pos The position in the document
75 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
85 $handler->_addCall('cdata', array($match), $pos);
/plugin/sketchcanvas/
H A Dsyntax.php34 function handle($match, $state, $pos, Doku_Handler $handler){ argument
37 return array($state, array(true, $this->generator, 'bytepos_start' => $pos + strlen($match)));
40 case DOKU_LEXER_EXIT : return array($state, array(false, $this->generator++, 'bytepos_end' => $pos));

12345678910>>...65