Searched refs:matcher (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dquant.cpp27 matcher = adoptedMatcher;
35 matcher(o.matcher->clone()),
42 delete matcher;
71 UMatchDegree m = matcher->toMatcher()->matches(text, offset, limit, incremental);
101 matcher->toMatcher()->toPattern(result, escapeUnprintable);
126 return (minCount == 0) || matcher->toMatcher()->matchesIndexValue(v);
134 matcher->toMatcher()->addMatchSetTo(toUnionTo);
142 matcher->setData(d);
H A Dquant.h113 UnicodeFunctor* matcher; // owned member in class:Quantifier
H A Drepattrn.cpp429 // matcher(UnicodeString, err)
432 RegexMatcher *RegexPattern::matcher(const UnicodeString &input, function in class:RegexPattern
434 RegexMatcher *retMatcher = matcher(status);
445 // matcher(status)
448 RegexMatcher *RegexPattern::matcher(UErrorCode &status) const { function in class:RegexPattern
484 RegexMatcher *matcher = NULL; local
487 matcher = pat->matcher(input, status);
488 retVal = matcher->matches(status);
490 delete matcher;
508 RegexMatcher *matcher = NULL; local
[all...]
H A Dstrmatch.cpp206 const UnicodeMatcher* matcher = data->lookupMatcher(ch); local
207 if (matcher == NULL) {
210 matcher->addMatchSetTo(toUnionTo);
H A Drbt_rule.cpp536 const UnicodeMatcher* matcher = data->lookupMatcher(ch); local
537 if (matcher == NULL) {
540 matcher->addMatchSetTo(toUnionTo);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dregextst.cpp385 REMatcher = REPattern->matcher(unEscapedInput, status);
387 errln("RegexTest failure in REPattern::matcher() at line %d. Status = %s\n",
461 REMatcher = &REPattern->matcher(status)->reset(&inputText);
463 errln("RegexTest failure in REPattern::matcher() at line %d (UTF8). Status = %s\n",
587 RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status);
732 RegexMatcher matcher(&pattern, 0, status);
738 matcher.reset(&input);
740 REGEX_ASSERT_UTEXT_UTF8(str_abc, matcher.inputText());
742 matcher.reset(matcher
913 RegexMatcher *matcher = pat->matcher(data, status); local
973 RegexMatcher *matcher = pat->matcher(data, status); local
1027 RegexMatcher *matcher = pat->matcher(data, status); local
1334 RegexMatcher *matcher = pat->matcher(data, status); local
1994 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); local
2114 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); local
2176 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); local
2412 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); local
3301 RegexMatcher *matcher = NULL, *UTF8Matcher = NULL; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Dprscmnts.cpp103 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
108 matcher.reset(stringArray[i]);
109 if(matcher.lookingAt(*status)){
110 UnicodeString out = matcher.group(1, *status);
164 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
170 matcher.reset(stringArray[i]);
171 if(matcher.lookingAt(*status)){
204 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
210 matcher.reset(stringArray[i]);
211 if(matcher
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/minitest/
H A Dspec.rb118 matcher, klass = block, args.first
120 matcher, klass = *args
122 TYPES.unshift [matcher, klass]
131 TYPES.find { |matcher, klass|
132 if matcher.respond_to? :call then
133 matcher.call desc
135 matcher === desc.to_s
H A Dunit.rb296 # Fails unless +matcher+ <tt>=~</tt> +obj+.
298 def assert_match matcher, obj, msg = nil
299 msg = message(msg) { "Expected #{mu_pp matcher} to match #{mu_pp obj}" }
300 assert_respond_to matcher, :"=~"
301 matcher = Regexp.new Regexp.escape matcher if String === matcher
302 assert matcher =~ obj, msg
657 # Fails if +matcher+ <tt>=~</tt> +obj+.
659 def refute_match matcher, ob
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/samples/ugrep/
H A Dugrep.cpp120 RegexMatcher *matcher = rePat->matcher(empty, status); local
138 matcher->reset(s);
139 if (matcher->find()) {
149 delete matcher;
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dexclude.c168 int (*matcher) PARAMS ((char const *, char const *, int)) =
172 bool matched = ((*matcher) (pattern, f, options) == 0);
178 matched = ((*matcher) (pattern, p + 1, options) == 0);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dexclude.c145 int (*matcher) (char const *, char const *, int) =
149 bool matched = ((*matcher) (pattern, f, options) == 0);
155 matched = ((*matcher) (pattern, p + 1, options) == 0);
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dutil.h227 const UnicodeMatcher* matcher,
H A Dutil.cpp395 * Given a matcher reference, which may be null, append its
399 const UnicodeMatcher* matcher,
402 if (matcher != NULL) {
404 appendToRule(rule, matcher->toPattern(pat, escapeUnprintable),
398 appendToRule(UnicodeString& rule, const UnicodeMatcher* matcher, UBool escapeUnprintable, UnicodeString& quoteBuf) argument
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dcompctl.h113 Cmatcher matcher; /* matcher control (-M) */ member in struct:compctl
114 char *mstr; /* matcher string */
H A Dcompctl.c33 /* Global matcher. */
138 if (cc->matcher)
139 freecmatcher(cc->matcher);
298 n->matcher = cpcmatcher(l->matcher);
321 n->matcher = m;
332 /* Try to get the global matcher from the given compctl. */
353 /* This prints the global matcher definitions. */
734 if ((cct.matcher =
737 cct.matcher
[all...]
H A Dcomp.h141 /* Stuff for completion matcher control. */
145 Cmatcher matcher; /* the matcher definition */ member in struct:cmlist
151 Cmatcher next; /* next matcher */
181 * A pattern element in a matcher specification.
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dfont-lock.el1409 (let ((matcher (nth 0 keywords)) (lowdarks (nthcdr 3 keywords)) highlights
1417 ;; Find an occurrence of `matcher' before `limit'.
1418 (while (if (stringp matcher)
1419 (re-search-forward matcher limit t)
1420 (funcall matcher limit))
1421 ;; Apply each highlight to this instance of `matcher'.
1449 keyword matcher highlights)
1451 ;; Find an occurrence of `matcher' from `start' to `end'.
1452 (setq keyword (car keywords) matcher (car keyword))
1454 (while (if (stringp matcher)
[all...]
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dengine.ih7 static int matcher(register struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
/macosx-10.10.1/zsh-61/zsh/StartupFiles/
H A Dzshrc145 zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
/macosx-10.10.1/libxml2-26/libxml2/
H A Dxmlschemas.c830 xmlSchemaIDCMatcherPtr matcher; /* the correspondent field/selector member in struct:_xmlSchemaIDCStateObj
831 matcher */
1005 xmlSchemaIDCMatcherPtr idcMatcherCache; /* Cache for IDC matcher objects. */
22173 * @matcher: the IDC matcher
22176 * of the given matcher. If none found, a new one is created
22183 xmlSchemaIDCMatcherPtr matcher)
22187 ielem = vctxt->elemInfos[matcher->depth];
22190 ielem->idcTable = xmlSchemaIDCNewBinding(matcher->aidc->def);
22199 if (bind->definition == matcher
22182 xmlSchemaIDCAcquireBinding(xmlSchemaValidCtxtPtr vctxt, xmlSchemaIDCMatcherPtr matcher) argument
22214 xmlSchemaIDCAcquireTargetList(xmlSchemaValidCtxtPtr vctxt ATTRIBUTE_UNUSED, xmlSchemaIDCMatcherPtr matcher) argument
22277 xmlSchemaIDCFreeMatcherList(xmlSchemaIDCMatcherPtr matcher) argument
22321 xmlSchemaIDCReleaseMatcherList(xmlSchemaValidCtxtPtr vctxt, xmlSchemaIDCMatcherPtr matcher) argument
22385 xmlSchemaIDCAddStateObject(xmlSchemaValidCtxtPtr vctxt, xmlSchemaIDCMatcherPtr matcher, xmlSchemaIDCSelectPtr sel, int type) argument
22767 xmlSchemaIDCMatcherPtr matcher = sto->matcher; local
22915 xmlSchemaIDCMatcherPtr matcher; local
23172 xmlSchemaIDCMatcherPtr matcher, last = NULL; local
23298 xmlSchemaIDCMatcherPtr matcher = ielem->idcMatchers; local
23783 xmlSchemaIDCMatcherPtr matcher; local
27560 xmlSchemaIDCMatcherPtr matcher = vctxt->idcMatcherCache, tmp; local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxmlschemas.c830 xmlSchemaIDCMatcherPtr matcher; /* the correspondent field/selector member in struct:_xmlSchemaIDCStateObj
831 matcher */
1004 xmlSchemaIDCMatcherPtr idcMatcherCache; /* Cache for IDC matcher objects. */
22144 * @matcher: the IDC matcher
22147 * of the given matcher. If none found, a new one is created
22154 xmlSchemaIDCMatcherPtr matcher)
22158 ielem = vctxt->elemInfos[matcher->depth];
22161 ielem->idcTable = xmlSchemaIDCNewBinding(matcher->aidc->def);
22170 if (bind->definition == matcher
22153 xmlSchemaIDCAcquireBinding(xmlSchemaValidCtxtPtr vctxt, xmlSchemaIDCMatcherPtr matcher) argument
22185 xmlSchemaIDCAcquireTargetList(xmlSchemaValidCtxtPtr vctxt ATTRIBUTE_UNUSED, xmlSchemaIDCMatcherPtr matcher) argument
22248 xmlSchemaIDCFreeMatcherList(xmlSchemaIDCMatcherPtr matcher) argument
22292 xmlSchemaIDCReleaseMatcherList(xmlSchemaValidCtxtPtr vctxt, xmlSchemaIDCMatcherPtr matcher) argument
22356 xmlSchemaIDCAddStateObject(xmlSchemaValidCtxtPtr vctxt, xmlSchemaIDCMatcherPtr matcher, xmlSchemaIDCSelectPtr sel, int type) argument
22738 xmlSchemaIDCMatcherPtr matcher = sto->matcher; local
22886 xmlSchemaIDCMatcherPtr matcher; local
23143 xmlSchemaIDCMatcherPtr matcher, last = NULL; local
23269 xmlSchemaIDCMatcherPtr matcher = ielem->idcMatchers; local
23754 xmlSchemaIDCMatcherPtr matcher; local
27489 xmlSchemaIDCMatcherPtr matcher = vctxt->idcMatcherCache, tmp; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dcpu_threads.c307 x86_match_cache(x86_cpu_cache_t *list, x86_cpu_cache_t *matcher) argument
313 if (cur_cache->maxcpus == matcher->maxcpus
314 && cur_cache->type == matcher->type
315 && cur_cache->level == matcher->level
316 && cur_cache->partitions == matcher->partitions
317 && cur_cache->line_size == matcher->line_size
318 && cur_cache->cache_size == matcher->cache_size)
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dregex.h332 * The matcher will retain a reference to the supplied input string, and all regexp
343 virtual RegexMatcher *matcher(const UnicodeString &input,
349 * create a matcher with a (UChar *) string as input rather than
359 RegexMatcher *matcher(const UChar *input,
375 virtual RegexMatcher *matcher(UErrorCode &status) const;
571 // a single copy per matcher.
574 // the group's variables in the matcher stack frame.
634 * its matcher() method to create the RegexMatcher objects.
650 * its matcher() method to create the RegexMatcher objects.
667 * its matcher() metho
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/fumagic/
H A Dcgen.tcl299 catch {unset matcher}
302 if {[info exists matcher($nv)]} {
305 puts stderr "* clashes with <[$tree getall $matcher($nv)]>"
308 set matcher($nv) $n

Completed in 456 milliseconds

12