Home
last modified time | relevance | path

Searched refs:with_pattern (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/test/vts/tests/kernel_proc_file_api_test/proc_tests/
H A DProcMapsTest.py17 from parse import with_pattern
21 @with_pattern(r'[0-9a-f]{8,}')
25 @with_pattern(r'[0-9a-f]{2,5}')
29 @with_pattern(r'[0-9]+')
33 @with_pattern(r'[^\n^\0]*')
37 @with_pattern(r'[r-]')
41 @with_pattern(r'[w-]')
45 @with_pattern(r'[x-]')
49 @with_pattern(r'[sp]')
H A DProcMemInfoTest.py19 from parse import with_pattern
23 @with_pattern(r'[^ ^\t^\n^:^\0]+')
27 @with_pattern(r'[ ]*[0-9]+')
31 @with_pattern(r'[ ]*(kB)?')
H A DProcSimpleFileTests.py21 from parse import with_pattern
216 @with_pattern(
/aosp_15_r20/external/python/parse_type/tests/
Dtest_parse_decorator.py48 @parse.with_pattern(r"\d+")
59 @parse.with_pattern(choice_pattern)
70 @parse.with_pattern(choice_pattern)
79 @parse.with_pattern(r"\d+")
103 @parse.with_pattern(r"Alice|Bob|Charly")
Dtest_parse.py775 @parse.with_pattern(r'((\w+))', regex_group_count=2)
779 @parse.with_pattern(r'\d+')
864 @parse.with_pattern(r'[ab]')
877 @parse.with_pattern(r'(meter|kilometer)', regex_group_count=1)
881 @parse.with_pattern(r'\d+')
904 @parse.with_pattern(r'(meter|kilometer)', regex_group_count=1)
908 @parse.with_pattern(r'\d+')
928 @parse.with_pattern(r'[ab]')
/aosp_15_r20/external/libxml2/
H A Dconfigure.ac164 if test "$with_pattern" = "no"; then
167 with_pattern=yes
174 if test "$with_pattern" = "no"; then
177 with_pattern=yes
236 test "$with_pattern" = "" && with_pattern=no
262 if test "$with_pattern" = "no"; then
473 if test "$with_pattern" = "no" ; then
/aosp_15_r20/external/cronet/third_party/libxml/src/
H A Dconfigure.ac159 if test "$with_pattern" = "no"; then
162 with_pattern=yes
169 if test "$with_pattern" = "no"; then
172 with_pattern=yes
238 test "$with_pattern" = "" && with_pattern=no
265 if test "$with_pattern" = "no"; then
573 if test "$with_pattern" = "no" ; then
/aosp_15_r20/external/python/parse_type/
DREADME.rst79 @parse.with_pattern(r"\d+")
221 from parse import Parser, with_pattern
230 @with_pattern(r"\d+")
/aosp_15_r20/external/python/parse_type/parse_type/
Dparse.py448 def with_pattern(pattern, regex_group_count=None): function