HomeSort by relevance Sort by last modified time
    Searched defs:MATCH (Results 1 - 25 of 62) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
STreeParser.cpp 5 MATCH(SORASTBase *_t,int tok)
  /external/curl/tests/unit/
unit1307.c 26 #define MATCH CURL_FNMATCH_MATCH
38 { "\\[", "[", MATCH },
41 { "[][]", "[", MATCH },
42 { "[][]", "]", MATCH },
43 { "[[]", "[", MATCH },
44 { "[[[]", "[", MATCH },
45 { "[[[[]", "[", MATCH },
46 { "[[[[]", "[", MATCH },
48 { "[][[]", "]", MATCH },
49 { "[][[[]", "[", MATCH },
    [all...]
  /external/pdfium/testing/tools/
gold.py 66 should be used to match hashes (master and cl#).
103 MATCH = 'match'
110 Match a locally generated hash of a test cases rendered image with the
116 with the options in that dict. If the hashes don't match, it should be
119 Returns MATCH if the md5 provided matches the ones in the baseline json,
131 return GoldBaseline.MATCH
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_init.c 253 #define MATCH(line, name) \
265 if (MATCH(buf, "domain")) {
281 if (MATCH(buf, "search")) {
318 if (MATCH(buf, "nameserver") && nserv < MAXNS) {
334 if (MATCH(buf, "sortlist")) {
376 if (MATCH(buf, "options")) {
  /bionic/libc/dns/resolv/
res_init.c 287 #define MATCH(line, name) \
300 if (MATCH(buf, "domain")) {
316 if (MATCH(buf, "search")) {
353 if (MATCH(buf, "nameserver") && nserv < MAXNS) {
387 if (MATCH(buf, "sortlist")) {
429 if (MATCH(buf, "options")) {
  /external/dtc/tests/
dtbs_equal_ordered.c 41 #define MATCH() \
46 FAIL("Trees match which shouldn't"); \
172 MATCH();
dtbs_equal_unordered.c 42 #define MATCH() \
47 FAIL("Trees match which shouldn't"); \
222 MATCH();
  /external/mesa3d/src/compiler/glsl/
s_expression.h 42 #define MATCH(list, pat) s_match(list, ARRAY_SIZE(pat), pat, false)
151 * Part of a pattern to match - essentially a record holding a pointer to the
152 * storage for the component to match, along with the appropriate type.
163 bool match(s_expression *expr);
  /external/selinux/libselinux/include/selinux/
restorecon.h 154 MATCH = 0,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.h 43 MATCH, /* o: waiting for output space to copy string */
70 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
  /external/icu/icu4c/source/test/cintltst/
usrchdat.c 85 {"testing that \\u00e9 does not match e", "e", NULL, UCOL_TERTIARY, USEARCH_STANDARD_ELEMENT_COMPARISON,
87 {"testing that string ab\\u00e9cd does not match e", "e", NULL,
132 /*05*/{"\\u00c0 should match but not A", "A\\u0300", "en", UCOL_IDENTICAL, USEARCH_STANDARD_ELEMENT_COMPARISON,
195 /* testing tightest match */
316 static const SearchData MATCH[] = {
385 * first CE of the expansion but the match fails because it ends in the
402 * grapheme boundiaries. The match at 0 only works because
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
Exchanger.java 195 * changed, but cannot yet proceed until match is set. In the
198 * the linearization point to be a CAS of the match field (as done
248 * slot CASes, it would also be legal for the write to Node.match
285 * The bound for spins while waiting for a match. The actual
316 volatile Object match; // Item provided by releasing thread field in class:Exchanger.Node
366 q.match = item;
378 Object v = p.match;
380 U.putOrderedObject(p, MATCH, null);
394 spins = SPINS; // releaser hasn't set match yet
461 q.match = item
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
121 unsigned was; /* initial length of match */
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
124 unsigned was; /* initial length of match */
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 146 /** Represents a match type expression. */
147 public static final int MATCH = 1;
158 * @param type one of {@link #SELECT} or {@link #MATCH}.
179 else if (MATCH == type)
206 * @param type one of {@link #SELECT} or {@link #MATCH}.
228 else if (MATCH == type)
258 * @param type one of {@link #SELECT} or {@link #MATCH}.
463 * match pattern testing. */
467 * Get the match score of the given node.
613 * The match score if no match is made
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleFilteredSentenceBreakIterator.java 90 if (r.hasValue()) { // remember the best match so far
96 if (r.matches()) { // exact match?
102 if (bestValue == Builder.MATCH) { // exact match!
281 static final int MATCH = (1 << 1); // < exact match - skip this one.
384 builder.add(reversed, MATCH);
390 // instead of "Ph.D." since we already know the "Ph." part is a match.
392 builder2.add(thisStr, MATCH); // forward
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleFilteredSentenceBreakIterator.java 88 if (r.hasValue()) { // remember the best match so far
94 if (r.matches()) { // exact match?
100 if (bestValue == Builder.MATCH) { // exact match!
279 static final int MATCH = (1 << 1); // < exact match - skip this one.
382 builder.add(reversed, MATCH);
388 // instead of "Ph.D." since we already know the "Ph." part is a match.
390 builder2.add(thisStr, MATCH); // forward
  /external/python/cpython2/Modules/zlib/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
121 unsigned was; /* initial length of match */
  /external/python/cpython3/Modules/zlib/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
124 unsigned was; /* initial length of match */
  /external/syslinux/com32/lib/zlib/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
121 unsigned was; /* initial length of match */
  /external/zlib/src/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
124 unsigned was; /* initial length of match */
  /toolchain/binutils/binutils-2.27/zlib/
inflate.h 45 MATCH, /* o: waiting for output space to copy string */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
121 unsigned was; /* initial length of match */
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/
rcssmin.c 173 * Match a pattern (and copy immediately to target)
201 #define MATCH(PAT, source, target, ctx) ( \
209 * Match a pattern (and copy immediately to target) - CI version
527 if (!MATCH(url, &source, &target, ctx)
851 if (!MATCH(ie7, &source, &target, ctx))
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 213 * include-match, dash-match, prefix-match, suffix-match, substring-match
215 MATCH,
441 // <dimension>, <unicode-range>, <include-match>,
442 // <dash-match>, <prefix-match>, <suffix-match>,
    [all...]
  /external/parameter-framework/upstream/tools/coverage/
coverage.py 536 self.debug("Applied but rule does not match current "
720 MATCH = "match"
738 matchConfigApplicationLine = re.compile(configApplicationRegext).match
746 matchCriterionCreationLine = re.compile(criterionCreationRegext).match
749 matchChangingCriterionLine = re.compile(changingCriterionRegext).match
753 self.MATCH: matchConfigApplicationLine,
756 self.MATCH: matchCriterionCreationLine,
759 self.MATCH: matchChangingCriterionLine,
840 match = lineLogType[self.MATCH](lineLog
    [all...]

Completed in 1644 milliseconds

1 2 3