HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 26 - 50 of 4980) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/autotest/tko/
query_lib.py 29 #match = re.match(r'^[(](.+)[)]$', condition)
30 #if match:
33 # for c in match.group(1):
39 # dprint("Match...stripping ()'s")
40 # return me(match.group(1), valid_field_dict)
43 match = re.match(r'^(.+)[|](.+)$', condition)
44 if match:
46 (a_sql, a_values) = me(match.group(1), valid_field_dict
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
binutils.exp 64 if { [string match "*not supported*" $link_output]
65 || [string match "*unrecognized option*" $link_output]
66 || [string match "*-z relro ignored*" $link_output] } {
76 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
82 if [string match "*-z relro*" $ld_options] {
85 if { ![string match "*GNU_RELRO*" $got] } then {
87 if { [string match "*.data.rel.ro*" $got]
88 || [string match "*.dynamic*" $got]
89 || [string match "*.got*" $got]
90 || [string match "*.eh_frame*" $got
    [all...]
  /external/elfutils/libdw/
dwarf_getsrc_file.c 54 Dwarf_Line **match = *nsrcs == 0 ? NULL : *srcsp; local
82 no match is performed. */
98 /* Match the name with the name the user provided. */
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 != linen
    [all...]
  /external/autotest/client/site_tests/kernel_HdParm/
kernel_HdParm.py 24 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/
Selector.java 12 * Match the passed in object, returning true if it would be selected by this selector, false otherwise.
15 * @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/
CharsetRecognizer.java 20 * state pertaining to a specific match or detect operation.
41 * Test the match of this charset with the input text data
46 * @return A CharsetMatch object containing details of match
47 * with this charset, or null if there was no match.
49 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecognizer
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecognizer.java 19 * state pertaining to a specific match or detect operation.
40 * Test the match of this charset with the input text data
45 * @return A CharsetMatch object containing details of match
46 * with this charset, or null if there was no match.
48 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecognizer
  /external/valgrind/none/tests/s390x/
stfle.c 9 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;
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertSelectorTest.java 35 byte[] match = { 127, 0, 0, 1 };
36 assertTrue(certSelector.match(newCertWithSubjectAltNameIpAddress(match)));
39 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch)));
46 byte[] match = { 127, 0, 0, 1 };
47 assertTrue(certSelector.match(newCertWithSubjectAltNameIpAddress(match)));
50 assertFalse(certSelector.match(newCertWithSubjectAltNameIpAddress(noMatch)));
58 byte[] match = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 };
59 assertTrue(certSelector.match(newCertWithSubjectAltNameIpAddress(match)))
    [all...]
  /ndk/build/awk/
extract-platform.awk 33 if (match($0,android_regex)) {
36 else if (match($0,vendor_regex)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/
fix_explicit.py 6 def match(self): return False member in class:FixExplicit
fix_first.py 6 def match(self, node): return False member in class:FixFirst
fix_last.py 7 def match(self, node): return False member in class:FixLast
fix_preorder.py 6 def match(self, node): return False member in class:FixPreorder
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/
fix_explicit.py 6 def match(self): return False member in class:FixExplicit
fix_first.py 6 def match(self, node): return False member in class:FixFirst
fix_last.py 7 def match(self, node): return False member in class:FixLast
fix_preorder.py 6 def match(self, node): return False member in class:FixPreorder
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
dateinterval.py 81 for match in allMatches(s, _timeRE):
82 char = match.group(0)[-1].lower()
86 time += int(match.group(0)[:-1]) * timeValues[char]
96 match = regex.search(source, pos)
97 while match:
98 rv.append(match)
99 match = regex.search(source, match.end() )
  /external/clang/unittests/AST/
ASTContextParentMapTest.cpp 31 Verifier.match("class C { void f(); };",
37 EXPECT_TRUE(Verifier.match("class C { void f() { if (true) {} } };",
44 Verifier.match("namespace a { class b {}; } void f(a::b) {}",
50 EXPECT_TRUE(Verifier.match("namespace a { class b {}; } void f(a::b) {}",
56 EXPECT_TRUE(DeclVerifier.match(
61 EXPECT_TRUE(DeclVerifier.match(
66 EXPECT_FALSE(DeclVerifier.match(
77 EXPECT_TRUE(TemplateVerifier.match(
SourceLocationTest.cpp 34 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("void f() { new int[10]; }", cxxNewExpr()))
    [all...]
  /external/strace/tests/
unix-yy-connect.awk 40 if (match($0, r_socket, a)) {
47 NR == 2 {if (match($0, r_close_listen)) next}
50 if (r_connect != "" && match($0, r_connect)) {
59 if (inode != "" && r_close_connected != "" && match($0, r_close_connected, a) && a[1] == inode) {
67 print "Line " NR " does not match: " $0
  /frameworks/base/tools/aapt2/filter/
ConfigFilter.h 37 virtual bool match(const ConfigDescription& config) const = 0;
43 * the configuration to match, they must be compatible. Otherwise the configuration to match is
52 bool match(const ConfigDescription& config) const override;
  /frameworks/support/design/base/android/support/design/widget/
StateListAnimator.java 44 * @param specs The drawable state specs to match against
45 * @param animator The animator to run when the specs match
57 Tuple match = null; local
62 match = tuple;
66 if (match == mLastMatch) {
73 mLastMatch = match;
75 if (match != null) {
76 start(match);
80 private void start(Tuple match) {
81 mRunningAnimator = match.mAnimator
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
UriMatcherTest.java 58 assertEquals(sCode1, mUriMatcher.match(uri1));
59 assertEquals(sCode2, mUriMatcher.match(uri2));
60 assertEquals(sCode3, mUriMatcher.match(uri3));
61 assertEquals(sCode4, mUriMatcher.match(uri4));
65 assertEquals(-1, mUriMatcher.match(unknown));
70 mUriMatcher.match(null);
78 assertEquals(-1, mUriMatcher.match(uri1));
79 assertEquals(-1, mUriMatcher.match(uri2));
80 assertEquals(-1, mUriMatcher.match(uri3));
81 assertEquals(-1, mUriMatcher.match(uri4))
    [all...]

Completed in 2514 milliseconds

12 3 4 5 6 7 8 91011>>