/third_party/curl/tests/unit/ |
H A D | unit1307.c | 45 #define MATCH CURL_FNMATCH_MATCH macro 76 { "\\[", "[", MATCH }, 79 { "[][]", "[", MATCH }, 80 { "[][]", "]", MATCH }, 81 { "[[]", "[", MATCH }, 82 { "[[[]", "[", MATCH }, 83 { "[[[[]", "[", MATCH }, 84 { "[[[[]", "[", MATCH }, 86 { "[][[]", "]", MATCH }, 87 { "[][[[]", "[", MATCH }, [all...] |
/third_party/gn/src/gn/ |
H A D | label_pattern_unittest.cc | 32 {"", false, LabelPattern::MATCH, "", "", ""}, in TEST() 33 {":", false, LabelPattern::MATCH, "", "", ""}, in TEST() 35 {":bar", true, LabelPattern::MATCH, "//foo/", "bar", ""}, in TEST() 36 {"//la:bar", true, LabelPattern::MATCH, "//la/", "bar", ""}, in TEST() 46 {"//foo()", true, LabelPattern::MATCH, "//foo/", "foo", ""}, in TEST() 47 {"//foo(//bar)", true, LabelPattern::MATCH, "//foo/", "foo", "//bar:bar"}, in TEST() 53 {"*foo*:bar", false, LabelPattern::MATCH, "", "", ""}, in TEST() 54 {"foo*:*bar", false, LabelPattern::MATCH, "", "", ""}, in TEST() 55 {"*foo:bar", false, LabelPattern::MATCH, "", "", ""}, in TEST() 56 {"foo:bar*", false, LabelPattern::MATCH, "", "", ""}, in TEST() [all...] |
H A D | label_pattern.h | 24 MATCH = 1, // Exact match for a given target. enumerator
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ir_reader.cpp | 141 if (MATCH(expr, pat)) { in read_type() 233 if (!MATCH(expr, pat)) { in read_function_sig() 397 if (!MATCH(expr, pat)) { in read_declaration() 479 if (!MATCH(expr, pat)) { in read_if() 508 if (!MATCH(expr, loop_pat)) { in read_loop() 531 if (MATCH(expr, return_value_pat)) { in read_return() 538 } else if (MATCH(expr, return_void_pat)) { in read_return() 587 if (!MATCH(expr, pat4) && !MATCH(expr, pat5)) { in read_assignment() 606 if (MATCH(mask_lis in read_assignment() [all...] |
H A D | s_expression.h | 40 #define MATCH(list, pat) s_match(list, ARRAY_SIZE(pat), pat, false) macro
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | SimpleFilteredSentenceBreakIterator.java | 96 if (bestValue == Builder.MATCH) { // exact match! in breakExceptionAt() 297 static final int MATCH = (1 << 1); // < exact match - skip this one. field in SimpleFilteredSentenceBreakIterator.Builder 400 builder.add(reversed, MATCH); in wrapIteratorWithFilter() 408 builder2.add(thisStr, MATCH); // forward in wrapIteratorWithFilter()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | SimpleFilteredSentenceBreakIterator.java | 102 if (bestValue == Builder.MATCH) { // exact match! in breakExceptionAt() 284 static final int MATCH = (1 << 1); // < exact match - skip this one. field in SimpleFilteredSentenceBreakIterator.Builder 387 builder.add(reversed, MATCH); in wrapIteratorWithFilter() 395 builder2.add(thisStr, MATCH); // forward in wrapIteratorWithFilter()
|
/third_party/rust/crates/nom/src/ |
H A D | str.rs | 420 const MATCH: &str = "βèƒôřèÂßÇ"; in is_a_succeed() consts 424 is_a(MATCH)(input) in is_a_succeed() 472 const MATCH: &str = "Ûñℓúçƙ¥"; in is_a_fail() consts 474 is_a(MATCH)(input) in is_a_fail()
|
/third_party/node/deps/zlib/ |
H A D | inflate.h | 45 MATCH, /* o: waiting for output space to copy string */ enumerator 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
H A D | inflate.c | 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 1132 state->mode = MATCH; in inflate() 1134 case MATCH: in inflate() 1520 (state->mode == MATCH ? state->was - state->length : 0));
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | inflate.h | 45 MATCH, /* o: waiting for output space to copy string */ enumerator 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
H A D | inflate.c | 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 1148 state->mode = MATCH; 1149 case MATCH: 1561 (state->mode == MATCH ? state->was - state->length : 0));
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | inflate.h | 45 MATCH, /* o: waiting for output space to copy string */
enumerator 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
H A D | inflate.c | 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
1107 state->mode = MATCH;
1108 case MATCH:
1480 (state->mode == MATCH ? state->was - state->length : 0));
|
/third_party/skia/third_party/externals/zlib/ |
H A D | inflate.h | 45 MATCH, /* o: waiting for output space to copy string */ enumerator 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
/third_party/zlib/ |
H A D | inflate.h | 45 MATCH, /* o: waiting for output space to copy string */ enumerator 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
/third_party/ffmpeg/libavcodec/ |
H A D | hevc_mvs.c | 96 #define MATCH(x) (A.x == B.x) macro 105 return MATCH(ref_idx[0]) && MATCH_MV(mv[0]) && in compare_mv_ref_idx() 106 MATCH(ref_idx[1]) && MATCH_MV(mv[1]); in compare_mv_ref_idx() 108 return MATCH(ref_idx[0]) && MATCH_MV(mv[0]); in compare_mv_ref_idx() 110 return MATCH(ref_idx[1]) && MATCH_MV(mv[1]); in compare_mv_ref_idx()
|
/third_party/selinux/libselinux/include/selinux/ |
H A D | restorecon.h | 188 MATCH = 0, enumerator
|
/third_party/curl/lib/ |
H A D | dict.c | 233 "MATCH " in dict_do()
|
/third_party/node/deps/openssl/openssl/crypto/property/ |
H A D | property_parse.c | 42 #define MATCH(s, m) match(s, m, sizeof(m) - 1) macro 435 } else if (MATCH(&s, "!=")) { in ossl_parse_query()
|
/third_party/openssl/crypto/property/ |
H A D | property_parse.c | 42 #define MATCH(s, m) match(s, m, sizeof(m) - 1) macro 405 } else if (MATCH(&s, "!=")) { in ossl_parse_query()
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/ |
H A D | SearchTest.java | 336 SearchData MATCH[] = { field in SearchTest 1112 SearchData search = MATCH[0]; in TestGetMatch() 1790 for (int count = 0; count < MATCH.length; count++) { in TestSetMatch() 1791 SearchData search = MATCH[count]; in TestSetMatch()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/search/ |
H A D | SearchTest.java | 339 SearchData MATCH[] = { field in SearchTest 1115 SearchData search = MATCH[0]; in TestGetMatch() 1793 for (int count = 0; count < MATCH.length; count++) { in TestSetMatch() 1794 SearchData search = MATCH[count]; in TestSetMatch()
|
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 1038 # ---------- COPY MATCH ---------- 1063 # ---------- COPY MATCH FAST ---------- 1336 # ---------- COPY MATCH 0 ---------- 1384 # ---------- COPY MATCH CROSS ----------
|
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | inflate.c | 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 1159 state->mode = MATCH; 1160 case MATCH: 1581 (state->mode == MATCH ? state->was - state->length : 0));
|