Home
last modified time | relevance | path

Searched refs:needle (Results 1 – 25 of 69) sorted by relevance

123

/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DStringUtil.php22 * @param string $needle
27 static function textMatch($haystack, $needle, $collation, $matchType = 'contains') { argument
35 $needle = str_replace(range('a', 'z'), range('A', 'Z'), $needle);
44 $needle = mb_strtoupper($needle, '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/DAV/
H A DStringUtil.php22 * @param string $needle
27 static function textMatch($haystack, $needle, $collation, $matchType = 'contains') { argument
35 $needle = str_replace(range('a', 'z'), range('A', 'Z'), $needle);
44 $needle = mb_strtoupper($needle, '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/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) {
111 $needleLength = \strlen($needle);
[all...]
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/vendor/symfony/polyfill-mbstring/
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, $needle, 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, (string) $needle, (boo 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...]
H A DMbstring.php494 public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) argument
498 return strpos($haystack, $needle, $offset);
501 $needle = (string) $needle;
502 if ('' === $needle) {
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);
526 if (0 > $offset += self::mb_strlen($needle)) {
535 $pos = '' !== $needle || 8000
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
[all...]
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DAssert.php77 function assertContains($needle, $haystack, $message = '') { argument
78 if (is_string($needle) && is_string($haystack)) {
79 $this->assertTrue(strpos($haystack, $needle) !== FALSE, $message);
82 else if (is_array($haystack) && !is_object($needle)) {
83 $this->assertTrue(in_array($needle, $haystack), $message);
100 function assertNotContains($needle, $haystack, $message = '') { argument
101 if (is_string($needle) && is_string($haystack)) {
102 $this->assertFalse(strpos($haystack, $needle) !== FALSE, $message);
105 else if (is_array($haystack) && !is_object($needle)) {
106 $this->assertFalse(in_array($needle, $haystack), $message);
/plugin/virtualkeyboard/vk/extensions/dom/
H A Dselectbox.js290 return __setOptionsState (needle, 'selected', true, true, match);
301 return __setOptionsState (needle, 'selected', true, false, match);
324 return __setOptionsState (needle, 'selected', false, true, match);
349 return __setOptionsState (needle, 'fixed', true, true, match);
360 return __setOptionsState (needle, 'fixed', true, false, match);
371 return __setOptionsState (needle, 'fixed', false, true, match);
382 return __setOptionsState (needle, 'fixed', false, false, match);
396 return __setOptionsState (needle, 'visible', true, true, match);
407 return __setOptionsState (needle, 'visible', true, false, match);
418 return __setOptionsState (needle, 'visible', false, true, match);
[all …]
/plugin/quickstats/GEOIP/
H A Dcc_arrays_dat.php103 function qs_array_search_ci ($needle = null) argument
106 if(!$needle) return "";
111 if(stristr($eval, $needle) !== false) {
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetCollection.php73 public function removeLeaf(AssetInterface $needle, $graceful = false) argument
77 if (in_array($needle, array($asset, $clone), true)) {
83 if ($asset instanceof AssetCollectionInterface && $asset->removeLeaf($needle, true)) {
95 …public function replaceLeaf(AssetInterface $needle, AssetInterface $replacement, $graceful = false) argument
99 if (in_array($needle, array($asset, $clone), true)) {
106 …if ($asset instanceof AssetCollectionInterface && $asset->replaceLeaf($needle, $replacement, true)…
H A DAssetCollectionInterface.php50 * @param AssetInterface $needle The current asset to replace
58 …public function replaceLeaf(AssetInterface $needle, AssetInterface $replacement, $graceful = false… argument
/plugin/issuetracker/
H A Ditsearch.php82 foreach($search_words as $needle) {
85 if(stripos($issue_string,$needle)!==false)
93 $ref_findings['issues'][$cnt_i_findings]['match'] = $needle;
97 if(stripos($comments,$needle)!==false)
105 $ref_findings['comment'][$cnt_c_findings]['match'] = $needle;
140 if(stripos($comment['comment'],$needle)!==false) {
/plugin/icalevents/
H A Dsyntax-impl.php452 * @param string $needle substring to replace
458 static function str_replace_array($needle, $replace, $count, $haystack) { argument
462 $haystackArray = explode($needle, $haystack);
479 * @param string $needle substring or array of substrings to remove
482 static function str_remove_deep($needle, &$haystack) { argument
484 function (&$h, &$k) use ($needle) {
485 $h = str_replace($needle, '', $h);
500 $needle = array('</nowiki>', "\n");
502 $text = str_ireplace($needle, $haystack, $text);
/plugin/src/
H A Dsyntax.php180 * @param string $needle Вхождение
185 function _mb_str_replace($needle, $replacement, $haystack) { argument
186 $needle_len = mb_strlen($needle);
188 $pos = mb_strpos($haystack, $needle);
192 $pos = mb_strpos($haystack, $needle, $pos + $replacement_len);
/plugin/simplechat/
H A Dajax.php7 function startsWith($haystack, $needle) argument
9 return !strncmp($haystack, $needle, strlen($needle));
/plugin/combo/ComboStrap/
H A DStringUtility.php46 * @param $needle
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/quickstats/scripts/
H A Dget_pages.php7 function qs_pages_search_i ($needle = null,$month) argument
15 if(stristr($key, $needle) !== false) {
H A Dget_useragent.php5 function qs_useragent_search_ci ($needle = null, $month) argument
14 if(stristr($key, $needle) !== false) {
H A Dextended_data.php338 function qs_pages_search_i ($needle = null,$month) argument
345 if(isset($pages['page'][$needle]))return array($needle=>$pages['page'][$needle]);
350 if(stristr($key, $needle) !== false) {
442 function qs_agent_search_i ($needle = null,$month) argument
450 if(isset($val[1]) && stristr($val[1], $needle) !== false) {
/plugin/abc2/
H A Dsyntax.php364 * @param string $needle
369 function _replace_first($haystack, $needle, $replace) { argument
370 $pos = strpos($haystack, $needle);
372 $newstring = substr_replace($haystack, $replace, $pos, strlen($needle));
/plugin/workflow/syntax/
H A Ddecision.php12 function startswith($haystack, $needle) { argument
13 return $needle === "" || strpos($haystack, $needle) === 0;
/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/virtualkeyboard/vk/extensions/
H A Darrayextensions.js128 Array.prototype.indexOf = function(needle,begin) { argument
130 idx = (this[i]==needle)?i:idx;
136 Array.prototype.lastIndexOf = function(needle,end) { argument
138 idx = (this[i]==needle)?i:idx;
/plugin/evesso/
H A Daction.php262 private function startsWith($haystack, $needle) { argument
263 $length = strlen($needle);
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));

123