Home
last modified time | relevance | path

Searched refs:needle (Results 26 – 50 of 69) sorted by relevance

123

/plugin/badbehaviour/bad-behavior/
H A Dfunctions.inc.php7 function stripos($haystack,$needle,$offset = 0) { argument
8 return(strpos(strtolower($haystack),strtolower($needle),$offset));
/plugin/sql2wiki/syntax/
H A Dquery.php60 $needle = 'parser_';
62 $length = strlen($needle);
63 if (substr($name, 0, $length) === $needle) {
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/
H A DBaseSassFilter.php60 foreach ($needles as $needle) {
61 if (file_exists($file = $loadPath.'/'.$needle)) {
/plugin/googlemaps/
H A Dscript.js7 function in_array(needle, haystack) { argument
9 if (haystack[i] == needle) return true;
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DSassphpFilter.php99 foreach ($needles as $needle) {
100 if (file_exists($file = $includePath . '/' . $needle)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php103 * @param mixed $needle
111 function assertAttributeContains($needle, $haystackAttributeName, $haystackClassOrObject, $message … argument
290 * @param mixed $needle
298 function assertAttributeNotContains($needle, $haystackAttributeName, $haystackClassOrObject, $messa… argument
507 * @param mixed $needle
514 function assertContains($needle, $haystack, $message = '', $ignoreCase = false, $checkForObjectIden… argument
954 * @param mixed $needle
961 function assertNotContains($needle, $haystack, $message = '', $ignoreCase = false, $checkForObjectI… argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php111 * @param mixed $needle
123 $needle,
128 if (!is_string($needle)) {
136 $needle,
153 * @param mixed $needle
164 $needle,
176 * @param mixed $needle
189 $needle,
204 $needle,
222 * @param mixed $needle
[all …]
/plugin/todo/
H A Daction.php214 * Find position of $occurance-th $needle in haystack
216 private function _strnpos($haystack, $needle, $occurance, $pos = 0) {
218 $pos = strpos($haystack, $needle, $pos);
192 _strnpos($haystack, $needle, $occurance, $pos = 0) global() argument
/plugin/fckg/syntax/
H A Ddwplugin.php356 $needle = 'plugin_' . $input_name;
357 $key = array_search ($needle, $syntax->_regexes['base']->_labels, true);
359 $needle = '_' . $needle;
360 $key = array_search ($needle, $syntax->_regexes['base']->_labels, true);
/plugin/nspages/printers/
H A DprinterTree.php134 private function str_contains(string $haystack, string $needle){ argument
135 return strpos($haystack, $needle) !== false;
/plugin/tagentry/
H A Daction.php158 function in_iarray( $needle, $haystack ) { argument
162 if ( strcasecmp( $needle, $t ) == 0 )
/plugin/evesso/
H A Dauth.php278 private function startsWith($haystack, $needle) { argument
279 $length = strlen($needle);
280 return (substr($haystack, 0, $length) === $needle);
/plugin/button/
H A Dsyntax.php70 function str_contains(string $haystack, string $needle): bool
72 return '' === $needle || false !== strpos($haystack, $needle);
58 str_contains(string $haystack, string $needle) global() argument
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dutf8.php539 * @param string $needle
543 function utf8_strpos($haystack, $needle, $offset=0){ argument
548 $pos = strpos($haystack, $needle, $offset + $comp);
/plugin/tagfilter/
H A Dscript.js270 function tagfilter_strpos (haystack, needle, offset) {
278 var i = (haystack + '').indexOf(needle, (offset || 0));
299 tagfilter_strpos(haystack, needle, offset) global() argument
/plugin/judge/helper/
H A Djdatetime.class.php422 private static function filterArray($needle, $heystack, $always = array()) argument
424 return array_intersect(array_merge($needle, $always), $heystack);
/plugin/photogallery/phpThumb/
H A Dphpthumb.functions.php637 public static function CaseInsensitiveInArray($needle, $haystack) { argument
638 $needle = strtolower($needle);
642 } elseif ($needle == strtolower($value)) {
/plugin/aichat/vendor/erusev/parsedown/
H A DParsedown.php1642 protected static function striAtStart($string, $needle) argument
1644 $len = strlen($needle);
1652 return strtolower(substr($string, 0, $len)) === strtolower($needle);
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DREADME.md177 $needle = 'GATAA',
/plugin/scrape/
H A DphpQuery-onefile.php
/plugin/metaeditor/
H A Djstree.js170 $.jstree.reference = function (needle) { argument
173 if(needle && needle.id && (!needle.tagName || !needle.nodeType)) { needle = needle.id; }
176 try { obj = $(needle); } catch (ignore) { }
179 try { obj = $('#' + needle.replace($.jstree.idregex,'\\$&')); } catch (ignore) { }
187 if(inst && inst._model.data[needle]) {
/plugin/tablelayout/
H A Dyarn.lock1678 needle@^2.2.0:
1680 …resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.0.tgz#f14efc69cee1024b72c8b21c7bdf94a73…
1692 needle "^2.2.0"
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Deditor.worker.js.map1needle from the beginning and end of haystack.\n * @param haystack string to trim\n * @param needl…
H A Djson.worker.js.map1needle from the beginning and end of haystack.\n * @param haystack string to trim\n * @param needl…
H A D2.2.js35921 function startsWith(haystack, needle) { argument
35922 if (haystack.length < needle.length) {
35925 for (var i = 0; i < needle.length; i++) {
35926 if (haystack[i] !== needle[i]) {
35935 function endsWith(haystack, needle) { argument
35936 var diff = haystack.length - needle.length;
35938 return haystack.lastIndexOf(needle) === diff;
35941 return haystack === needle;

123