HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 1 - 25 of 3118) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libunwind/tests/
check-namespace.sh.in 46 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 _UL${plat}_init_loca
    [all...]
  /packages/apps/Messaging/build/
process_style_output.py 29 match = PATTERN.match(line) variable
30 if match:
31 filename = match.group("file");
34 message = match.group("message")
37 print " " + filename + ':' + match.group("line") + (match.group("column") if match.group("column") else "")
  /external/nist-sip/java/gov/nist/core/
Match.java 28 /** Match template for pattern matching.
38 public interface Match {
39 /** 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/skia/tools/
misc_utils.py 20 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 else defaul
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
AuthMatch.java 4 * Match score for EAP credentials:
7 * Indeterminate means that there is no ANQP information to match against.
20 public static String toString(int match) {
21 if (match < 0) {
24 else if (match == 0) {
29 if ((match & Realm) != 0) {
32 if ((match & Method) != 0) {
35 if ((match & Param) != 0) {
  /external/chromium-trace/trace-viewer/third_party/webapp2/tests/
extras_routes_test.py 31 route_match, args, kwargs = router.match(webapp2.Request.blank('/foo'))
111 match = ((), {})
112 self.assertEqual(router.match(webapp2.Request.blank(path))[1:], match)
113 self.assertEqual(router.build(webapp2.Request.blank('/'), 'name-a', match[0], match[1]), path)
116 match = ((), {})
117 self.assertEqual(router.match(webapp2.Request.blank(path))[1:], match)
118 self.assertEqual(router.build(webapp2.Request.blank('/'), 'name-a/b', match[0], match[1]), path
    [all...]
  /external/v8/test/webkit/
regexp-zero-length-alternatives.js 25 'Test regular expression processing with alternatives that match consuming no characters'
39 shouldBe('emptyStr.match(re1)', '[""]');
40 shouldBe('s1.match(re1)', '[""]');
41 shouldBe('s2.match(re1)', '["aaaa"]');
42 shouldBe('s3.match(re1)', '["aa"]');
46 shouldBe('emptyStr.match(re2)', '[""]');
47 shouldBe('s1.match(re2)', '[""]');
48 shouldBe('s2.match(re2)', '["aaaa"]');
49 shouldBe('s3.match(re2)', '["aa"]');
53 shouldBe('emptyStr.match(re3)', '[""]')
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
uptime.py 34 duration, users, av1, av5, av15 = p.match.groups()
44 p.match = re.search('([0-9]+)\s+day',duration)
45 days = str(int(p.match.group(1)))
47 p.match = re.search('([0-9]+):([0-9]+)',duration)
48 hours = str(int(p.match.group(1)))
49 mins = str(int(p.match.group(2)))
51 p.match = re.search('([0-9]+)\s+min',duration)
52 mins = str(int(p.match.group(1)))
  /libcore/luni/src/main/java/java/security/cert/
CRLSelector.java 40 * Checks whether the defined criteria of this instance match the specified
48 public boolean match(CRL crl); method in interface:CRLSelector
CertSelector.java 40 * Checks whether the defined criteria of this instance match the specified
48 public boolean match(Certificate cert); method in interface:CertSelector
  /external/elfutils/src/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/strace/tests/
unix-yy-accept.awk 13 if (match($0, r_bind, a)) {
22 NR == 3 {if (r_listen != "" && match($0, r_listen)) next}
24 NR == 4 {if (r_getsockname != "" && match($0, r_getsockname)) next}
27 if (r_accept != "" && match($0, r_accept, a)) {
36 NR == 6 {if (r_close_listen != "" && match($0, r_close_listen)) next}
37 NR == 7 {if (r_close_accepted != "" && match($0, r_close_accepted)) next}
42 print "Line " NR " does not match: " $0
net-yy-accept.awk 15 if (match($0, r_bind, a)) {
22 NR == 3 {if (r_listen != "" && match($0, r_listen)) next}
25 if (match($0, r_getsockname, a) && a[1] == a[2]) {
34 if (r_accept != "" && match($0, r_accept, a) && a[1] == a[2]) {
43 NR == 6 {if (r_close0 != "" && match($0, r_close0)) next}
45 NR == 7 {if (r_recv != "" && (match($0, r_recv) || match($0, r_recvfrom))) next}
47 NR == 8 {if (r_close1 != "" && match($0, r_close1)) next}
52 print "Line " NR " does not match: " $0
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Selector.java 6 boolean match(T obj); method in interface:Selector
  /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

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>