Home
last modified time | relevance | path

Searched refs:match (Results 1 - 25 of 2711) sorted by relevance

12345678910>>...109

/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
H A Dc_parser_lite.py79 return re.match(r"[\s\S]*(Tests)[\s\S]*(Failures)[\s\S]*(Ignored)[\s\S]*", line)
82 return re.match("{}{}".format(self.pattern, _CTEST_SUITE_TEST_RUN_TAG),
86 return re.match("{}{}".format(self.pattern, _CTEST_SUITE_TIME_RUN_TAG),
90 _, message_index = re.match(
97 return re.match(
112 test_matcher = re.match(r".*(\d+ Tests).+", line)
114 re.match(r".*(Failures).*", line)
116 re.match(r".*(Ignored).*", line)
152 end_time = re.match(self.pattern, message).group().strip()
153 start_time = re.match(sel
[all...]
H A Dcpp_parser.py85 if re.match(pattern, line.strip()):
87 elif re.match(r'(\d+) test[s]? from (.*)', message):
171 matcher = re.match(r'(.*) \((\d+) ms\)', message)
225 matcher = re.match(r'Running (\d+) test[s]? from .*', message)
238 matcher = re.match(r'(\d+) test[s]? from (.*)', message)
253 matcher = re.match(r'.*\((\d+) ms total\)', message)
263 matcher = re.match(r'.*\((\d+) ms total\)', message)
344 class_matcher = re.match('^([a-zA-Z]+.*)\\.$', line)
345 method_matcher = re.match('\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$',
H A Djsunit_parser.py85 (year, re.match(self.pattern, message).group().strip())
87 (year, re.match(self.pattern,
96 match = re.match(pattern, filter_message)
97 _, status_end_index = match.span()
106 status = status_dict.get(match.group(1))
178 m_result = re.match(r".*\[suite start](.+), total cases: (\d+)",
187 if re.match(r".*\[suite start].*", message):
188 _, index = re.match(r".*\[suite start]", message).span()
H A Doh_rust_parser.py53 matcher = re.match(self.running_pattern, line)
58 matcher = re.match(self.test_result_pattern, line)
64 matcher = re.match(self.test_pattern, line)
69 matcher = re.match(self.stout_pattern, line)
H A Dcpp_parser_lite.py98 if re.match(pattern, line.strip()):
100 elif re.match(r'(\d+) test[s]? from (.*)', message):
178 matcher = re.match(r'(.*) \((\d+) ms\)(.*)', message)
226 matcher = re.match(r'.* Running (\d+) test[s]? from .*', message)
238 matcher = re.match(r'(\d+) test[s]? from (.*)', message)
250 matcher = re.match(r'.*\((\d+) ms total\)', message)
261 matcher = re.match(r'.*\((\d+) ms total\)', message)
357 self.class_result = re.compile('^([a-zA-Z]+.*)\\.$').match(line)
362 '\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$').match(line)
H A Doh_kernel_parser.py95 matcher = re.match(pattern, line)
107 matcher = re.match(pattern, line)
122 matcher = re.match(pattern, line)
153 matcher = re.match(pattern, line)
H A Djsunit_parser_lite.py78 (year, re.match(self.pattern, message).group().strip())
80 (year, re.match(self.pattern,
89 _, status_end_index = re.match(pattern, filter_message).span()
156 if re.match(r".*\[suite start\].*", message):
157 _, index = re.match(r".*\[suite start\]", message).span()
/test/testfwk/xdevice/plugins/devicetest/utils/
H A Dutil.py182 if re.match(rex, version):
197 match = re.search(r'(\d+\.\d+\.\d+\.\d+)', version_str)
198 if match:
199 return match.group(1)
349 match = re.search(r'File "(.*?)", line \d+, in (.+)', stack_line)
350 if match:
351 file_name = match.group(1).split(os.sep)[-1]
352 method_name = match.group(2).strip()
/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...]
/drivers/hdf_core/framework/tools/idl-gen/
H A D_header_parser.py71 tt = re.match(r".*enum *((\w+) *\*) *\w* *;", line)
76 tt = re.match(r".*(\[\w* *\(.*\) *]) *", line)
100 tt = re.match(r"(typedef )* *\w+ \( \* \) \(( .* )\)", params)
108 tt = re.match(" *(const )*(struct |enum |union )* *", params)
115 tt = re.match(r"((unsigned )*[a-zA-Z0-9_:]+( *\** *\**)) *", params)
122 tt = re.match("([a-zA-Z0-9_]+) *(,)", params)
159 tt = re.match(r"0x|0X|\(|-", v_value)
/drivers/hdf_core/framework/support/platform/src/can/
H A Dcan_mail.c128 bool match = true; in CanRxBoxMsgMatch() local
139 match = true; in CanRxBoxMsgMatch()
142 match = false; in CanRxBoxMsgMatch()
145 return match; in CanRxBoxMsgMatch()
/test/xts/acts/pcs/pcs_py/
H A DtestRealRandomGenerate.py43 if not re.match(pattern, randomNumber):
45 assert re.match(pattern, randomNumber)
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A Dre.js37 function match(ss, data) { function
63 match,
/drivers/peripheral/audio/test/sample/tools/get_mem_excel/
H A Dget_mem_excel.py143 for match in matchs:
144 if re.findall(match, mem_name):
145 mem_name = match
/applications/standard/app_samples/code/BasicFeature/Ads/OAIDSample/
H A Dhvigorw.bat35 echo Please set the NODE_HOME variable in your environment to match the
48 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/DeviceManagement/Sensor/Capi/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/Extension/Contexttest/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/Graphics/DisplaySoloist/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/Graphics/DisplaySync/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/Graphics/Graphics2d/PaintVerbatim/
H A Dhvigorw.bat36 echo Please set the NODE_HOME variable in your environment to match the
49 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/Ability/AbilityFeature/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/ApplicationModels/BundleManager/BundleManagement/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/ApplicationModels/DynamicRouter/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/DataManagement/UDMF/UniformTypeDescriptor/UTDType/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the
/applications/standard/app_samples/code/BasicFeature/Graphics/Graphics3d/
H A Dhvigorw.bat34 echo Please set the NODE_HOME variable in your environment to match the
47 echo Please set the NODE_HOME variable in your environment to match the

Completed in 10 milliseconds

12345678910>>...109