Home
last modified time | relevance | path

Searched refs:match (Results 326 - 350 of 4126) sorted by relevance

1...<<11121314151617181920>>...166

/third_party/node/test/parallel/
H A Dtest-debugger-profile.js29 assert.match(cli.output, /undefined/);
32 assert.match(cli.output, /undefined/);
33 assert.match(cli.output, /Captured new CPU profile\./);
/third_party/node/deps/icu-small/source/i18n/
H A Dcsr2022.h51 * @return match quality, in the range of 0-100.
67 UBool match(InputText *textIn, CharsetMatch *results) const override;
77 UBool match(InputText *textIn, CharsetMatch *results) const override;
88 UBool match(InputText *textIn, CharsetMatch *results) const override;
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcsr2022.h51 * @return match quality, in the range of 0-100.
67 UBool match(InputText *textIn, CharsetMatch *results) const;
77 UBool match(InputText *textIn, CharsetMatch *results) const;
88 UBool match(InputText *textIn, CharsetMatch *results) const;
/third_party/node/deps/v8/src/compiler/
H A Djs-inlining.cc298 HeapObjectMatcher match(target); in DetermineCallTarget()
304 if (match.HasResolvedValue() && match.Ref(broker()).IsJSFunction()) { in DetermineCallTarget()
305 JSFunctionRef function = match.Ref(broker()).AsJSFunction(); in DetermineCallTarget()
332 if (match.IsJSCreateClosure()) { in DetermineCallTarget()
336 } else if (match.IsCheckClosure()) { in DetermineCallTarget()
337 FeedbackCellRef cell = MakeRef(broker(), FeedbackCellOf(match.op())); in DetermineCallTarget()
353 HeapObjectMatcher match(target); in DetermineCallContext()
355 if (match.HasResolvedValue() && match in DetermineCallContext()
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/regulator/
H A Dof_regulator.c319 * @matches: match table for the regulators
320 * @num_matches: number of entries in match table
322 * This function uses a match table specified by the regulator driver to
327 * or otherwise the child node's name. Note that the match table is modified
357 struct of_regulator_match *match = &matches[i]; in of_regulator_match() local
358 match->init_data = NULL; in of_regulator_match()
359 match->of_node = NULL; in of_regulator_match()
369 struct of_regulator_match *match = &matches[i]; in of_regulator_match() local
370 if (match->of_node) { in of_regulator_match()
374 if (strcmp(match in of_regulator_match()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dlibopenjpegdec.c161 int match = 1; in libopenjpeg_matches_pix_fmt() local
169 match = match && in libopenjpeg_matches_pix_fmt()
174 match = match && in libopenjpeg_matches_pix_fmt()
179 match = match && in libopenjpeg_matches_pix_fmt()
184 match = match && in libopenjpeg_matches_pix_fmt()
192 return match; in libopenjpeg_matches_pix_fmt()
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Dutils.py207 match = re.match(r"^([(<]|&lt;)+", middle)
209 if match:
210 head = match.group()
211 middle = middle[match.end() :]
215 # before trying to match all of them, to avoid backtracking.
217 match = re.search(r"([)>.,\n]|&gt;)+$", middle)
219 if match:
220 tail = match.group()
221 middle = middle[: match
[all...]
/third_party/node/deps/v8/tools/testrunner/objects/
H A Dtestcase.py399 for match in re.findall(FLAGS_PATTERN, source):
400 flags += shlex.split(match.strip())
464 for match in RESOURCES_PATTERN.finditer(source):
466 for path in match.group(1).strip().split():
471 for match in LOAD_PATTERN.finditer(source):
473 add_path(match.group(1))
475 for match in MODULE_FROM_RESOURCES_PATTERN.finditer(source):
476 add_import_path(match.group(1))
477 for match in MODULE_IMPORT_RESOURCES_PATTERN.finditer(source):
478 add_import_path(match
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonParser.cs807 var match = TimestampRegex.Match(token.StringValue); in MergeTimestamp()
808 if (!match.Success) in MergeTimestamp()
812 var dateTime = match.Groups["datetime"].Value; in MergeTimestamp()
813 var subseconds = match.Groups["subseconds"].Value; in MergeTimestamp()
814 var offset = match.Groups["offset"].Value; in MergeTimestamp()
883 var match = DurationRegex.Match(token.StringValue); in MergeDuration()
884 if (!match.Success) in MergeDuration()
888 var sign = match.Groups["sign"].Value; in MergeDuration()
889 var secondsText = match.Groups["int"].Value; in MergeDuration()
895 var subseconds = match in MergeDuration()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dreflow.py63 # VUID with the numeric portion captured in the match object
137 (self.breakInitial and endInitial.match(word))):
226 attributeMatches = [match for match in pnameMatches if
227 match[0] == '{' and
228 match[1:-1] not in attributeExceptionList]
229 nonattributeMatches = [match for match in pnameMatches if
230 match[0] != '{']
346 if doctransformer.beginBullet.match(par
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dutils.py207 match = re.match(r"^([(<]|&lt;)+", middle)
209 if match:
210 head = match.group()
211 middle = middle[match.end() :]
215 # before trying to match all of them, to avoid backtracking.
217 match = re.search(r"([)>.,\n]|&gt;)+$", middle)
219 if match:
220 tail = match.group()
221 middle = middle[: match
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_sc.py666 match = "#define\s+("
668 match += part.group(1)+"|"
669 match = match[:-1] + ")\s+1"
670 parts = re.split(match, src)
703 return [Definition(None, match[0], match[1]) for match in matches if not skipDefinition(extensionName, match)]
710 return [Definition(None, match[
[all...]
/test/testfwk/arkxtest/uitest/test/
H A Dui_driver_test.cpp300 bool match = true; in TEST_F()
301 match = match && window.bundleName_ == filterBundle["bundleName"].get<string>(); in TEST_F()
302 return match; in TEST_F()
312 bool match = true; in TEST_F()
313 match = match && window.bundleName_ == filterBundleNotFind["bundleName"].get<string>(); in TEST_F()
314 return match; in TEST_F()
375 bool match = true; in TEST_F()
376 match in TEST_F()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetDetector.java65 * A match between a declared encoding and a possible detected encoding
67 * and will also appear as a "reason" for the match.
148 * <li>no charset appears to match the data.</li>
159 // detectAll(), and cut it short as soon as a match with a high confidence in detect()
174 * best quality match first.
178 * <li>no charsets appear to match the input data.</li>
192 // give a match quality > 0. in detectAll()
197 CharsetMatch m = rcinfo.recognizer.match(this); in detectAll()
204 Collections.reverse(matches); // Put best match first. in detectAll()
224 * Raise an exception if no charsets appear to match th
[all...]
H A DCharsetRecog_Unicode.java26 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
29 abstract CharsetMatch match(CharsetDetector det); in match() method in CharsetRecog_Unicode
63 CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_Unicode.CharsetRecog_UTF_16_BE
99 CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_Unicode.CharsetRecog_UTF_16_LE
134 CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_Unicode.CharsetRecog_UTF_32
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCharsetDetector.java64 * A match between a declared encoding and a possible detected encoding
66 * and will also appear as a "reason" for the match.
141 * <li>no charset appears to match the data.</li>
150 // detectAll(), and cut it short as soon as a match with a high confidence in detect()
165 * best quality match first.
169 * <li>no charsets appear to match the input data.</li>
181 // give a match quality > 0. in detectAll()
186 CharsetMatch m = rcinfo.recognizer.match(this); in detectAll()
193 Collections.reverse(matches); // Put best match first. in detectAll()
213 * Raise an exception if no charsets appear to match th
[all...]
H A DCharsetRecog_Unicode.java27 * @see ohos.global.icu.text.CharsetRecognizer#match(ohos.global.icu.text.CharsetDetector)
30 abstract CharsetMatch match(CharsetDetector det); in match() method in CharsetRecog_Unicode
64 CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_Unicode.CharsetRecog_UTF_16_BE
100 CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_Unicode.CharsetRecog_UTF_16_LE
135 CharsetMatch match(CharsetDetector det) in match() method in CharsetRecog_Unicode.CharsetRecog_UTF_32
/third_party/json/tools/amalgamate/
H A Damalgamate.py107 def _is_within(match, matches):
109 if match.start() > m.start() and \
110 match.end() < m.end():
134 # Search for pattern in self.content, add the match to
137 match = pattern.search(self.content, index)
138 if match:
139 contexts.append(match)
140 return match.end()
176 # Returns True if the match is within list of other matches
/third_party/node/deps/v8/tools/
H A Dgen-postmortem-metadata.py467 for match in re.finditer(r'\nclass(?:\s+V8_EXPORT(?:_PRIVATE)?)?'
471 klass = match.group(1).strip();
472 pklass = match.group(2);
475 gen_match = re.match(
482 match = re.match(r'(\w+)(<.*>)?', pklass.strip());
483 pklass = match.group(1).strip();
/third_party/node/deps/npm/node_modules/init-package-json/lib/
H A Ddefault-input.js11 const isTestPkg = (p) => !!p.match(/^(expresso|mocha|tap|coffee-script|coco|streamline)$/)
24 if (dir.match(/^\./) || test !== isTestPkg(dir) || excluded[dir]) {
104 .then(list => list.filter((f) => f.match(/\.js$/)))
127 let r = d.find(f => f.match(/\.js$/))
210 if (!url.match(/^\s*url =/)) {
213 if (!url.match(/^\s*url =/)) {
220 if (url && url.match(/^git@github.com:/)) {
/third_party/node/deps/undici/src/lib/mock/
H A Dmock-utils.js19 function matchValue (match, value) {
20 if (typeof match === 'string') {
21 return match === value
23 if (match instanceof RegExp) {
24 return match.test(value)
26 if (typeof match === 'function') {
27 return match(value) === true
/third_party/node/deps/v8/tools/release/
H A Dcommon_includes.py120 if version_without_prefix.match(tag):
122 elif version_with_prefix.match(tag):
246 lambda s: re.match(r"^branch\-heads/\d+\.\d+$", s),
441 if re.match(r"\*?\s*%s$" % re.escape(name), line):
490 match = re.match(r"^#define %s\s+(\d*)" % def_name, line)
491 if match:
492 value = match.group(1)
594 match = PUSH_MSG_GIT_RE.match(titl
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/cpufreq/
H A Dcpufreq-dt-platdev.c403 const struct of_device_id *match; in cpufreq_dt_platdev_init() local
410 match = of_match_node(whitelist, np); in cpufreq_dt_platdev_init()
411 if (match) { in cpufreq_dt_platdev_init()
412 data = match->data; in cpufreq_dt_platdev_init()
/third_party/gn/examples/ios/build/config/ios/scripts/
H A Dmerge_plist.py86 match = VARIABLE_PATTERN.search(result)
87 if not match:
90 extent = match.span()
91 expand = substitutions[match.group(1)]
/third_party/icu/icu4c/source/i18n/
H A Dnumparse_scientific.cpp55 bool ScientificMatcher::match(StringSegment& segment, ParsedNumber& result, UErrorCode& status) const { in match() function in ScientificMatcher
66 // First match the scientific separator, and then match another number after it. in match()
71 // Full exponent separator match. in match()
82 fIgnorablesMatcher.match(segment, result, status); in match()
88 // Allow a sign, and then try to match digits. in match()
98 // Partial custom sign match in match()
107 // Partial custom sign match in match()
123 fIgnorablesMatcher.match(segment, result, status); in match()
133 bool digitsReturnValue = fExponentMatcher.match(segmen in match()
[all...]

Completed in 16 milliseconds

1...<<11121314151617181920>>...166