Home
last modified time | relevance | path

Searched refs:match (Results 626 - 650 of 4199) sorted by relevance

1...<<21222324252627282930>>...168

/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/
H A Dnormalize.js69 return !spec.match(/[/@\s+%:]/) &&
283 if (file.match(mdre)) {
363 const match = refs[i].match(/^([0-9a-f]{40}) (.+)$/)
364 if (match && match[2].trim() === headRef) {
365 headData = match[1]
/third_party/python/Lib/zoneinfo/
H A D_zoneinfo.py648 m = parser_re.match(offset_str)
702 m = re.match(r"M(\d{1,2})\.(\d).(\d)$", date)
728 match = re.match(
734 assert match is not None, tz_delta
738 for v in map(match.group, ("h", "m", "s"))
749 if match.group("sign") != "-":
/third_party/node/deps/npm/test/lib/commands/
H A Dprofile.js295 t.match(
365 t.match(
395 t.match(
477 'Passwords do not match, please try again.',
533 t.match(pass, 'bar', 'should use password for basic auth')
601 t.match(pass, 'bar', 'should use password for basic auth')
608 t.match(
685 t.match(
696 t.match(
706 t.match(
[all...]
/device/soc/rockchip/common/vendor/drivers/clk/
H A Dclk-pvtm.c220 const struct of_device_id *match; in rockchip_clock_pvtm_probe() local
230 match = of_match_node(rockchip_clock_pvtm_match, np); in rockchip_clock_pvtm_probe()
231 if (!match) { in rockchip_clock_pvtm_probe()
235 pvtm->info = (const struct rockchip_clock_pvtm_info *)match->data; in rockchip_clock_pvtm_probe()
/device/soc/rockchip/rk3588/kernel/drivers/clk/rockchip/
H A Dclk-pvtm.c224 const struct of_device_id *match; in rockchip_clock_pvtm_probe() local
233 match = of_match_node(rockchip_clock_pvtm_match, np); in rockchip_clock_pvtm_probe()
234 if (!match) in rockchip_clock_pvtm_probe()
237 pvtm->info = (const struct rockchip_clock_pvtm_info *)match->data; in rockchip_clock_pvtm_probe()
/third_party/glfw/src/
H A Dlinux_joystick.c278 regmatch_t match; in _glfwDetectJoystickConnectionLinux() local
283 if (regexec(&_glfw.linjs.regex, e->name, 1, &match, 0) != 0) in _glfwDetectJoystickConnectionLinux()
343 regmatch_t match; in _glfwInitJoysticksLinux() local
345 if (regexec(&_glfw.linjs.regex, entry->d_name, 1, &match, 0) != 0) in _glfwInitJoysticksLinux()
/third_party/mesa3d/bin/
H A Dgen_release_notes.py141 match = self.patterns.initial.search(remaining)
142 if match:
143 groups = match.groupdict()
146 before, inlines, remaining, sysmessages = method(self, match, 0)
/third_party/node/test/sequential/
H A Dtest-module-loading.js217 assert.match(e.message, /File not an ELF object/);
219 assert.match(e.message, /file3\.node/);
232 assert.match(e.message, /File not an ELF object/);
234 assert.match(e.message.replace(backslash, '/'), /file7\/index\.node/);
/third_party/node/deps/v8/tools/testrunner/local/
H A Dcommand.py278 match = find_path_re.match(arg)
279 if match:
280 self.files_to_push.append(match.group(1))
/third_party/node/deps/v8/tools/sanitizers/
H A Dsancov_formatter.py349 match = SANCOV_FILE_RE.match(sancov_file)
350 if match:
353 os.path.join(options.build_dir, match.group(1)),
/third_party/node/benchmark/
H A Dcommon.js100 const match = arg.match(validArgRE);
101 if (!match) {
105 const [, key, value] = match;
/third_party/pcre2/pcre2/src/
H A Dpcre2_jit_neon_inc.h246 goto match; in FF_FUN()
251 goto match; in FF_FUN()
260 goto match; in FF_FUN()
326 match:; in FF_FUN()
328 /* Failed match. */ in FF_FUN()
334 /* Not a match. */ in FF_FUN()
347 /* Failed match. */ in FF_FUN()
/third_party/protobuf/editors/
H A Dproto.vim51 syn case match
69 syn match pbInt /-\?\<\d\+\>/
70 syn match pbInt /\<0[xX]\x+\>/
71 syn match pbFloat /\<-\?\d*\(\.\d*\)\?/
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DSpecialCaseList.cpp61 unsigned SpecialCaseList::Matcher::match(StringRef Query) const { in match() function in llvm::SpecialCaseList::Matcher
68 if (RegExKV.first->match(Query)) in match()
213 if (SectionIter.SectionMatcher->match(Section)) { in inSectionBlame()
230 return II->getValue().match(Query); in inSectionBlame()
/third_party/python/Lib/json/
H A Dencoder.py41 def replace(match):
42 return ESCAPE_DCT[match.group(0)]
53 def replace(match):
54 s = match.group(0)
H A Ddecoder.py70 _b=BACKSLASH, _m=STRINGCHUNK.match):
137 memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
217 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
332 def decode(self, s, _w=WHITESPACE.match):
/third_party/typescript/tests/baselines/reference/
H A Dparserharness.js97 var bugs = content.match(/\bbug (\d+)/i);
194 throwAssertError(new Error("Expected array to match element only once (instead of " + foundCount + " times)"));
1189 var match = errorLines[i].match(/([^\(]*)\((\d+),(\d+)\):\s+((.*[\s\r\n]*.*)+)\s*$/);
1190 if (match) {
1191 this.errors.push(new CompilerError(match[1], parseFloat(match[2]), parseFloat(match[3]), match[4]));
1194 WScript.Echo("non-match o
[all...]
/third_party/littlefs/scripts/
H A Dbench.py162 match = re.match(
166 if match and match.group('case'):
167 case_linenos.append((i+1, match.group('name')))
168 elif match and match.group('code'):
593 m = pattern.match(line)
622 m = pattern.match(line)
666 m = pattern.match(lin
[all...]
/third_party/python/Lib/re/
H A D_parser.py247 def match(self, char): member in Tokenizer
340 if not source.match('{'):
400 if not source.match('{'):
452 sourcematch = source.match
514 sourcematch = source.match
820 if source.match("|"):
826 if not source.match(")"):
864 if not source.match(")"):
1023 if not s.match("<"):
1090 def expand_template(template, match)
[all...]
/third_party/icu/icu4c/source/common/
H A Dunistr.cpp1046 const UChar *match = u_strFindFirst(array + start, length, srcChars + srcStart, srcLength); in indexOf() local
1047 if(match == NULL) { in indexOf()
1050 return (int32_t)(match - array); in indexOf()
1064 const UChar *match = u_memchr(array + start, c, length); in doIndexOf() local
1065 if(match == NULL) { in doIndexOf()
1068 return (int32_t)(match - array); in doIndexOf()
1081 const UChar *match = u_memchr32(array + start, c, length); in doIndexOf() local
1082 if(match == NULL) { in doIndexOf()
1085 return (int32_t)(match - array); in doIndexOf()
1110 const UChar *match in lastIndexOf() local
1132 const UChar *match = u_memrchr(array + start, c, length); doLastIndexOf() local
1149 const UChar *match = u_memrchr32(array + start, c, length); doLastIndexOf() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dunistr.cpp1088 const char16_t *match = u_strFindFirst(array + start, length, srcChars + srcStart, srcLength); in indexOf() local
1089 if(match == nullptr) { in indexOf()
1092 return (int32_t)(match - array); in indexOf()
1106 const char16_t *match = u_memchr(array + start, c, length); in doIndexOf() local
1107 if(match == nullptr) { in doIndexOf()
1110 return (int32_t)(match - array); in doIndexOf()
1123 const char16_t *match = u_memchr32(array + start, c, length); in doIndexOf() local
1124 if(match == nullptr) { in doIndexOf()
1127 return (int32_t)(match - array); in doIndexOf()
1152 const char16_t *match in lastIndexOf() local
1174 const char16_t *match = u_memrchr(array + start, c, length); doLastIndexOf() local
1191 const char16_t *match = u_memrchr32(array + start, c, length); doLastIndexOf() local
[all...]
/third_party/node/deps/minimatch/
H A Dindex.js35 // node_modules/balanced-match/index.js
37 "node_modules/balanced-match/index.js"(exports2, module2) {
55 var m = str.match(reg);
172 if (m.post.match(/,.*\}/)) {
549 // returns the string match, the regexp source, whether there's magic
608 // +(*|.x*) can match .xy but not .yx.
682 // !() must match something,but !(x) can match ''
924 exports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = void 0;
935 return new Minimatch(pattern, options).match(
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dunistr.cpp1045 const UChar *match = u_strFindFirst(array + start, length, srcChars + srcStart, srcLength); in indexOf() local
1046 if(match == NULL) { in indexOf()
1049 return (int32_t)(match - array); in indexOf()
1063 const UChar *match = u_memchr(array + start, c, length); in doIndexOf() local
1064 if(match == NULL) { in doIndexOf()
1067 return (int32_t)(match - array); in doIndexOf()
1080 const UChar *match = u_memchr32(array + start, c, length); in doIndexOf() local
1081 if(match == NULL) { in doIndexOf()
1084 return (int32_t)(match - array); in doIndexOf()
1109 const UChar *match in lastIndexOf() local
1131 const UChar *match = u_memrchr(array + start, c, length); doLastIndexOf() local
1148 const UChar *match = u_memrchr32(array + start, c, length); doLastIndexOf() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_sbcs.java269 int match(CharsetDetector det, int[] ngrams, byte[] byteMap) in match() method in CharsetRecog_sbcs
271 return match (det, ngrams, byteMap, (byte)0x20); in match()
274 int match(CharsetDetector det, int[] ngrams, byte[] byteMap, byte spaceChar) in match() method in CharsetRecog_sbcs
426 public CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_sbcs.CharsetRecog_8859_1
432 int confidence = match(det, ngl.fNGrams, byteMap); in match()
523 public CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_sbcs.CharsetRecog_8859_2
529 int confidence = match(det, ngl.fNGrams, byteMap); in match()
607 public CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_sbcs.CharsetRecog_8859_5_ru
609 int confidence = match(det, ngrams, byteMap); in match()
674 public CharsetMatch match(CharsetDetecto method in CharsetRecog_sbcs.CharsetRecog_8859_6_ar
741 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_7_el
815 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_8_I_he
839 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_8_he
908 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_9_tr
973 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_windows_1251
1037 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_windows_1256
1101 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_KOI8_R
1150 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM424_he_rtl
1171 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM424_he_ltr
1224 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM420_ar_rtl
1246 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM420_ar_ltr
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCharsetRecog_sbcs.java270 int match(CharsetDetector det, int[] ngrams, byte[] byteMap) in match() method in CharsetRecog_sbcs
272 return match (det, ngrams, byteMap, (byte)0x20); in match()
275 int match(CharsetDetector det, int[] ngrams, byte[] byteMap, byte spaceChar) in match() method in CharsetRecog_sbcs
427 public CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_sbcs.CharsetRecog_8859_1
433 int confidence = match(det, ngl.fNGrams, byteMap); in match()
524 public CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_sbcs.CharsetRecog_8859_2
530 int confidence = match(det, ngl.fNGrams, byteMap); in match()
608 public CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_sbcs.CharsetRecog_8859_5_ru
610 int confidence = match(det, ngrams, byteMap); in match()
675 public CharsetMatch match(CharsetDetecto method in CharsetRecog_sbcs.CharsetRecog_8859_6_ar
742 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_7_el
816 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_8_I_he
840 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_8_he
909 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_8859_9_tr
974 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_windows_1251
1038 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_windows_1256
1102 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_KOI8_R
1151 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM424_he_rtl
1172 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM424_he_ltr
1225 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM420_ar_rtl
1247 public CharsetMatch match(CharsetDetector det) match() method in CharsetRecog_sbcs.CharsetRecog_IBM420_ar_ltr
[all...]

Completed in 27 milliseconds

1...<<21222324252627282930>>...168