/third_party/libabigail/include/ |
H A D | abg-regex.h | 63 match(const regex_t_sptr& r, const std::string& str);
|
/third_party/python/Tools/scripts/ |
H A D | ptags.py | 46 m = matcher.match(line)
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | numparse_currency.h | 25 * 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 D | measunit_extra.cpp | 470 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 D | NFA.cpp | 10 int NFA::match(std::string s) const { in match() function in NFA
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-hb-version.py | 20 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 D | Regex.h | 35 /// 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 D | rewrite_tests_for_commonjs.js | 77 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 D | rewrite_tests_for_commonjs.js | 77 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 D | typeslots.py | 11 m = re.match("#define Py_([a-z_]+) ([0-9]+)", line)
|
/drivers/hdf_core/framework/model/usb/src/ |
H A D | usb_ddk_pnp_loader.c | 826 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 D | measunit_extra.cpp | 466 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 D | callstats.py | 45 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 D | gdb-v8-support.py | 187 m = FindAnywhere.MAPPING_RE.match(l) 192 m = FindAnywhere.LIVE_MAPPING_RE.match(l)
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | android.py | 585 # 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 D | android.py | 585 # 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 D | measunit_extra.cpp | 466 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 D | dataclasses.py | 221 # 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 D | config.py | 293 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 D | gradlew.bat | 48 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 D | photo_displayname_operation.h | 90 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 D | gradlew.bat | 47 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 D | rakefile_helper.rb | 51 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 D | rakefile_helper.rb | 41 m = line.match(/^\s*#include\s+\"\s*(.+\.[hH])\s*\"/) 212 test_results += if output.match(/OK$/m).nil?
|
/third_party/nghttp2/script/ |
H A D | fetch-ocsp-response | 123 if not re.match(r'^https?://', ocsp_uri): 132 m = re.match(
|