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

1234567891011>>

/external/v8/tools/unittests/testdata/
H A Dresults_processor.py17 match = re.match(r'^Richards\d: (.*)$', line) variable
18 if match:
19 richards += float(match.group(1))
20 match = re.match(r'^DeltaBlue\d: (.*)$', line) variable
21 if match:
22 deltablue += float(match.group(1))
/external/skia/infra/bots/recipe_modules/core/resources/
H A Dbinary_size_utils.py42 match = sym_re.match(line)
43 if match:
44 size, sym_type, sym = match.groups()[0:3]
48 path = match.group(4)
51 match = addr_re.match(line)
52 if match:
53 # sym_type, sym = match.groups()[0:2]
55 match
[all...]
/external/skqp/infra/bots/recipe_modules/core/resources/
H A Dbinary_size_utils.py42 match = sym_re.match(line)
43 if match:
44 size, sym_type, sym = match.groups()[0:3]
48 path = match.group(4)
51 match = addr_re.match(line)
52 if match:
53 # sym_type, sym = match.groups()[0:2]
55 match
[all...]
/external/curl/packages/NetWare/
H A Dget_ver.awk29 if (match ($0, /^#define LIBCURL_COPYRIGHT "([^"]+)"$/))
31 else if (match ($0, /^#define LIBCURL_VERSION "[^"]+"$/))
33 else if (match ($0, /^#define LIBCURL_VERSION_MAJOR [0-9]+$/))
35 else if (match ($0, /^#define LIBCURL_VERSION_MINOR [0-9]+$/))
37 else if (match ($0, /^#define LIBCURL_VERSION_PATCH [0-9]+$/))
/external/autotest/tko/
H A Dquery_lib.py24 match = re.match(r'^(.+)[|](.+)$', condition)
25 if match:
26 (a_sql, a_values) = me(match.group(1), valid_field_dict)
27 (b_sql, b_values) = me(match.group(2), valid_field_dict)
32 match = re.match(r'^(.+)[&](.+)$', condition)
33 if match:
34 (a_sql, a_values) = me(match.group(1), valid_field_dict)
35 (b_sql, b_values) = me(match
[all...]
/external/libunwind/tests/
H A Dcheck-namespace.sh.in46 match () {
91 match _UL${plat}_create_addr_space
92 match _UL${plat}_destroy_addr_space
93 match _UL${plat}_get_fpreg
94 match _UL${plat}_get_proc_info
95 match _UL${plat}_get_proc_info_by_ip
96 match _UL${plat}_get_proc_name
97 match _UL${plat}_get_reg
98 match _UL${plat}_get_save_loc
99 match _U
[all...]
/external/skia/tools/
H A Dmisc_utils.py20 Opens a file for reading and searches line by line for a match to
22 first match. Does not search across newlines.
33 default: what to return if no match
40 match = pattern_object.search(line)
41 if match:
42 return match.group('return')
52 default: what to return if no match
57 match = re.search(pattern, input_string)
58 return match.group('return') if match els
[all...]
/external/skqp/tools/
H A Dmisc_utils.py20 Opens a file for reading and searches line by line for a match to
22 first match. Does not search across newlines.
33 default: what to return if no match
40 match = pattern_object.search(line)
41 if match:
42 return match.group('return')
52 default: what to return if no match
57 match = re.search(pattern, input_string)
58 return match.group('return') if match els
[all...]
/external/nist-sip/java/gov/nist/core/
H A DMatch.java39 /** Return true if a match occurs for searchString.
40 * This is used for pattern matching in the find and replace and match
45 public boolean match(String searchString); method in interface:Match
/external/llvm/utils/
H A Dschedcover.py64 match = re_sched_default.match(line)
65 if match: add(match.group(1), None, match.group(2))
66 match = re_sched_no_default.match(line)
67 if match: add(match.group(1), None)
68 match
[all...]
H A Dextract_symbols.py39 match = re.match("^.+SECT.+External\s+\|\s+(\S+).*$", line)
40 if match:
41 yield match.group(1)
51 match = re.match("^\S+\s+[BDGRSTVW]\s+(\S+)$", line)
52 if match:
53 yield match.group(1)
66 match = re.search('Name: (\S+)', line)
67 if match
459 match = re.search("^\\?(\\??\\w+\\@\\?\\$\\w+)\\@", k) variable
465 match = re.match('_Z(T[VTIS])?(N.+)', k) variable
[all...]
/external/autotest/client/site_tests/hardware_GobiGPS/
H A Dhardware_GobiGPS.py57 match = re.search(
62 if match and match.group(2) == 'A' and not got_fix:
64 logging.debug('Time = %s', match.group(1))
65 logging.debug('Status = %s', match.group(2))
66 logging.debug('Latitude = %s %s', match.group(3),
67 match.group(4))
68 logging.debug('Longitude = %s %s', match.group(5),
69 match.group(6))
70 logging.debug('Speed = %s', match
[all...]
/external/skia/tools/skpbench/
H A D_benchresult.py38 def match(cls, text): member in class:BenchResult
39 match = cls.PATTERN.search(text)
40 return cls(match) if match else None
42 def __init__(self, match):
43 self.accum = float(match.group('accum'))
44 self.median = float(match.group('median'))
45 self.max = float(match.group('max'))
46 self.min = float(match.group('min'))
47 self.stddev = float(match
[all...]
/external/skqp/tools/skpbench/
H A D_benchresult.py38 def match(cls, text): member in class:BenchResult
39 match = cls.PATTERN.search(text)
40 return cls(match) if match else None
42 def __init__(self, match):
43 self.accum = float(match.group('accum'))
44 self.median = float(match.group('median'))
45 self.max = float(match.group('max'))
46 self.min = float(match.group('min'))
47 self.stddev = float(match
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
H A DTextElementMatcher.java26 boolean match(TextElement textElement); method in interface:TextElementMatcher
/external/python/cpython2/Demo/comparisons/
H A Dsortingtest.py32 match = prog.match(item)
33 if match:
34 var, num = match.groups()
/external/python/cpython2/Lib/lib2to3/tests/data/fixers/myfixes/
H A Dfix_explicit.py6 def match(self): return False member in class:FixExplicit
H A Dfix_first.py6 def match(self, node): return False member in class:FixFirst
H A Dfix_last.py7 def match(self, node): return False member in class:FixLast
H A Dfix_preorder.py6 def match(self, node): return False member in class:FixPreorder
/external/python/cpython3/Lib/lib2to3/tests/data/fixers/myfixes/
H A Dfix_explicit.py6 def match(self): return False member in class:FixExplicit
H A Dfix_first.py6 def match(self, node): return False member in class:FixFirst
H A Dfix_last.py7 def match(self, node): return False member in class:FixLast
H A Dfix_preorder.py6 def match(self, node): return False member in class:FixPreorder
/external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
H A Dptrace-tar.h36 int match = 1; local
39 match = 0;
42 match = 0;
45 match = 0;
47 if (!match)

Completed in 697 milliseconds

1234567891011>>