Home
last modified time | relevance | path

Searched refs:match (Results 251 - 275 of 6458) sorted by relevance

1...<<11121314151617181920>>...259

/third_party/jsframework/runtime/main/util/
H A Dprops.js10 const match = fn && fn.toString().match(/^\s*function (\w+)/);
11 return match ? match[1] : '';
/kernel/linux/linux-5.10/drivers/cpufreq/
H A Dti-cpufreq.c314 const struct of_device_id *match; in ti_cpufreq_match_node() local
317 match = of_match_node(ti_cpufreq_of_match, np); in ti_cpufreq_match_node()
320 return match; in ti_cpufreq_match_node()
326 const struct of_device_id *match; in ti_cpufreq_probe() local
332 match = dev_get_platdata(&pdev->dev); in ti_cpufreq_probe()
333 if (!match) in ti_cpufreq_probe()
340 opp_data->soc_data = match->data; in ti_cpufreq_probe()
413 const struct of_device_id *match; in ti_cpufreq_init() local
416 match = ti_cpufreq_match_node(); in ti_cpufreq_init()
417 if (match) in ti_cpufreq_init()
[all...]
/kernel/linux/linux-6.6/drivers/cpufreq/
H A Dti-cpufreq.c350 const struct of_device_id *match; in ti_cpufreq_match_node() local
353 match = of_match_node(ti_cpufreq_of_match, np); in ti_cpufreq_match_node()
356 return match; in ti_cpufreq_match_node()
362 const struct of_device_id *match; in ti_cpufreq_probe() local
371 match = dev_get_platdata(&pdev->dev); in ti_cpufreq_probe()
372 if (!match) in ti_cpufreq_probe()
379 opp_data->soc_data = match->data; in ti_cpufreq_probe()
440 const struct of_device_id *match; in ti_cpufreq_init() local
443 match = ti_cpufreq_match_node(); in ti_cpufreq_init()
444 if (match) in ti_cpufreq_init()
[all...]
/third_party/googletest/googletest/test/
H A Dgoogletest-filter-unittest.py201 match = TEST_CASE_REGEX.match(line)
202 if match is not None:
203 test_case = match.group(1)
205 match = TEST_REGEX.match(line)
206 if match is not None:
207 test = match.group(1)
217 match = DISABLED_BANNER_REGEX.match(lin
[all...]
H A Dgtest_xml_output_unittest.py274 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
276 re.match,
279 year=int(match.group(1)), month=int(match.group(2)),
280 day=int(match.group(3)), hour=int(match.group(4)),
281 minute=int(match.group(5)), second=int(match.group(6)))
335 "'%s' exited with code %s, which doesn't match "
[all...]
/third_party/node/deps/npm/node_modules/ignore-walk/lib/
H A Dindex.js126 // match in dir-mode as well, so that we'll pick up partials
238 // first, match against /foo/bar
240 // then, in the case of partials, match with a /
241 // then, if also the rule is relative, match against basename
242 const match = rule.match('/' + entry) ||
243 rule.match(entry) ||
245 rule.match('/' + entry + '/') ||
246 rule.match(entry + '/') ||
248 rule.match('/'
[all...]
/third_party/node/deps/npm/node_modules/ini/lib/
H A Dini.js117 if (!line || line.match(/^\s*[;#]/) || line.match(/^\s*$/)) {
120 const match = line.match(re)
121 if (!match) {
124 if (match[1] !== undefined) {
125 section = unsafe(match[1])
135 const keyRaw = unsafe(match[2])
147 const valueRaw = match[3] ? unsafe(match[
[all...]
/kernel/linux/linux-6.6/io_uring/
H A Dio-wq.c140 struct io_cb_cancel_data *match);
786 struct io_cb_cancel_data match = { in create_worker_cont() local
792 while (io_acct_cancel_pending_work(wq, acct, &match)) in create_worker_cont()
927 struct io_cb_cancel_data match; in io_wq_enqueue() local
966 match.fn = io_wq_work_match_item, in io_wq_enqueue()
967 match.data = work, in io_wq_enqueue()
968 match.cancel_all = false, in io_wq_enqueue()
970 io_acct_cancel_pending_work(wq, acct, &match); in io_wq_enqueue()
987 struct io_cb_cancel_data *match, in __io_wq_worker_cancel()
990 if (work && match in __io_wq_worker_cancel()
986 __io_wq_worker_cancel(struct io_worker *worker, struct io_cb_cancel_data *match, struct io_wq_work *work) __io_wq_worker_cancel() argument
1001 struct io_cb_cancel_data *match = data; io_wq_worker_cancel() local
1035 io_acct_cancel_pending_work(struct io_wq *wq, struct io_wq_acct *acct, struct io_cb_cancel_data *match) io_acct_cancel_pending_work() argument
1059 io_wq_cancel_pending_work(struct io_wq *wq, struct io_cb_cancel_data *match) io_wq_cancel_pending_work() argument
1075 io_wq_cancel_running_work(struct io_wq *wq, struct io_cb_cancel_data *match) io_wq_cancel_running_work() argument
1086 struct io_cb_cancel_data match = { io_wq_cancel_cb() local
1254 struct io_cb_cancel_data match = { io_wq_destroy() local
[all...]
/foundation/multimodalinput/input/service/libinput_adapter/src/
H A Dlibinput_adapter.cpp122 std::smatch match;
124 if (std::regex_search(str_path, match, re)) {
125 id = std::stoi(match[0]);
227 std::smatch match; in OnDeviceAdded() local
229 if (std::regex_search(str_path, match, re)) { in OnDeviceAdded()
230 id = std::stoi(match[0]); in OnDeviceAdded()
252 std::smatch match; in OnDeviceRemoved() local
254 if (std::regex_search(str_path, match, re)) { in OnDeviceRemoved()
255 id = std::stoi(match[0]); in OnDeviceRemoved()
/kernel/linux/linux-5.10/drivers/base/
H A Dsoc.c195 const struct soc_device_attribute *match) in soc_device_match_attr()
197 if (match->machine && in soc_device_match_attr()
198 (!attr->machine || !glob_match(match->machine, attr->machine))) in soc_device_match_attr()
201 if (match->family && in soc_device_match_attr()
202 (!attr->family || !glob_match(match->family, attr->family))) in soc_device_match_attr()
205 if (match->revision && in soc_device_match_attr()
206 (!attr->revision || !glob_match(match->revision, attr->revision))) in soc_device_match_attr()
209 if (match->soc_id && in soc_device_match_attr()
210 (!attr->soc_id || !glob_match(match->soc_id, attr->soc_id))) in soc_device_match_attr()
228 * if none of them match
194 soc_device_match_attr(const struct soc_device_attribute *attr, const struct soc_device_attribute *match) soc_device_match_attr() argument
[all...]
/kernel/linux/linux-6.6/drivers/base/
H A Dsoc.c212 const struct soc_device_attribute *match) in soc_device_match_attr()
214 if (match->machine && in soc_device_match_attr()
215 (!attr->machine || !glob_match(match->machine, attr->machine))) in soc_device_match_attr()
218 if (match->family && in soc_device_match_attr()
219 (!attr->family || !glob_match(match->family, attr->family))) in soc_device_match_attr()
222 if (match->revision && in soc_device_match_attr()
223 (!attr->revision || !glob_match(match->revision, attr->revision))) in soc_device_match_attr()
226 if (match->soc_id && in soc_device_match_attr()
227 (!attr->soc_id || !glob_match(match->soc_id, attr->soc_id))) in soc_device_match_attr()
245 * if none of them match
211 soc_device_match_attr(const struct soc_device_attribute *attr, const struct soc_device_attribute *match) soc_device_match_attr() argument
[all...]
/third_party/astc-encoder/Test/
H A Dastc_test_result_report.py74 match = filePat.match(name)
75 if match:
78 skip = [1 for filt in CONFIG_FILTER if filt.match(name)]
84 encoder = match.group(1)
85 quality = match.group(2)
89 skip = [1 for filt in TESTSET_FILTER if filt.match(imageSet)]
94 skip = [1 for filt in QUALITY_FILTER if filt.match(quality)]
104 skip = [1 for filt in BLOCKSIZE_FILTER if filt.match(result.blkSz)]
/third_party/icu/icu4c/source/i18n/
H A Dunesctrn.cpp182 // match one of the specs. Exit the outer loop if a in handleTransliterate()
183 // partial match is detected and isIncremental is true. in handleTransliterate()
196 UBool match = true; in handleTransliterate() local
202 // a partial match, so we return if in in handleTransliterate()
208 match = false; in handleTransliterate()
214 match = false; in handleTransliterate()
219 if (match) { in handleTransliterate()
224 // Check for partial match in incremental mode. in handleTransliterate()
242 match = (digitCount >= minDigits); in handleTransliterate()
244 if (match) { in handleTransliterate()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dunesctrn.cpp182 // match one of the specs. Exit the outer loop if a in handleTransliterate()
183 // partial match is detected and isIncremental is true. in handleTransliterate()
196 UBool match = true; in handleTransliterate() local
202 // a partial match, so we return if in in handleTransliterate()
208 match = false; in handleTransliterate()
214 match = false; in handleTransliterate()
219 if (match) { in handleTransliterate()
224 // Check for partial match in incremental mode. in handleTransliterate()
242 match = (digitCount >= minDigits); in handleTransliterate()
244 if (match) { in handleTransliterate()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dunesctrn.cpp182 // match one of the specs. Exit the outer loop if a in handleTransliterate()
183 // partial match is detected and isIncremental is true. in handleTransliterate()
196 UBool match = TRUE; in handleTransliterate() local
202 // a partial match, so we return if in in handleTransliterate()
208 match = FALSE; in handleTransliterate()
214 match = FALSE; in handleTransliterate()
219 if (match) { in handleTransliterate()
224 // Check for partial match in incremental mode. in handleTransliterate()
242 match = (digitCount >= minDigits); in handleTransliterate()
244 if (match) { in handleTransliterate()
[all...]
/third_party/python/Lib/
H A Dplatform.py300 m = _ver_output.match(info)
382 # valid if the versions match.
1036 match = _ironpython_sys_version_parser.match(sys_version)
1038 match = _ironpython26_sys_version_parser.match(sys_version)
1040 if match is None:
1045 version, alt_version, compiler = match.groups()
1052 match = _sys_version_parser.match(sys_versio
[all...]
/kernel/linux/linux-6.6/net/mptcp/
H A Dpm_userspace.c33 struct mptcp_pm_addr_entry *match = NULL; in mptcp_userspace_pm_append_new_local_addr() local
49 match = e; in mptcp_userspace_pm_append_new_local_addr()
57 if (!match && !addr_match && !id_match) { in mptcp_userspace_pm_append_new_local_addr()
75 } else if (match) { in mptcp_userspace_pm_append_new_local_addr()
113 struct mptcp_pm_addr_entry *entry, *match = NULL; in mptcp_userspace_pm_get_flags_and_ifindex_by_id() local
118 match = entry; in mptcp_userspace_pm_get_flags_and_ifindex_by_id()
123 if (match) { in mptcp_userspace_pm_get_flags_and_ifindex_by_id()
124 *flags = match->flags; in mptcp_userspace_pm_get_flags_and_ifindex_by_id()
125 *ifindex = match->ifindex; in mptcp_userspace_pm_get_flags_and_ifindex_by_id()
201 GENL_SET_ERR_MSG(info, "did not match addres in mptcp_nl_cmd_announce()
261 struct mptcp_pm_addr_entry *match = NULL; mptcp_nl_cmd_remove() local
[all...]
/third_party/icu/icu4c/source/python/icutools/databuilder/
H A Dfiltration.py50 assert self.match(file)
67 def match(self, file): member in Filter
72 def match(self, file): member in InclusionFilter
77 def match(self, file): member in ExclusionFilter
98 def match(self, file): member in IncludeExcludeFilter
139 if pattern.match(file_stem):
144 if pattern.match(file_stem):
156 def match(self, file): member in UnionFilter
157 """Match iff any of the sub-filters match."""
159 if filter.match(fil
184 def match(self, file): global() member in LocaleFilter
[all...]
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/
H A Dfiltration.py50 assert self.match(file)
67 def match(self, file): member in Filter
72 def match(self, file): member in InclusionFilter
77 def match(self, file): member in ExclusionFilter
98 def match(self, file): member in IncludeExcludeFilter
139 if pattern.match(file_stem):
144 if pattern.match(file_stem):
156 def match(self, file): member in UnionFilter
157 """Match iff any of the sub-filters match."""
159 if filter.match(fil
184 def match(self, file): global() member in LocaleFilter
[all...]
/third_party/node/deps/npm/lib/utils/
H A Dreplace-info.js9 let match = null
12 while (match = splitChars.exec(str)) {
13 result += cleanUrl(str.slice(index, match.index)) + match[0]
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/flower/
H A Dconntrack.c59 struct flow_dissector *dissector = rule->match.dissector; in is_pre_ct_flow()
91 struct flow_dissector *dissector = rule->match.dissector; in is_post_ct_flow()
115 * will match the nat field(sip/dip) instead. In this situation, in is_post_ct_flow()
175 struct flow_match_ip match; in get_mangled_tos_ttl() local
180 flow_rule_match_ip(rule, &match); in get_mangled_tos_ttl()
183 tmp = FIELD_PREP(NFP_IPV6_TCLASS_MASK, match.key->tos); in get_mangled_tos_ttl()
185 tmp = FIELD_PREP(NFP_IPV6_HLIMIT_MASK, match.key->ttl); in get_mangled_tos_ttl()
189 tmp = FIELD_PREP(NFP_IPV4_TOS_MASK, match.key->tos); in get_mangled_tos_ttl()
191 tmp = FIELD_PREP(NFP_IPV4_TTL_MASK, match.key->ttl); in get_mangled_tos_ttl()
200 match in get_mangled_tos_ttl()
486 struct flow_match_vlan match; nfp_ct_check_vlan_merge() local
744 struct flow_match_basic match; nfp_fl_merge_actions_offload() local
1404 struct flow_match_meta match; get_netdev_from_rule() local
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_format.c184 boolean match = TRUE; in test_format_float() local
192 match = FALSE; in test_format_float()
196 match = FALSE; in test_format_float()
201 match = FALSE; in test_format_float()
207 match = TRUE; in test_format_float()
210 if (!match) { in test_format_float()
288 boolean match; in test_format_unorm8() local
294 match = TRUE; in test_format_unorm8()
305 match = FALSE; in test_format_unorm8()
310 match in test_format_unorm8()
[all...]
/third_party/libevdev/tools/
H A Dtouchpad-edge-detector.c134 pid_vid_matchstr(struct libevdev *dev, char *match, size_t sz) in pid_vid_matchstr() argument
136 snprintf(match, sz, "input:b%04Xv%04Xp%04X", in pid_vid_matchstr()
143 dmi_matchstr(struct libevdev *dev, char *match, size_t sz) in dmi_matchstr() argument
150 sprintf(match, "ERROR READING DMI MODALIAS"); in dmi_matchstr()
159 snprintf(match, sz, "name:%s:%s", libevdev_get_name(dev), modalias); in dmi_matchstr()
167 char match[PATH_MAX]; in print_udev_override_rule() local
195 pid_vid_matchstr(dev, match, sizeof(match)); in print_udev_override_rule()
198 dmi_matchstr(dev, match, sizeof(match)); in print_udev_override_rule()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DAssumptionCache.cpp70 if (match(I, m_BitCast(m_Value(Op))) || in findAffectedValues()
71 match(I, m_PtrToInt(m_Value(Op))) || in findAffectedValues()
72 match(I, m_Not(m_Value(Op)))) { in findAffectedValues()
83 if (match(Cond, m_ICmp(Pred, m_Value(A), m_Value(B)))) { in findAffectedValues()
91 if (match(V, m_Not(m_Value(A)))) { in findAffectedValues()
99 if (match(V, m_BitwiseLogic(m_Value(A), m_Value(B)))) { in findAffectedValues()
103 } else if (match(V, m_Shift(m_Value(A), m_ConstantInt(C)))) { in findAffectedValues()
179 if (match(&II, m_Intrinsic<Intrinsic::assume>())) in scanFunction()
191 assert(match(CI, m_Intrinsic<Intrinsic::assume>()) && in registerAssumption()
217 assert(match(cas in registerAssumption()
[all...]
/third_party/mesa3d/src/compiler/isaspec/
H A Disa.py33 the match/dontcare/mask bitmasks. The following
36 (match ^ dontcare) == 0
37 (match || dontcare) == mask
43 self.match = bitset.match
50 p.match = p.match | self.match
57 return self.match | self.dontcare | self.mask | self.field_mask
81 match
[all...]

Completed in 15 milliseconds

1...<<11121314151617181920>>...259