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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
section-match.exp 22 run_dump_test section-match-
  /toolchain/binutils/binutils-2.25/gold/testsuite/
split_i386.sh 25 match() function
41 match 'cmp.*+%gs:[^,]*,%esp' split_i386_1.stdout
42 match 'call.*__morestack>?$' split_i386_1.stdout
43 match 'lea.*-0x200\(%esp\),' split_i386_1.stdout
45 match 'stc' split_i386_2.stdout
46 match 'call.*__morestack_non_split>?$' split_i386_2.stdout
48 match 'lea.*-0x4200\(%esp\),' split_i386_2.stdout
50 match 'failed to match' split_i386_3.stdout
52 match 'call.*__morestack>?$' split_i386_4.stdou
    [all...]
split_x32.sh 26 match() function
42 match 'cmp.*+%fs:[^,]*,%esp' split_x32_1.stdout
43 match 'callq.*__morestack>?$' split_x32_1.stdout
44 match 'lea.*-0x200\(%rsp\),' split_x32_1.stdout
46 match 'stc' split_x32_2.stdout
47 match 'callq.*__morestack_non_split>?$' split_x32_2.stdout
49 match 'lea.*-0x4200\(%rsp\),' split_x32_2.stdout
51 match 'failed to match' split_x32_3.stdout
53 match 'callq.*__morestack>?$' split_x32_4.stdou
    [all...]
split_x86_64.sh 25 match() function
41 match 'cmp.*+%fs:[^,]*,%rsp' split_x86_64_1.stdout
42 match 'callq.*__morestack>?$' split_x86_64_1.stdout
43 match 'lea.*-0x200\(%rsp\),' split_x86_64_1.stdout
45 match 'stc' split_x86_64_2.stdout
46 match 'callq.*__morestack_non_split>?$' split_x86_64_2.stdout
48 match 'lea.*-0x4200\(%rsp\),' split_x86_64_2.stdout
50 match 'failed to match' split_x86_64_3.stdout
52 match 'callq.*__morestack>?$' split_x86_64_4.stdou
    [all...]
  /external/curl/packages/NetWare/
get_ver.awk 29 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/c-ares/
get_ver.awk 10 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/
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...]
  /frameworks/base/packages/Osu/src/com/android/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) {
23 } else if (match == 0) {
28 if ((match & Realm) != 0) {
31 if ((match & Method) != 0) {
34 if ((match & Param) != 0) {
  /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/
nanobench_flags.py 69 match = []
72 match.append('~blurroundrect')
73 match.append('~patch_grid') # skia:2847
74 match.append('~desk_carsvg')
76 match.extend(['~gradient', '~etc1bitmap']) # skia:2895
78 match.append('~desk_unicodetable')
80 match.append('~GLInstancedArraysBench') # skia:4371
83 match.append('~blurroundrect')
84 match.append('~patch_grid') # skia:2847
85 match.append('~desk_carsvg'
    [all...]
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...]
  /external/autotest/client/site_tests/hardware_GobiGPS/
hardware_GobiGPS.py 57 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.group(7)
    [all...]
  /external/v8/test/mjsunit/harmony/
regexp-lookbehind.js 8 assertEquals(["a"], "a".match(/^.(?<=a)/));
9 assertNull("b".match(/^.(?<=a)/));
10 assertEquals(["foo"], "foo1".match(/^f..(?<=.oo)/));
11 assertEquals(["foo"], "foo2".match(/^f\w\w(?<=\woo)/));
12 assertNull("boo".match(/^f\w\w(?<=\woo)/));
13 assertNull("fao".match(/^f\w\w(?<=\woo)/));
14 assertNull("foa".match(/^f\w\w(?<=\woo)/));
15 assertEquals(["def"], "abcdef".match(/(?<=abc)\w\w\w/));
16 assertEquals(["def"], "abcdef".match(/(?<=a.c)\w\w\w/));
17 assertEquals(["def"], "abcdef".match(/(?<=a\wc)\w\w\w/))
    [all...]
string-match.js 8 pattern[Symbol.match] = function(string) {
12 assertThrows(() => String.prototype.match.call(null, pattern),
15 assertEquals(5, "abcde".match(pattern));
17 pattern[Symbol.match] = "dumdidum";
18 assertThrows(() => "abcde".match(pattern), TypeError);
20 assertEquals("[Symbol.match]", RegExp.prototype[Symbol.match].name);
  /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/catapult/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...]
  /libcore/ojluni/src/main/java/java/security/cert/
CRLSelector.java 57 boolean match(CRL crl); method in interface:CRLSelector
CertSelector.java 58 boolean match(Certificate cert); method in interface:CertSelector
  /prebuilts/go/darwin-x86/src/regexp/syntax/
prog_test.go 15 2 match
20 3 match
24 2 match
29 3 match
34 3 match
39 3 match
44 3 match
49 3 match
54 3 match
61 5 match
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
prog_test.go 15 2 match
20 3 match
24 2 match
29 3 match
34 3 match
39 3 match
44 3 match
49 3 match
54 3 match
61 5 match
    [all...]
  /external/strace/tests/
unix-yy-accept.awk 39 if (match($0, r_socket, a)) {
49 NR == 2 {if (r_bind != "" && match($0, r_bind)) next}
51 NR == 3 {if (r_listen != "" && match($0, r_listen)) next}
53 NR == 4 {if (r_getsockname != "" && match($0, r_getsockname)) next}
56 if (r_accept != "" && match($0, r_accept, a)) {
65 NR == 6 {if (r_close_listen != "" && match($0, r_close_listen)) next}
66 NR == 7 {if (r_close_accepted != "" && match($0, r_close_accepted)) next}
71 print "Line " NR " does not match: " $0
net-yy-accept.awk 41 if (match($0, r_socket, a)) {
49 NR == 2 {if (r_bind != "" && match($0, r_bind)) next}
51 NR == 3 {if (r_listen != "" && match($0, r_listen)) next}
54 if (match($0, r_getsockname, a) && a[1] == a[2]) {
63 if (r_accept != "" && match($0, r_accept, a) && a[1] == a[2]) {
72 NR == 6 {if (r_close0 != "" && match($0, r_close0)) next}
74 NR == 7 {if (r_recv != "" && (match($0, r_recv) || match($0, r_recvfrom))) next}
76 NR == 8 {if (r_close1 != "" && match($0, r_close1)) next}
81 print "Line " NR " does not match: " $
    [all...]
  /external/llvm/utils/
schedcover.py 64 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 = re_sched_spec.match(line
    [all...]

Completed in 832 milliseconds

1 2 3 4 5 6 7 8 91011>>