Home
last modified time | relevance | path

Searched refs:match (Results 1051 - 1075 of 4428) sorted by relevance

1...<<41424344454647484950>>...178

/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dkeymgmt_meth.c145 if (keymgmt->match == NULL) in keymgmt_from_algorithm()
146 keymgmt->match = OSSL_FUNC_keymgmt_match(fns); in keymgmt_from_algorithm()
451 /* We assume no match if the implementation doesn't have a function */ in evp_keymgmt_match()
452 if (keymgmt->match == NULL) in evp_keymgmt_match()
454 return keymgmt->match(keydata1, keydata2, selection); in evp_keymgmt_match()
/third_party/libabigail/src/
H A Dabg-suppression-priv.h148 if (!regex::match(regexp, soname)) in matches_soname()
155 if (regex::match(regexp, soname)) in matches_soname()
183 if (!regex::match(regexp, binary_name)) in matches_binary_name()
190 if (regex::match(regexp, binary_name)) in matches_binary_name()
H A Dabg-corpus-priv.h511 if (regex::match(*i, frep)) in keep_wrt_regex_of_fns_to_suppress()
544 if (regex::match(*i, frep)) in keep_wrt_regex_of_fns_to_keep()
618 if (regex::match(*i, frep)) in keep_wrt_regex_of_vars_to_suppress()
652 if (regex::match(*i, frep)) in keep_wrt_regex_of_vars_to_keep()
/third_party/python/Tools/c-analyzer/c_analyzer/
H A D__main__.py24 from c_parser.match import is_type_decl
25 from .match import filter_forward
281 elif len(checks) == 1 and type(checks) is not dict and re.match(r'^<.*>$', checks[0]):
350 from .match import group_by_storage
/third_party/python/Lib/
H A Dtelnetlib.py297 def read_until(self, match, timeout=None):
300 When no match is found, return whatever is available instead,
305 n = len(match)
307 i = self.cookedq.find(match)
322 i = self.cookedq.find(match, i)
598 returned; and the text read up till and including the match.
605 If a regular expression ends with a greedy match (e.g. '.*')
606 or if more than one expression can match the same input, the
H A Dsysconfig.py336 m = re.match(_variable_rx, line)
570 m = define_rx.match(line)
581 m = undef_rx.match(line)
787 m = rel_re.match(release)
/third_party/python/Lib/idlelib/
H A Dformat.py181 return re.match(r"^\s*$", line) is not None
185 return re.match(r"^([ \t]*)", line).group()
194 m = re.match(r"^([ \t]*#*)", line)
208 m = _line_indent_re.match(line)
/third_party/openssl/crypto/evp/
H A Dkeymgmt_meth.c145 if (keymgmt->match == NULL) in keymgmt_from_algorithm()
146 keymgmt->match = OSSL_FUNC_keymgmt_match(fns); in keymgmt_from_algorithm()
451 /* We assume no match if the implementation doesn't have a function */ in evp_keymgmt_match()
452 if (keymgmt->match == NULL) in evp_keymgmt_match()
454 return keymgmt->match(keydata1, keydata2, selection); in evp_keymgmt_match()
/third_party/skia/third_party/externals/spirv-tools/test/tools/
H A Dexpect.py579 will not check what it is. If it's a string, expect an exact match. If it's
601 'Expected to match regex:\n{ex}'.format(
613 but will not check what it is. If it's a string, expect an exact match.
635 'Expected to match regex:\n{ex}'.format(
699 match = pass_name_re.match(line)
700 if match:
701 pass_names.append(match.group('pass_name'))
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/
H A Dexpect.py579 will not check what it is. If it's a string, expect an exact match. If it's
601 'Expected to match regex:\n{ex}'.format(
613 but will not check what it is. If it's a string, expect an exact match.
635 'Expected to match regex:\n{ex}'.format(
699 match = pass_name_re.match(line)
700 if match:
701 pass_names.append(match.group('pass_name'))
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumparse_affixes.cpp176 bool CodePointMatcher::match(StringSegment& segment, ParsedNumber& result, UErrorCode&) const { in match() function in CodePointMatcher
365 bool AffixMatcher::match(StringSegment& segment, ParsedNumber& result, UErrorCode& status) const { in match() function in AffixMatcher
368 // Do not match if: in match()
375 // Attempt to match the prefix. in match()
377 bool maybeMore = fPrefix->match(segment, result, status); in match()
385 // Do not match if: in match()
393 // Attempt to match the suffix. in match()
395 bool maybeMore = fSuffix->match(segment, result, status); in match()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DDemandedBits.cpp159 } else if (match(II->getOperand(2), m_APInt(SA))) { in determineLiveOperandBits()
186 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
203 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
217 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
/third_party/typescript/tests/baselines/reference/
H A DconstAssertions.js88 type ContentMatch = "match" | "nonMatch";
93 const contentMatch: ContentMatch = contentMatches ? `match` : `nonMatch`;
100 const contentMatch = contentMatches ? `match` : `nonMatch`;
182 const contentMatch = contentMatches ? `match` : `nonMatch`;
188 const contentMatch = contentMatches ? `match` : `nonMatch`;
308 type ContentMatch = "match" | "nonMatch";
/third_party/vixl/test/aarch64/
H A Dtest-utils-aarch64.h258 // Check that the lower 32 bits of x<code> exactly match the 32 bits of
277 bool match = ((dump_.q_[code].GetLane<uint64_t>(0) == dump_.d_[code]) &&
283 match = match && z_match;
285 return match;
/third_party/python/Modules/
H A Dnismodule.c33 "match(key, map, domain = defaultdomain)\n\
188 char *match; in nis_match() local
199 "Us|s:match", kwlist, in nis_match()
221 err = yp_match (domain, map, key, keylen, &match, &len); in nis_match()
229 res = PyUnicode_DecodeFSDefaultAndSize(match, len); in nis_match()
230 free (match); in nis_match()
472 {"match", _PyCFunction_CAST(nis_match),
/third_party/python/Lib/test/
H A Dtest_fnmatch.py15 "expected %r to match pattern %r"
19 "expected %r not to match pattern %r"
239 # fancy translation to prevent exponential-time match failure
248 self.assertTrue(re.match(fatre, 'abaccad'))
249 self.assertTrue(re.match(fatre, 'abxbcab'))
250 self.assertTrue(re.match(fatre, 'cbabcaxc'))
251 self.assertFalse(re.match(fatre, 'dabccbad'))
/third_party/spirv-tools/test/tools/
H A Dexpect.py594 will not check what it is. If it's a string, expect an exact match. If it's
616 'Expected to match regex:\n{ex}'.format(
628 but will not check what it is. If it's a string, expect an exact match.
650 'Expected to match regex:\n{ex}'.format(
714 match = pass_name_re.match(line)
715 if match:
716 pass_names.append(match.group('pass_name'))
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dxml-utils.c110 xml_node_t *match; in get_child_node() local
114 match = get_node(ctx, node, path); in get_child_node()
115 if (match) in get_child_node()
116 return match; in get_child_node()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dhw_features_common.c209 int match; in check_40mhz_5g() local
238 match = 0; in check_40mhz_5g()
244 match = 1; in check_40mhz_5g()
248 if (!match) { in check_40mhz_5g()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dxml-utils.c110 xml_node_t *match; in get_child_node() local
114 match = get_node(ctx, node, path); in get_child_node()
115 if (match) in get_child_node()
116 return match; in get_child_node()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dhw_features_common.c186 int match; in check_40mhz_5g() local
218 match = 0; in check_40mhz_5g()
224 match = 1; in check_40mhz_5g()
228 if (!match) { in check_40mhz_5g()
/foundation/arkui/ace_engine/build/tools/
H A Dgen_uicontext_ohos.py36 class_name = re.match(r"class\s+(\w+)", line).group(1)
/third_party/googletest/googletest/scripts/
H A Dcommon.py59 m = _SVN_INFO_URL_RE.match(line)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
H A DCodePointMatcher.java26 public boolean match(StringSegment segment, ParsedNumber result) { in match() method in CodePointMatcher
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DCodePointMatcher.java28 public boolean match(StringSegment segment, ParsedNumber result) { in match() method in CodePointMatcher

Completed in 20 milliseconds

1...<<41424344454647484950>>...178