HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 226 - 250 of 736) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/netfilter/
x_tables.h 22 struct xt_match *match; member in struct:xt_entry_match::__anon3042::__anon3044
162 int (*match)(const struct sk_buff *skb, member in struct:xt_match
165 const struct xt_match *match,
175 const struct xt_match *match,
181 void (*destroy)(const struct xt_match *match, void *matchinfo,
185 int (*compat)(void *match, void **dstptr, int *size, int convert);
296 extern int xt_check_match(const struct xt_match *match, unsigned short family,
342 compat_uptr_t match; member in struct:compat_xt_entry_match::__anon3048::__anon3050
391 extern int xt_compat_match(void *match, void **dstptr, int *size, int convert);
  /external/v8/test/mjsunit/
string-match.js 29 * @fileoverview Test String.prototype.match
34 var matchResult = input.match(regexp);
35 assertEquals(result, matchResult, name + "-match");
37 var match = input.substring(from, to);
45 assertEquals(match, lastMatch, name + "-match-string_g");
47 // Returns array of match and captures.
48 assertEquals(match, matchResult[0], name + "-match-string");
55 assertEquals(match, RegExp["$&"], name + "-$&")
    [all...]
function-caller.js 28 function f(match) {
29 g(match);
32 function g(match) {
34 assertEquals(match, f.caller);
  /external/proguard/src/proguard/retrace/
ReTrace.java 214 String match = matcher.group(expressionTypeIndex + 1); local
220 className = originalClassName(match);
224 className = originalClassName(ClassUtil.externalClassName(match));
228 lineNumber = Integer.parseInt(match);
232 type = originalType(match);
236 arguments = originalArguments(match);
254 String match = matcher.group(expressionTypeIndex + 1); local
263 className = originalClassName(match);
268 className = originalClassName(ClassUtil.externalClassName(match));
273 lineNumber = Integer.parseInt(match);
    [all...]
  /external/icu4c/test/intltest/
csdetest.cpp 280 const UCharsetMatch *match; local
284 match = ucsdet_detect(csd, &status);
286 if (match == NULL) {
291 ucsdet_getUChars(match, detected, sLength, &status);
320 const UCharsetMatch *match; local
325 match = ucsdet_detect(csd, &status);
327 if (match == NULL) {
332 name = ucsdet_getName(match, &status);
333 conf = ucsdet_getConfidence(match, &status);
346 match = ucsdet_detect(csd, &status)
380 const UCharsetMatch *match; local
448 const UCharsetMatch *match; local
592 const UCharsetMatch *match; local
676 const UCharsetMatch *match; local
    [all...]
  /external/bluetooth/glib/tests/
patterntest.c 149 gboolean match)
153 if (g_pattern_match_simple (pattern, string) != match)
155 g_print ("failed \t(unexpected %s)\n", (match ? "mismatch" : "match"));
159 verbose ("passed (%s)\n", match ? "match" : "nomatch");
199 #define TEST_MATCH(pattern, string, match) { \
201 if (test_match (pattern, string, match)) \
207 #define TEST_EQUAL(pattern1, pattern2, match) { \
209 if (test_equal (pattern1, pattern2, match)) \
    [all...]
  /external/iptables/extensions/
libipt_recent.c 46 "[!] --rcheck Match if source address in list.\n"
47 "[!] --update Match if source address in list, also update last-seen time.\n"
48 "[!] --remove Match if source address in list, also removes that address from list.\n"
50 " Specifies that the match will only occur if source address last seen within\n"
53 " Specifies that the match will only occur if source address seen hits times.\n"
56 " Specifies that the match will only occur if the source address and the TTL\n"
57 " match between this packet and the one which was set.\n"
61 " --rsource Match/Save the source address of each packet in the recent list table (default).\n"
62 " --rdest Match/Save the destination address of each packet in the recent list table.\n"
69 /* Initialize the match. *
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
binding-001.js 65 var match = e.toString().search(/ReferenceError/);
66 actual = (match > -1);
regress-95101.js 56 var match = e.toString().search(/ReferenceError/);
57 actual = (match > -1);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.6.2-1.js 29 * Performs a regular expression match of string against the regular
31 * the match, or null if the string did not match.
42 * 7. Call [[Match]], giving it the arguments S and i.
43 * If [[Match]] returned failure, go to step 8;
54 * there is a match; not from i to i+1, but from i to "endIndex" e:
59 * first match 'a b'. The next match will begin AFTER this, and so
81 actualmatch = string.match(pattern);
89 actualmatch = string.match(pattern)
    [all...]
regress-216591.js 62 actualmatch = string.match(pattern);
81 actualmatch = string.match(pattern);
regress-220367-001.js 62 actualmatch = string.match(pattern);
69 actualmatch = string.match(pattern);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
compile.js 47 String(["456X7890"]), String('234X456X7890'.match(regularExpression)));
65 String(["234X456"]), String('234X456X7890'.match(regularExpression)));
  /ndk/build/awk/
extract-debuggable.awk 119 if (!match( $0, "^" sec_begin )) return 0;
120 while (!match($0, sec_end "$")) {
extract-package-name.awk 120 if (!match( $0, "^" sec_begin )) return 0;
121 while (!match($0, sec_end "$")) {
xml.awk 104 if (!match( $0, "^" sec_begin )) return 0;
105 while (!match($0, sec_end "$")) {
  /packages/apps/Browser/src/com/android/browser/
BrowserProvider.java 83 // shared suggestion array index, make sure to match COLUMNS
112 // make sure that these match the index of TABLE_NAMES
115 // (id % 10) should match the table name index
448 * 2. If bookmark/history entries has a match, "Search the web" shows up at
921 int match = URI_MATCHER.match(url); local
948 int match = URI_MATCHER.match(url); local
998 int match = URI_MATCHER.match(url); local
1046 int match = URI_MATCHER.match(url); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 98 int match = sURIMatcher.match(uri); local
99 switch (match) {
138 int match = sURIMatcher.match(uri); local
139 switch (match) {
165 final int matchedUriId = sURIMatcher.match(url);
191 final int matchedUriId = sURIMatcher.match(uri);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
FolderWrapper.java 78 * @param file the file to match
102 String[] match = list(new FilenameFilter() { local
108 return match.length > 0;
  /build/tools/
adbs 23 # match "#00 pc 0003f52e /system/lib/libdvm.so" for example
101 components = func_regexp.match(func_name)
213 match = trace_line.match(line) variable
214 if (match):
215 groups = match.groups()
  /external/iptables/include/
iptables.h 37 struct iptables_match *match; member in struct:iptables_rule_match
51 /* Revision of match (0 by default). */
56 /* Size of match data. */
59 /* Size of match data relevent for userspace comparison purposes */
65 /* Initialize the match. */
73 struct ipt_entry_match **match);
78 /* Prints out the match iff non-NULL: put space at end */
80 const struct ipt_entry_match *match, int numeric);
82 /* Saves the match info in parsable form to stdout. */
84 const struct ipt_entry_match *match);
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv6/
ip6_tables.h 50 /* TOS to match iff flags & IP6T_F_TOS */
68 #define IP6T_F_TOS 0x02 /* Match the TOS. */
83 parts which are 1) general IP header stuff 2) match specific
150 u_int8_t type; /* type to match */
291 #define ip6t_register_match(match) \
292 ({ (match)->family = AF_INET6; \
293 xt_register_match(match); })
294 #define ip6t_unregister_match(match) xt_unregister_match(match)
  /external/qemu/
gen-charmap.py 70 m = re_char.match(line)
72 m = re_hex.match(line)
83 m = re_start.match(line)
165 m = re_mapname.match(filepath)
174 m = re_mapname.match(filepath)
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 71 int match = sURLMatcher.match(uri); local
73 Log.v(TAG, "Query uri=" + uri + ", match=" + match);
76 switch (match) {
103 + getMessageBoxByMatch(match));
219 int match = sURLMatcher.match(uri); local
220 switch (match) {
266 int match = sURLMatcher.match(uri) local
489 int match = sURLMatcher.match(uri); local
642 int match = sURLMatcher.match(uri); local
743 int match = sURLMatcher.match(uri); local
    [all...]
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
DefaultHostnameVerifier.java 52 * The hostname must match either the first CN, or any of the subject-alts.
187 boolean match = false;
209 match = hostName.endsWith(cn.substring(1));
210 if(match && strictWithSubDomains) {
212 // allowed to match [a.b.foo.com]
213 match = countDots(hostName) == countDots(cn);
216 match = hostName.equals(cn);
218 if(match) {
222 if(!match) {
223 throw new SSLException("hostname in certificate didn't match: <" +
    [all...]

Completed in 1532 milliseconds

1 2 3 4 5 6 7 8 91011>>