Home
last modified time | relevance | path

Searched refs:matcher (Results 1 – 25 of 88) sorted by path

1234

/plugin/amcharts/assets/amcharts/plugins/export/
H A Dexport.js1845 var matcher = new RegExp( /\bstyle=(['"])(.*?)\1/ );
1846 var match = matcher.exec( string )[ 0 ].slice( 7, -1 );
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
H A Dfabric.js3157 id = element.getAttribute('id'), matcher;
3160 matcher = new RegExp('^' + nodeName, 'i'); variable
3161 selector = selector.replace(matcher, '');
3163 matcher = new RegExp('#' + id + '(?![a-zA-Z\\-]+)', 'i'); variable
3164 selector = selector.replace(matcher, '');
3169 matcher = new RegExp('\\.' + classNames[i] + '(?![a-zA-Z\\-]+)', 'i'); variable
3170 selector = selector.replace(matcher, '');
H A Dfabric.min.js2matcher;matcher=new RegExp("^"+nodeName,"i");selector=selector.replace(matcher,"");if(id&&selector… variable
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CertificateManager/
H A DCertificateMapEntry.php46 public $matcher; variable in Google\\Service\\CertificateManager\\CertificateMapEntry
133 public function setMatcher($matcher) argument
135 $this->matcher = $matcher;
142 return $this->matcher;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DContentMatcher.php29 public $matcher; variable in Google\\Service\\Monitoring\\ContentMatcher
48 public function setMatcher($matcher) argument
50 $this->matcher = $matcher;
57 return $this->matcher;
/plugin/bez/scripts/
H A Dtask.js213 var matcher = new RegExp( jQuery.ui.autocomplete.escapeRegex(request.term), "i" );
216 if ( this.value && ( !request.term || matcher.test(text) ) ) {
H A Dthread.js270 var matcher = new RegExp( jQuery.ui.autocomplete.escapeRegex(request.term), "i" );
273 if ( this.value && ( !request.term || matcher.test(text) ) ) {
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js290 matcher = toMatcher(matcher);
293 if (matcher(val, key)) {
310 matcher = toMatcher(matcher);
313 if (matcher(val, key)) {
332 if (matcher(val, key)) {
377 function without(arr, matcher) { argument
383 matcher = toMatcher(matcher);
385 return !matcher(el, idx);
588 function toMatcher(matcher) { argument
589 return isFunction(matcher) ? matcher : function (e) {
[all …]
/plugin/ckgedit/ckeditor/
H A DCHANGES.md257 …r4/latest/api/CKEDITOR_plugins_balloontoolbar_contextDefinition.html#property-cssSelector) matcher.
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1matcher","parseQuery","lastSearchRegister","RegExp","regexPart","forceIgnoreCase","flagsPart","reg…
/plugin/codemirror/dist/modes/
H A Dclojure.min.js.map1 … \"rational?\",\n \"rationalize\", \"re-find\", \"re-groups\", \"re-matcher\", \"re-matches\"…
/plugin/combo/ComboStrap/
H A DPageRules.php119 * @param string $matcher
125 function addRuleWithDate($matcher, $target, $priority, $creationDate): ?int argument
131 'matcher' => $matcher,
153 function updateRule($id, $matcher, $target, $priority) argument
158 $matcher,
165 $statement = 'update PAGE_RULES set matcher = ?, target = ?, priority = ?, timestamp = ? where id = ?';
/plugin/combo/admin/
H A Dpagerules.php110 $matcher = $_POST[PageRules::MATCHER_NAME] ?? null;
114 if ($matcher == null) {
123 if ($matcher == $target) {
124 msg($this->lang['SameSourceAndTargetAndPage'] . ': ' . $matcher . '', LogUtility::LVL_MSG_ERROR);
129 if (!$this->pageRuleManager->patternExists($matcher)) {
130 $this->pageRuleManager->addRule($matcher, $target, $priority);
133 msg("The matcher pattern ($matcher) already exists. The page rule was not inserted.", LogUtility::LVL_MSG_ERROR);
136 $this->pageRuleManager->updateRule($id, $matcher, $target, $priority);
169 $matcher
[all...]
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js2813 function offsetFromString(matcher, string) { argument
2814 var matches = (string || '').match(matcher);
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dcommons-codec-1.10.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
H A Dcommons-lang3-3.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
H A Dhttpclient-4.5.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dhttpcore-4.4.9.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/diagramsnet/lib/
H A Dyarn.lock429 matcher "^3.0.0"
598 matcher@^3.0.0:
600 …resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f8036876…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D12.12.js.map1 … 'rationalize',\n 're-find',\n 're-groups',\n 're-matcher',\n 're-ma…
H A Dbundle.js.map1matcher.js","webpack:///./node_modules/d3-selection/src/mouse.js","webpack:///./node_modules/d3-se…
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js.map1matcher.js","webpack://mermaid/./node_modules/d3-selection/src/selection/sparse.js","webpack://mer…
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md136 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
138 and `$matcher` implementing `DeepCopy\Matcher\Matcher`.
157 $matcher = new PropertyNameMatcher('id');
169 $matcher = new PropertyMatcher('MyClass', 'id');
182 $matcher = new TypeMatcher('Doctrine\Common\Collections\Collection');
357 - Use a filter with a type matcher
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php35 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs.
42 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs.
97 public function addFilter(Filter $filter, Matcher $matcher) argument
100 'matcher' => $matcher,
105 public function prependFilter(Filter $filter, Matcher $matcher) argument
108 'matcher' => $matcher,
113 public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher) argument
116 'matcher'
[all...]

1234