Home
last modified time | relevance | path

Searched refs:unexpected_regex (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/unittest/
Dcase.py1351 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1353 if isinstance(unexpected_regex, (str, bytes)):
1354 unexpected_regex = re.compile(unexpected_regex)
1355 match = unexpected_regex.search(text)
1359 unexpected_regex.pattern,
/aosp_15_r20/external/python/cpython3/Lib/unittest/
Dcase.py1351 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1353 if isinstance(unexpected_regex, (str, bytes)):
1354 unexpected_regex = re.compile(unexpected_regex)
1355 match = unexpected_regex.search(text)
1359 unexpected_regex.pattern,
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/unittest/
H A Dcase.py1351 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1353 if isinstance(unexpected_regex, (str, bytes)):
1354 unexpected_regex = re.compile(unexpected_regex)
1355 match = unexpected_regex.search(text)
1359 unexpected_regex.pattern,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/unittest/
Dcase.py1351 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1353 if isinstance(unexpected_regex, (str, bytes)):
1354 unexpected_regex = re.compile(unexpected_regex)
1355 match = unexpected_regex.search(text)
1359 unexpected_regex.pattern,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/unittest/
Dcase.py1351 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1353 if isinstance(unexpected_regex, (str, bytes)):
1354 unexpected_regex = re.compile(unexpected_regex)
1355 match = unexpected_regex.search(text)
1359 unexpected_regex.pattern,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/unittest/
Dcase.py1351 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1353 if isinstance(unexpected_regex, (str, bytes)):
1354 unexpected_regex = re.compile(unexpected_regex)
1355 match = unexpected_regex.search(text)
1359 unexpected_regex.pattern,
/aosp_15_r20/external/python/mobly/mobly/
Dasserts.py252 def assert_not_regex(text, unexpected_regex, msg=None, extras=None): argument
257 unexpected_regex,