Home
last modified time | relevance | path

Searched refs:haystack (Results 1 – 25 of 44) sorted by last modified time

12

/plugin/nspages/printers/
H A DprinterTree.php134 private function str_contains(string $haystack, string $needle){ argument
135 return strpos($haystack, $needle) !== false;
/plugin/mermaid/
H A Dmermaid.min.js[all...]
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/photogallery/phpThumb/
H A Dphpthumb.functions.php637 public static function CaseInsensitiveInArray($needle, $haystack) { argument
639 foreach ($haystack as $key => $value) {
/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/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/combo/action/
H A Dsnippetsbootstrap.php156 $haystack = $scriptData["_data"];
158 $haystack = $scriptData["src"];
160 if (preg_match("/$scriptToDelete/i", $haystack)) {
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php494 public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) argument
498 return strpos($haystack, $needle, $offset);
512 return \iconv_strpos($haystack, $needle, $offset, $encoding);
515 public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) argument
519 return strrpos($haystack, $needle, $offset);
527 $haystack = self::mb_substr($haystack, 0, $offset, $encoding);
531 $haystack = self::mb_substr($haystack, $offset, 2147483647, $encoding);
536 ? \iconv_strrpos($haystack,
638 mb_stripos($haystack, $needle, $offset = 0, $encoding = null) global() argument
646 mb_stristr($haystack, $needle, $part = false, $encoding = null) global() argument
653 mb_strrchr($haystack, $needle, $part = false, $encoding = null) global() argument
666 mb_strrichr($haystack, $needle, $part = false, $encoding = null) global() argument
674 mb_strripos($haystack, $needle, $offset = 0, $encoding = null) global() argument
682 mb_strstr($haystack, $needle, $part = false, $encoding = null) global() argument
747 mb_substr_count($haystack, $needle, $encoding = null) global() argument
800 getSubpart($pos, $part, $haystack, $encoding) global() argument
[all...]
H A Dbootstrap.php64 function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strpos($haystack, $needle, $offset, $encoding); } argument
79 function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_stripos($haystack, $needle, $offset, $encoding); } argument
82 function mb_stristr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_stristr($haystack, $needle, $before_needle, $encoding); } argument
85 function mb_strrchr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrchr($haystack, $needle, $before_needle, $encoding); } argument
88 function mb_strrichr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrichr($haystack, argument
91 mb_strripos($haystack, $needle, $offset = 0, $encoding = null) global() argument
94 mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) global() argument
97 mb_strstr($haystack, $needle, $before_needle = false, $encoding = null) global() argument
109 mb_substr_count($haystack, $needle, $encoding = null) global() argument
[all...]
H A Dbootstrap80.php60 function mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } argument
75 function mb_stripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_stripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } argument
78 function mb_stristr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_stristr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } argument
81 function mb_strrchr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrchr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } argument
84 function mb_strrichr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrichr((string) $haystack, (strin argument
87 mb_strripos(string $haystack, string $needle, int $offset = 0, string $encoding = null) global() argument
90 mb_strrpos(string $haystack, string $needle, int $offset = 0, string $encoding = null) global() argument
93 mb_strstr(string $haystack, string $needle, bool $before_needle = false, string $encoding = null) global() argument
105 mb_substr_count(string $haystack, string $needle, string $encoding = null) global() argument
[all...]
/plugin/combo/vendor/symfony/polyfill-php80/
H A DPhp80.php91 public static function str_contains(string $haystack, string $needle): bool argument
93 return '' === $needle || false !== strpos($haystack, $needle);
96 public static function str_starts_with(string $haystack, string $needle): bool argument
98 return 0 === strncmp($haystack, $needle, \strlen($needle));
101 public static function str_ends_with(string $haystack, string $needle): bool argument
103 if ('' === $needle || $needle === $haystack) {
107 if ('' === $haystack) {
113 return $needleLength <= \strlen($haystack) && 0 === substr_compare($haystack, $needle, -$needleLength);
H A Dbootstrap.php29 function str_contains(?string $haystack, ?string $needle): bool { return p\Php80::str_contains($haystack ?? '', $needle ?? ''); } argument
32 function str_starts_with(?string $haystack, ?string $needle): bool { return p\Php80::str_starts_with($haystack ?? '', $needle ?? ''); } argument
35 function str_ends_with(?string $haystack, ?string $needle): bool { return p\Php80::str_ends_with($haystack ?? '', $needle ?? ''); } argument
/plugin/combo/ComboStrap/
H A DStringUtility.php47 * @param $haystack
50 public static function contain($needle, $haystack) argument
52 $pos = strpos($haystack, $needle);
234 public static function lastIndexOf($haystack, $needle) argument
240 return strrpos($haystack, $needle);
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dutf8.php538 * @param string $haystack
543 function utf8_strpos($haystack, $needle, $offset=0){ argument
548 $pos = strpos($haystack, $needle, $offset + $comp);
553 $length = utf8_strlen(substr($haystack, 0, $pos));
/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/evesso/
H A Dauth.php278 private function startsWith($haystack, $needle) { argument
280 return (substr($haystack, 0, $length) === $needle);
H A Daction.php262 private function startsWith($haystack, $needle) { argument
264 return (substr($haystack, 0, $length) === $needle);
267 private function replaceFirst($haystack, $needle, $replace = '') { argument
268 $pos = strpos($haystack, $needle);
270 $haystack = substr_replace($haystack, $replace, $pos, strlen($needle));
272 return $haystack;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DStringUtilTest.php10 function testTextMatch($haystack, $needle, $collation, $matchType, $result) { argument
12 … $this->assertEquals($result, StringUtil::textMatch($haystack, $needle, $collation, $matchType));
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DStringUtil.php21 * @param string $haystack
27 static function textMatch($haystack, $needle, $collation, $matchType = 'contains') { argument
34 $haystack = str_replace(range('a', 'z'), range('A', 'Z'), $haystack);
43 $haystack = mb_strtoupper($haystack, 'UTF-8');
55 return strpos($haystack, $needle) !== false;
57 return $haystack === $needle;
59 return strpos($haystack, $needle) === 0;
61 return strrpos($haystack, $needle) === strlen($haystack) - strlen($needle);
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php624 foreach ($texts as $haystack) {
625 …$success = DAV\StringUtil::textMatch($haystack, $filter['value'], $filter['collation'], $filter['m…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D4.4.js.map1haystack, needle) {\n if (haystack.length < needle.length) {\n return false;\n }\n …
H A Dbundle.js.map1haystack.\n * @param haystack string to trim\n * @param needle the thing to trim (default is a bla…
H A Deditor.worker.js.map1haystack.\n * @param haystack string to trim\n * @param needle the thing to trim (default is a bla…
H A Djson.worker.js.map1haystack.\n * @param haystack string to trim\n * @param needle the thing to trim (default is a bla…
H A D2.2.js35921 function startsWith(haystack, needle) { argument
35922 if (haystack.length < needle.length) {
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;

12