HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 151 - 175 of 2257) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_injected_script_externs.py 165 match = re.search(method_regex, line)
166 if match:
167 return_type = Type(match.group(1), match.group(2) is not None, match.group(3) is not None)
168 name = match.group(4)
169 methods.append(Method(return_type, name, parse_args(match.group(5))))
171 match = re.search(attribute_regex, line)
172 if match:
173 type = Type(match.group(1), match.group(2) is not None, match.group(3) is not None
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkExtras.h 28 virtual SkDisplayTypes getType(const char match[], size_t len ) = 0;
  /external/chromium_org/third_party/smhasher/src/
Types.cpp 110 uint8_t match[256]; local
112 memset(match,0,256);
118 if(match[c]) { b = 0; matchfail++; break; }
120 match[c] = 1;
  /external/chromium_org/tools/gn/
last_commit_position.py 68 match = regex.match(line)
69 if match:
70 return match.group(1)
  /external/chromium_org/tools/grit/grit/gather/
regexp.py 60 for match in regexp.finditer(text_to_parse):
61 groups = match.groupdict()
70 text_to_parse[chunk_start : match.start(group)])
71 chunk_start = match.end(group) # Next chunk will start after the match
78 # more than one description per regular expression match.
  /external/chromium_org/tools/gyp/test/mac/
gyptest-ldflags-passed-to-libtool.py 17 match = lambda a, b: True) variable
gyptest-objc-arc.py 16 # set |match| to ignore build stderr output.
18 match = lambda a, b: True) variable
  /external/chromium_org/tools/gyp/test/msvs/multiple_actions_error_handling/
gyptest.py 24 match=TestCmd.match_re_dotall) variable
  /external/chromium_org/tools/gyp/test/variables/commands/
gyptest-commands-repeated.py 33 if not test.match(contents, expect):
gyptest-commands.py 34 if not test.match(contents, expect):
  /external/chromium_org/tools/gyp/test/variables/filelist/
gyptest-filelist.py 24 if not test.match(contents, expect):
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-base-address.py 31 exe_match = image_base_reg_ex.match(exe_headers)
39 dll_match = image_base_reg_ex.match(dll_headers)
47 default_exe_match = image_base_reg_ex.match(default_exe_headers)
55 default_dll_match = image_base_reg_ex.match(default_dll_headers)
  /external/chromium_org/tools/security/
check_message_owners.py 35 match = regexp.match(line)
36 if match:
37 result.add(match.group(1).strip())
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
v8_profiler.py 34 match = re.match(self._V8_ARG % '(\S+)', i)
35 if match:
36 output_file = match.groups(0)[0]
  /external/iproute2/tc/
emp_ematch.y 31 %type <e> match expr
48 match
50 | match relation expr
58 match: label
  /external/iptables/extensions/
libxt_cpu.c 12 "cpu match options:\n"
13 "[!] --cpu number Match CPU number\n");
33 cpu_print(const void *ip, const struct xt_entry_match *match, int numeric)
35 const struct xt_cpu_info *info = (void *)match->data;
40 static void cpu_save(const void *ip, const struct xt_entry_match *match)
42 const struct xt_cpu_info *info = (void *)match->data;
libxt_helper.c 12 "helper match options:\n"
13 "[!] --helper string Match helper identified by string\n");
33 helper_print(const void *ip, const struct xt_entry_match *match, int numeric)
35 const struct xt_helper_info *info = (const void *)match->data;
37 printf(" helper match %s\"%s\"", info->invert ? "! " : "", info->name);
40 static void helper_save(const void *ip, const struct xt_entry_match *match)
42 const struct xt_helper_info *info = (const void *)match->data;
libxt_length.c 12 "length match options:\n"
13 "[!] --length length[:length] Match packet length against value or range\n"
37 length_print(const void *ip, const struct xt_entry_match *match, int numeric)
39 const struct xt_length_info *info = (void *)match->data;
48 static void length_save(const void *ip, const struct xt_entry_match *match)
50 const struct xt_length_info *info = (void *)match->data;
libxt_mac.c 17 "mac match options:\n"
19 " Match source MAC address\n");
50 mac_print(const void *ip, const struct xt_entry_match *match, int numeric)
52 const struct xt_mac_info *info = (void *)match->data;
61 static void mac_save(const void *ip, const struct xt_entry_match *match)
63 const struct xt_mac_info *info = (void *)match->data;
libxt_nfacct.c 33 printf("nfacct match options:\n"
56 static void nfacct_print(const void *ip, const struct xt_entry_match *match,
60 (struct xt_nfacct_match_info *)match->data;
65 static void nfacct_save(const void *ip, const struct xt_entry_match *match)
68 (struct xt_nfacct_match_info *)match->data;
libxt_quota.c 23 printf("quota match options:\n"
28 quota_print(const void *ip, const struct xt_entry_match *match, int numeric)
30 const struct xt_quota_info *q = (const void *)match->data;
35 quota_save(const void *ip, const struct xt_entry_match *match)
37 const struct xt_quota_info *q = (const void *)match->data;
libxt_socket.c 22 "socket match options:\n"
39 socket_mt_save(const void *ip, const struct xt_entry_match *match)
41 const struct xt_socket_mtinfo1 *info = (const void *)match->data;
48 socket_mt_print(const void *ip, const struct xt_entry_match *match,
52 socket_mt_save(ip, match);
libxt_tcpmss.c 12 "tcpmss match options:\n"
13 "[!] --mss value[:value] Match TCP MSS range.\n"
37 tcpmss_print(const void *ip, const struct xt_entry_match *match, int numeric)
39 const struct xt_tcpmss_match_info *info = (void *)match->data;
41 printf(" tcpmss match %s", info->invert ? "!" : "");
48 static void tcpmss_save(const void *ip, const struct xt_entry_match *match)
50 const struct xt_tcpmss_match_info *info = (void *)match->data;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AllowEventsParser.java 78 this.lexer.match(TokenTypes.ID);
85 this.lexer.match(',');
89 this.lexer.match(TokenTypes.ID);
97 this.lexer.match('\n');
AllowParser.java 77 this.lexer.match(TokenTypes.ID);
84 this.lexer.match(',');
88 this.lexer.match(TokenTypes.ID);
96 this.lexer.match('\n');

Completed in 1467 milliseconds

1 2 3 4 5 67 8 91011>>