Searched refs:match (Results 151 - 175 of 2417) sorted by relevance

1234567891011>>

/external/iptables/extensions/
H A Dlibxt_recent.c85 "recent match options:\n"
91 " Specifies that the match will only occur if source address last seen within\n"
96 " Specifies that the match will only occur if source address seen hits times.\n"
99 " Specifies that the match will only occur if the source address and the TTL\n"
100 " match between this packet and the one which was set.\n"
115 static void recent_init(struct xt_entry_match *match, unsigned int rev) argument
117 struct xt_recent_mtinfo *info = (struct xt_recent_mtinfo *)match->data;
119 (struct xt_recent_mtinfo_v1 *)match->data;
179 static void recent_print(const void *ip, const struct xt_entry_match *match, argument
182 const struct xt_recent_mtinfo_v1 *info = (const void *)match
220 recent_save(const void *ip, const struct xt_entry_match *match, unsigned int family) argument
261 recent_init_v0(struct xt_entry_match *match) argument
266 recent_init_v1(struct xt_entry_match *match) argument
271 recent_save_v0(const void *ip, const struct xt_entry_match *match) argument
276 recent_save_v4(const void *ip, const struct xt_entry_match *match) argument
281 recent_save_v6(const void *ip, const struct xt_entry_match *match) argument
286 recent_print_v0(const void *ip, const struct xt_entry_match *match, int numeric) argument
292 recent_print_v4(const void *ip, const struct xt_entry_match *match, int numeric) argument
298 recent_print_v6(const void *ip, const struct xt_entry_match *match, int numeric) argument
[all...]
H A Dlibxt_nfacct.c33 printf("nfacct match options:\n"
56 static void nfacct_print(const void *ip, const struct xt_entry_match *match, argument
60 (struct xt_nfacct_match_info *)match->data;
65 static void nfacct_save(const void *ip, const struct xt_entry_match *match) argument
68 (struct xt_nfacct_match_info *)match->data;
H A Dlibxt_tcpmss.c12 "tcpmss match options:\n"
37 tcpmss_print(const void *ip, const struct xt_entry_match *match, int numeric) argument
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) argument
50 const struct xt_tcpmss_match_info *info = (void *)match->data;
/external/tcpdump/missing/
H A Dgetopt_long.c186 * Returns -1 if short_too is set and the option does not match long_options.
197 int i, match, exact_match, second_partial_match; local
216 match = -1;
236 /* exact match */
237 match = i;
243 * a partial match of a single character.
248 if (match == -1) /* first partial match */
249 match = i;
252 long_options[match]
[all...]
/external/llvm/utils/vim/syntax/
H A Dllvm.vim12 syn case match
20 syn match llvmType /\<i\d\+\>/
160 syn match llvmNoName /[%@!]\d\+\>/
161 syn match llvmNumber /-\?\<\d\+\>/
162 syn match llvmFloat /-\?\<\d\+\.\d*\(e[+-]\d\+\)\?\>/
163 syn match llvmFloat /\<0x\x\+\>/
166 syn match llvmComment /;.*$/
168 syn match llvmLabel /[-a-zA-Z$._][-a-zA-Z$._0-9]*:/
169 syn match llvmIdentifier /[%@][-a-zA-Z$._][-a-zA-Z$._0-9]*/
172 syn match llvmIdentifie
[all...]
/external/ltp/pan/cgi/
H A Dreconsile.cgi17 # Give a warning if the suites do not match
22 print "Warning: Suites do not match!\n";
178 # if everyone does match (status included) shift them
194 # walk through the lists again outputting as we match
205 $match = shift(@$rtcs);
206 $match->{TCID} = '*' if ($match->{TCID} eq '{');
207 $match->{TCID} = '-' if ($match->{TCID} eq '}');
208 $match
[all...]
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliTreeWalker.java425 match(input,I_CLASS_DEF,FOLLOW_I_CLASS_DEF_in_smali_file52);
426 match(input, Token.DOWN, null);
443 match(input, Token.UP, null);
566 CLASS_DESCRIPTOR9=(CommonTree)match(input,CLASS_DESCRIPTOR,FOLLOW_CLASS_DESCRIPTOR_in_class_spec110);
603 match(input,I_SUPER,FOLLOW_I_SUPER_in_super_spec130);
604 match(input, Token.DOWN, null);
605 CLASS_DESCRIPTOR11=(CommonTree)match(input,CLASS_DESCRIPTOR,FOLLOW_CLASS_DESCRIPTOR_in_super_spec132);
606 match(input, Token.UP, null);
639 match(input,I_IMPLEMENTS,FOLLOW_I_IMPLEMENTS_in_implements_spec152);
640 match(inpu
[all...]
/external/autotest/client/cros/
H A Dec.py110 @raises error.TestError if regexp fails to match.
115 match = re.search(self.GET_FANSPEED_RE, response)
116 if not match:
119 rpm = int(match.group(1))
144 match = re.search(self.TEMP_SENSOR_RE, response)
145 if not match:
148 return int(match.group(1))
264 match = re.search(PORT_INFO_RE,
266 if not match or int(match
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DCookieAttributeHandler.java77 * @param cookie {@link org.apache.http.cookie.Cookie} to match
78 * @param origin the cookie source to match against
79 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise
81 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler
/external/autotest/client/common_lib/
H A Dcheck_version.py36 match = re.search(r'/python(\d+)\.(\d+)$', path)
37 if match:
38 return (int(match.group(1)), int(match.group(2)))
/external/autotest/client/site_tests/network_WiFiCaps/
H A Dnetwork_WiFiCaps.py28 match = parse_re.search(line)
29 if match:
30 results[match.group(1)] = match.group(2)
/external/autotest/client/tools/
H A Davgtime24 user = float(re.match(r'([\d\.]+)', user).group(0))
25 system = float(re.match(r'([\d\.]+)', system).group(0))
26 m = re.match(r'(\d+):([\d\.]+)', elapsed)
28 cpu = int(re.match(r'(\d+)', cpu).group(0))
/external/autotest/tko/
H A Dutils.py76 to be considered as a match.
83 match = re.search('^([0-9]+)-.+/(.+)$', tag)
84 return (match.group(1), match.group(2)) if match else ('', '')
/external/clang/tools/scan-build-py/libscanbuild/
H A Dcompilation.py89 elif re.match(r'^-(l|L|Wl,).+', arg):
95 elif re.match(r'^[^-].+', arg) and classify_source(arg):
133 Returns 'c' or 'c++' when it match. None otherwise. """
139 if any(pattern.match(executable) for pattern in COMPILER_PATTERNS):
140 return 'c++' if cplusplus.match(executable) else 'c'
/external/icu/icu4c/source/i18n/
H A Dcsrecog.h44 * with the quality of the match plus other information related to the match.
46 * Return TRUE if the the input bytes are a potential match, and
49 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
H A Dcsrsbcs.h78 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
87 virtual UBool match(InputText *det, CharsetMatch *results) const;
95 virtual UBool match(InputText *det, CharsetMatch *results) const;
146 virtual UBool match(InputText *det, CharsetMatch *results) const;
156 virtual UBool match(InputText *det, CharsetMatch *results) const;
166 virtual UBool match(InputText *det, CharsetMatch *results) const;
178 virtual UBool match(InputText *det, CharsetMatch *results) const;
188 virtual UBool match(InputText *det, CharsetMatch *results) const;
198 virtual UBool match(InputText *det, CharsetMatch *results) const;
210 virtual UBool match(InputTex
[all...]
H A Dcsrucode.h39 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
41 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
53 UBool match(InputText* textIn, CharsetMatch *results) const;
64 UBool match(InputText* textIn, CharsetMatch *results) const;
77 UBool match(InputText* textIn, CharsetMatch *results) const;
/external/iproute2/tc/
H A Demp_ematch.y31 %type <e> match expr
48 match
50 | match relation expr
58 match: label
/external/llvm/test/MC/Hexagon/
H A Dpcrel.s4 # make sure the fixups emitted match what is
/external/mesa3d/src/glx/
H A Dglxglvnd.c29 const char **match; local
31 match = bsearch(name, __glXDispatchTableStrings, DI_FUNCTION_COUNT,
34 if (match == NULL)
37 return match - __glXDispatchTableStrings;
/external/mockito/src/main/java/org/mockito/internal/util/
H A DStringUtil.java78 Matcher match = CAPS.matcher(className);
80 while (match.find()) {
82 deCameled.append(match.group());
85 deCameled.append(match.group().toLowerCase());
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAllowEventsParser.java78 this.lexer.match(TokenTypes.ID);
85 this.lexer.match(',');
89 this.lexer.match(TokenTypes.ID);
97 this.lexer.match('\n');
H A DAllowParser.java77 this.lexer.match(TokenTypes.ID);
84 this.lexer.match(',');
88 this.lexer.match(TokenTypes.ID);
96 this.lexer.match('\n');
/external/pdfium/fxjs/xfa/
H A Dcjx_bind.h20 JS_PROP(match);
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_ne.py17 def match(self, node): member in class:FixNe

Completed in 714 milliseconds

1234567891011>>