/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/ |
H A D | SubstringFilter.php | 45 protected $startsWith; variable in FreeDSx\\Ldap\\Search\\Filter\\SubstringFilter 59 * @param null|string $startsWith 66 $this->startsWith = $startsWith; 78 return $this->startsWith; 89 $this->startsWith = $value; 150 if ($this->startsWith !== null) { 182 if ($this->startsWith !== null) { 183 $startsWith = Attribute::escape($this->startsWith); 184 $value = ($value === '' ? $startsWith . '*' : $startsWith) . $value; 220 $startsWith = null; [all …]
|
/plugin/simplechat/ |
H A D | ajax.php | 7 function startsWith($haystack, $needle) function 21 if( startsWith($msg,"/" )) { 22 if( startsWith( $msg, "/me ") ) { 24 } elseif ( startsWith( $msg, "/time") ){ 26 } elseif ( startsWith( $msg, "/flip") ){ 29 } elseif ( startsWith( $msg, "/roll") ){
|
/plugin/inseecity/ |
H A D | script.js | 43 var startsWith = []; 46 startsWith.push (v); 51 startsWith.push (v); 53 response (startsWith.slice (0, inseeCityMaxAutocomplete));
|
/plugin/evesso/ |
H A D | auth.php | 221 if($this->startsWith($group, helper_plugin_evesso::CORPORATION_PREFIX) 222 || $this->startsWith($group, helper_plugin_evesso::ALLIANCE_PREFIX) 223 || $this->startsWith($group, helper_plugin_evesso::FACTION_PREFIX) 224 || $this->startsWith($group, "eve-") //Old Prefix 267 if($this->startsWith($group, helper_plugin_evesso::CORPORATION_PREFIX) 268 || $this->startsWith($group, helper_plugin_evesso::ALLIANCE_PREFIX) 269 || $this->startsWith($group, helper_plugin_evesso::FACTION_PREFIX) 270 || $this->startsWith($group, "eve-") //Old Prefix 278 private function startsWith($haystack, $needle) { function in auth_plugin_evesso
|
H A D | action.php | 64 if ($this->startsWith($acl[1], "@eve%2d")) { 75 if ($this->startsWith($acl[1], "@eve%2d") && $acl[2] != 0) { 212 if ($this->startsWith($group, helper_plugin_evesso::CORPORATION_PREFIX)) { 215 if ($this->startsWith($group, helper_plugin_evesso::ALLIANCE_PREFIX)) { 218 if ($this->startsWith($group, helper_plugin_evesso::FACTION_PREFIX)) { 239 if ($this->startsWith($group, helper_plugin_evesso::CORPORATION_PREFIX)) { 242 if ($this->startsWith($group, helper_plugin_evesso::ALLIANCE_PREFIX)) { 245 if ($this->startsWith($group, helper_plugin_evesso::FACTION_PREFIX)) { 262 private function startsWith($haystack, $needle) { function in action_plugin_evesso
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
H A D | Option.php | 45 return $this->startsWith('lang-'); 53 return $this->startsWith('range='); 91 public function startsWith(string $option): bool function in FreeDSx\\Ldap\\Entry\\Option
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/ |
H A D | Filters.php | 140 * @param null|string $startsWith 145 …public static function substring(string $attribute, ?string $startsWith, ?string $endsWith, string… argument 147 return new SubstringFilter($attribute, $startsWith, $endsWith, ...$contains); 181 public static function startsWith(string $attribute, string $value): SubstringFilter function in FreeDSx\\Ldap\\Search\\Filters
|
H A D | FilterParser.php | 101 if (!$this->startsWith(FilterInterface::PAREN_LEFT, $pos)) { 106 if ($this->startsWith($compOp, $pos + 1)) { 220 if ($isRoot && !$this->startsWith(FilterInterface::PAREN_LEFT, $startAt)) { 231 } elseif (!$isRoot && !$this->startsWith(FilterInterface::PAREN_LEFT, $startAt)) { 398 protected function startsWith(string $char, int $pos): bool function in FreeDSx\\Ldap\\Search\\FilterParser
|
/plugin/jcapture/src/com/hammurapi/jcapture/ |
H A D | JCaptureApplet.java | 21 if (dokuHost.toLowerCase().startsWith(HTTPS_PREFIX)) { in createRequest() 34 if (dokuBase.startsWith(host)) { in createRequest()
|
H A D | Translucener.java | 11 if (jVersion==null || "1.6".equals(jVersion) || jVersion.startsWith("1.6.")) { in makeFrameTranslucent()
|
/plugin/pubmed2020/classes/ |
H A D | pubmed2020.php | 47 function startsWith($string, $startString) { function in PubMed2020 252 if ($this->startsWith($line," ")) {
|
H A D | cache.php | 67 function startsWith($string, $startString) { function in pubmed2020_cache
|
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | ElectronApp.js | 57 if (url != null && url.startsWith('http')) 113 if (plugins[i].startsWith('/plugins/')) 117 else if (plugins[i].startsWith('plugins/')) 122 else if (!plugins[i].startsWith('file://'))
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
H A D | dhtmlxgantt_undo.js | 791 if (!prop.startsWith("$") && !prop.startsWith("_")) {
|
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/ |
H A D | dhtmlxgantt_undo.js | 13 …==o.update){var d=gantt[s](n.value.id);for(var c in n.value)c.startsWith("$")||c.startsWith("_")||…
|
H A D | dhtmlxgantt_undo.js.map | 1 …startsWith","noTrack","onBeforeUndo","onBeforeRedo","batchActions","Monitor","_batchAction","_batc…
|
/plugin/pureldap/vendor/freedsx/ldap/ |
H A D | README.md | 62 Filters::startsWith('cn', 'S'),
|
/plugin/findologicxmlexport/vendor/webmozart/assert/src/ |
H A D | Assert.php | 638 public static function startsWith($value, $prefix, $message = '') function in Webmozart\\Assert\\Assert
|
/plugin/s5reloaded/ui/effects_support/ |
H A D | prototype.js | 608 function startsWith(pattern) { function 656 startsWith: startsWith, 686 var comp = match[1].startsWith('[') ? match[2].replace(/\\\\]/g, ']') : match[1]; 3860 '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); },
|
/plugin/findologicxmlexport/vendor/webmozart/assert/ |
H A D | README.md | 144 `startsWith($value, $prefix, $message = '')` | Check that a string has a prefix
|
/plugin/diagramsnet/lib/ |
H A D | workbox-9fe249eb.js | 1 …equest:t,event:e}){const s=new URL(t.url,location.href);if(!s.protocol.startsWith("http"))return;c…
|
H A D | workbox-f163abaa.js | 1 …equest:t,event:e}){const s=new URL(t.url,location.href);if(!s.protocol.startsWith("http"))return;c…
|
H A D | workbox-bed83ea8.js | 1 …equest:t,event:e}){const s=new URL(t.url,location.href);if(!s.protocol.startsWith("http"))return;c…
|
/plugin/abc2/abc-libraries/abcjs/ |
H A D | abcjs_plugin-midi_6.0.0-beta.25-min.js | 3 …startsWith:function(e,t){return 0===e.indexOf(t)},endsWith:function(e,t){var n=e.length-t.length;r… method in AnonymousFunctionc4f1d8410400.n
|
/plugin/diagramsnet/lib/WEB-INF/lib/ |
H A D | commons-codec-1.10.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |