Home
last modified time | relevance | path

Searched refs:match (Results 1101 - 1125 of 2137) sorted by relevance

1...<<41424344454647484950>>...86

/third_party/libabigail/include/
H A Dabg-regex.h63 match(const regex_t_sptr& r, const std::string& str);
/third_party/python/Tools/scripts/
H A Dptags.py46 m = matcher.match(line)
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumparse_currency.h25 * Will match currency spacing either before or after the number depending on whether we are currently in
40 bool match(StringSegment& segment, ParsedNumber& result, UErrorCode& status) const override;
H A Dmeasunit_extra.cpp470 Token(int32_t match) : fMatch(match) {}
639 int32_t match = -1;
652 match = fTrie.getValue();
661 if (match < 0) {
666 return Token(match);
/third_party/skia/src/sksl/lex/
H A DNFA.cpp10 int NFA::match(std::string s) const { in match() function in NFA
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-hb-version.py20 old_version = re.match (r"#define HB_VERSION_STRING \"(\d.\d.\d)\"", line)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DRegex.h35 /// expressions and '.' never match newline. A ^ anchor matches the
63 /// matches it contains. The number filled in by match will include this
69 /// \param Matches - If given, on a successful match this will be filled in
73 /// This returns true on a successful match.
74 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = nullptr);
76 /// sub - Return the result of replacing the first match of the regex in
78 /// replacement string are replaced with the appropriate match substring.
/third_party/protobuf/js/commonjs/
H A Drewrite_tests_for_commonjs.js77 var isRequire = line.match(/goog\.require\('([^']*)'\)/);
78 var isLoadFromFile = line.match(/CommonJS-LoadFromFile: (\S*) (.*)/);
79 var isSetTestOnly = line.match(/goog.setTestOnly()/);
/third_party/protobuf/js/compatibility_tests/v3.0.0/commonjs/
H A Drewrite_tests_for_commonjs.js77 var isRequire = line.match(/goog\.require\('([^']*)'\)/);
78 var isLoadFromFile = line.match(/CommonJS-LoadFromFile: (\S*) (.*)/);
79 var isSetTestOnly = line.match(/goog.setTestOnly()/);
/third_party/python/Objects/
H A Dtypeslots.py11 m = re.match("#define Py_([a-z_]+) ([0-9]+)", line)
/drivers/hdf_core/framework/model/usb/src/
H A Dusb_ddk_pnp_loader.c826 bool match = false; in UsbDdkPnpLoaderAddDevice() local
836 HDF_LOGD("%s:%d matchDevice end, index=%d tableCount=%d is match \ in UsbDdkPnpLoaderAddDevice()
839 match = true; in UsbDdkPnpLoaderAddDevice()
845 return match; in UsbDdkPnpLoaderAddDevice()
950 bool match = false; in UsbDdkPnpLoaderDevice() local
953 match = true; in UsbDdkPnpLoaderDevice()
956 if (!match) { in UsbDdkPnpLoaderDevice()
/third_party/icu/icu4c/source/i18n/
H A Dmeasunit_extra.cpp466 Token(int32_t match) : fMatch(match) {}
635 int32_t match = -1;
648 match = fTrie.getValue();
657 if (match < 0) {
662 return Token(match);
859 // In case the base unit identifier did not match any entry.
872 // In case the reciprocal of the base unit identifier did not match any entry.
888 // In case the simplified base unit identifier did not match any entry.
901 // If there is no match a
[all...]
/third_party/node/deps/v8/tools/
H A Dcallstats.py45 m = re.match(r'^--([^=]+)=(.*)$', arg)
99 function match(url, item) {
100 if ('regexp' in item) { return url.match(item.regexp) !== null };
110 if (!match(url, item)) continue;
280 m = re.match(r'^(https?://)?([^/]+)(/.*)?$', site)
417 if not regexp.match(key): continue
498 match = re.match(r'^(.*?)[^a-zA-Z]?[0-9]+?.txt', filename)
499 domain = match.group(1)
H A Dgdb-v8-support.py187 m = FindAnywhere.MAPPING_RE.match(l)
192 m = FindAnywhere.LIVE_MAPPING_RE.match(l)
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dandroid.py585 # that don't match our local_cpp_extension, since Android will only
810 match = re.search(r"([^/]+)\.a$", lib)
811 if match:
812 static_lib_modules.append(match.group(1))
814 match = re.search(r"([^/]+)\.so$", lib)
815 if match:
816 dynamic_lib_modules.append(match.group(1))
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dandroid.py585 # that don't match our local_cpp_extension, since Android will only
810 match = re.search(r"([^/]+)\.a$", lib)
811 if match:
812 static_lib_modules.append(match.group(1))
814 match = re.search(r"([^/]+)\.so$", lib)
815 if match:
816 dynamic_lib_modules.append(match.group(1))
/third_party/node/deps/icu-small/source/i18n/
H A Dmeasunit_extra.cpp466 Token(int32_t match) : fMatch(match) {}
635 int32_t match = -1;
648 match = fTrie.getValue();
657 if (match < 0) {
662 return Token(match);
859 // In case the base unit identifier did not match any entry.
872 // In case the reciprocal of the base unit identifier did not match any entry.
888 // In case the simplified base unit identifier did not match any entry.
901 // If there is no match a
[all...]
/third_party/python/Lib/
H A Ddataclasses.py221 # String regex that string annotations for ClassVar or InitVar must match.
676 # - a_module is the module we want to match
677 # - a_type is the type in that module we want to match
705 match = _MODULE_IDENTIFIER_RE.match(annotation)
706 if match:
708 module_name = match.group(1)
718 if ns and is_type_predicate(ns.get(match.group(2)), a_module):
1134 match cls.__dict__.get('__slots__'):
/third_party/python/Lib/logging/
H A Dconfig.py293 m = IDENTIFIER.match(s)
326 # equivalents, whereas strings which match a conversion format are converted
416 m = self.WORD_PATTERN.match(rest)
424 m = self.DOT_PATTERN.match(rest)
428 m = self.INDEX_PATTERN.match(rest)
431 if not self.DIGIT_PATTERN.match(idx):
464 m = self.CONVERT_PATTERN.match(value)
/applications/standard/systemui/
H A Dgradlew.bat48 echo Please set the JAVA_HOME variable in your environment to match the
62 echo Please set the JAVA_HOME variable in your environment to match the
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/include/operation/
H A Dphoto_displayname_operation.h90 std::smatch match; in ParseBurstDisplayName() local
91 if (!std::regex_search(displayName, match, pattern)) { in ParseBurstDisplayName()
/foundation/communication/wifi/wifi/application/wifi_direct_demo/
H A Dgradlew.bat47 echo Please set the JAVA_HOME variable in your environment to match the
61 echo Please set the JAVA_HOME variable in your environment to match the
/third_party/cJSON/tests/unity/test/
H A Drakefile_helper.rb51 m = line.match(/^\s*#include\s+\"\s*(.+\.[hH])\s*\"/)
251 if output.match(/OK$/m).nil?
/third_party/cJSON/tests/unity/examples/example_3/
H A Drakefile_helper.rb41 m = line.match(/^\s*#include\s+\"\s*(.+\.[hH])\s*\"/)
212 test_results += if output.match(/OK$/m).nil?
/third_party/nghttp2/script/
H A Dfetch-ocsp-response123 if not re.match(r'^https?://', ocsp_uri):
132 m = re.match(

Completed in 17 milliseconds

1...<<41424344454647484950>>...86