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

1234567891011>>

/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/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/c-ares/
H A Dget_ver.awk10 if (match (ARGV[1], /ares_version.h/)) {
12 if (match ($0, /^#define ARES_COPYRIGHT "[^"]+"$/)) {
15 else if (match ($0, /^#define ARES_VERSION_STR "[^"]+"$/)) {
18 else if (match ($0, /^#define ARES_VERSION_MAJOR [0-9]+$/)) {
21 else if (match ($0, /^#define ARES_VERSION_MINOR [0-9]+$/)) {
24 else if (match ($0, /^#define ARES_VERSION_PATCH [0-9]+$/)) {
/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/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/skia/infra/bots/recipe_modules/perf/
H A Dapi.py91 match = []
94 match.append('~blurroundrect')
95 match.append('~patch_grid') # skia:2847
96 match.append('~desk_carsvg')
98 match.append('~desk_unicodetable')
100 match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178
102 match.append('~blurroundrect')
103 match.append('~patch_grid') # skia:2847
104 match.append('~desk_carsvg')
105 match
[all...]
/external/elfutils/libdw/
H A Ddwarf_getsrc_file.c54 Dwarf_Line **match = *nsrcs == 0 ? NULL : *srcsp; local
82 no match is performed. */
108 /* See whether line and possibly column match. */
112 /* Cannot match. */
115 /* Determine whether this is the best match so far. */
118 if (match[inner]->files == line->files
119 && match[inner]->file == line->file)
122 && (match[inner]->line != line->line
123 || match[inner]->line != lineno
125 && (match[inne
[all...]
/external/autotest/client/common_lib/brillo/
H A Dlogcat_utils.py21 @param process_id: optional integer process id to match on.
48 match = re.match(r'^.\( *(\d+)\) (.*) \(([^(]+)\)$', line)
49 if match:
50 return LogcatLine(pid=match.group(1),
51 message=match.group(2),
52 tag=match.group(3))
53 raise error.TestError('Failed to match logcat line "%s"' % line)
/external/autotest/client/site_tests/kernel_HdParm/
H A Dkernel_HdParm.py24 match = re.search('(\d+\.\d+) MB\/sec', result)
25 self.write_perf_keyval({'cache_throughput': match.groups()[0]})
27 match = re.search('(\d+\.\d+) MB\/sec', result)
28 self.write_perf_keyval({'disk_throughput': match.groups()[0]})
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java15 * @return true if the object is a match for this selector, false otherwise.
17 boolean match(T obj); method in interface:Selector
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetRecognizer.java22 * state pertaining to a specific match or detect operation.
43 * Test the match of this charset with the input text data
48 * @return A CharsetMatch object containing details of match
49 * with this charset, or null if there was no match.
51 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecognizer
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecognizer.java21 * state pertaining to a specific match or detect operation.
42 * Test the match of this charset with the input text data
47 * @return A CharsetMatch object containing details of match
48 * with this charset, or null if there was no match.
50 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecognizer
/external/valgrind/none/tests/s390x/
H A Dstfle.c9 unsigned long long hoststfle[S390_NUM_FACILITY_DW], match; local
20 match = (hoststfle[0] & (1ULL << (63 - bit_to_test)));
22 match = (hoststfle[1] & (1ULL << (63 - bit_to_test)));
26 return match;
/external/autotest/client/site_tests/hardware_SsdDetection/
H A Dhardware_SsdDetection.py60 match = re.search(r'Nominal Media Rotation Rate: (.+)$',
62 if match and match.group(1):
63 if match.group(1) != 'Solid State Device':
67 'Rotation Rate: %s' % match.group(1))
74 match = re.search("device size with M = 1000\*1000: (.+) MBytes",
76 if match and match.group(1):
77 size = int(match.group(1))
/external/clang/unittests/AST/
H A DSourceLocationTest.cpp34 EXPECT_FALSE(Verifier.match("int i", varDecl()));
40 EXPECT_FALSE(Verifier.match("int i;", recordDecl()));
46 EXPECT_FALSE(Verifier.match("int i;", varDecl()));
52 EXPECT_FALSE(Verifier.match("int i;", varDecl()));
58 EXPECT_FALSE(Verifier.match("int i;", varDecl()));
71 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
77 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
83 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C));
89 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C));
95 EXPECT_TRUE(Verifier.match("voi
[all...]
H A DASTContextParentMapTest.cpp27 Verifier.match("class C { void f(); };",
33 EXPECT_TRUE(Verifier.match("class C { void f() { if (true) {} } };",
40 Verifier.match("namespace a { class b {}; } void f(a::b) {}",
46 EXPECT_TRUE(Verifier.match("namespace a { class b {}; } void f(a::b) {}",
52 EXPECT_TRUE(DeclVerifier.match(
57 EXPECT_TRUE(DeclVerifier.match(
62 EXPECT_FALSE(DeclVerifier.match(
73 EXPECT_TRUE(TemplateVerifier.match(
/external/v8/src/inspector/
H A Dsearch-util.cc51 String16 match = multiline local
55 size_t newLine = match.find("\n");
56 if (newLine != String16::kNotFound) match = match.substring(0, newLine);
57 match = match.stripWhiteSpace();
59 for (size_t i = 0; i < match.length(); ++i) {
60 UChar c = match[i];
64 return match;
115 if (regex.match(lin
[all...]
/external/llvm/unittests/Support/
H A DRegexTest.cpp23 EXPECT_TRUE(r1.match("916"));
24 EXPECT_TRUE(r1.match("9"));
25 EXPECT_FALSE(r1.match("9a"));
29 EXPECT_TRUE(r2.match("aa216b", &Matches));
34 EXPECT_TRUE(r3.match("9a:513b", &Matches));
40 EXPECT_TRUE(r3.match("9:513b", &Matches));
49 EXPECT_FALSE(r4.match("abb"));
50 EXPECT_TRUE(r4.match(String, &Matches));
58 EXPECT_FALSE(r5.match(String));
59 EXPECT_FALSE(r5.match("X
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DDateParser.java62 lexer.match(',');
63 lexer.match(' ');
65 lexer.match(' ');
67 lexer.match(' ');
71 this.lexer.match('\n');

Completed in 685 milliseconds

1234567891011>>