/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_expectations_unittest.py | 229 def match(test, result, pixel_tests_enabled): function in function:.test_pixel_tests_flag 234 self.assertTrue(match('failures/expected/text.html', TEXT, True)) 235 self.assertTrue(match('failures/expected/text.html', TEXT, False)) 236 self.assertFalse(match('failures/expected/text.html', CRASH, True)) 237 self.assertFalse(match('failures/expected/text.html', CRASH, False)) 238 self.assertTrue(match('failures/expected/image_checksum.html', IMAGE, 240 self.assertTrue(match('failures/expected/image_checksum.html', PASS, 242 self.assertTrue(match('failures/expected/crash.html', SKIP, False)) 243 self.assertTrue(match('passes/text.html', PASS, False)) 404 def match(self, modifiers, expected_num_matches=-1, values=None, num_errors=0) member in class:ModifierTests [all...] |
/frameworks/base/core/java/android/os/ |
UEventObserver.java | 28 * startObserving() with a match string. The UEvent thread will then call your 29 * onUEvent() method when a UEvent occurs that contains your match string.<p> 49 private static native void nativeAddMatch(String match); 50 private static native void nativeRemoveMatch(String match); 90 * @param match A substring of the UEvent to match. Try to be as specific 96 public final void startObserving(String match) { 97 if (match == null || match.isEmpty()) { 98 throw new IllegalArgumentException("match substring must be non-empty") 230 final String match = (String)mKeysAndObservers.remove(i); local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
AlarmProvider.java | 58 int match = sURLMatcher.match(url); local 59 switch (match) { 87 int match = sURLMatcher.match(url); local 88 switch (match) { 102 int match = sURLMatcher.match(url); local 104 switch (match) { 123 if (sURLMatcher.match(url) != ALARMS) [all...] |
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pDevice.java | 60 // These definitions match the ones in wpa_supplicant 172 Matcher match; local 184 match = twoTokenPattern.matcher(string); 185 if (!match.find()) { 188 deviceAddress = match.group(2); 191 match = threeTokenPattern.matcher(string); 192 if (!match.find()) { 195 deviceAddress = match.group(1); 198 match = detailedDevicePattern.matcher(string); 199 if (!match.find()) [all...] |
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ipt_owner.h | 35 u_int8_t match, invert; member in struct:ipt_owner_info
|
/bionic/libc/kernel/common/linux/netfilter_ipv6/ |
ip6t_owner.h | 32 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
ipt_owner.h | 27 u_int8_t match, invert; member in struct:ipt_owner_info
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv6/ |
ip6t_owner.h | 25 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/development/tools/findunused/ |
findunusedtranslations | 55 for $match (@matches) { 56 print "Rewriting $match\n"; 61 open(IN, "<$match"); 97 open(OUT, ">$match");
|
/device/samsung/manta/recovery/ |
Android.mk | 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk 21 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk
|
/external/apache-http/src/org/apache/http/cookie/ |
CookieAttributeHandler.java | 72 * @param cookie {@link org.apache.http.cookie.Cookie} to match 73 * @param origin the cookie source to match against 74 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise 76 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_classifier.h | 30 // AutocompleteInput::allow_exact_keyword_match(). |match| should be a 31 // non-NULL outparam that will be set to the default match for this input, if 32 // any (for invalid input, there will be no default match, and |match| will be 40 AutocompleteMatch* match,
|
history_provider.h | 24 virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE; 37 // Fixes up user URL input to make it more possible to match against. Among
|
history_quick_provider.cc | 85 // TODO(mrossetti): Determine when a match should be deletable. 86 void HistoryQuickProvider::DeleteMatch(const AutocompleteMatch& match) {} 129 // Discount a very high score when a) a match doesn't start at the beginning 141 AutocompleteMatch match(this, score, !!info.visit_count(), 146 match.destination_url = info.url(); 147 DCHECK(match.destination_url.is_valid()); 152 match.fill_into_edit = 157 match.inline_autocomplete_offset = inline_autocomplete_offset; 158 DCHECK((match.inline_autocomplete_offset == string16::npos) || 159 (match.inline_autocomplete_offset <= match.fill_into_edit.length())) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/ |
contentscript.js | 7 matches = document.body.innerText.match(regex);
|
/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_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/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_owner.h | 4 /* match and invert flags */ 17 u_int8_t match, invert; /* flags */ member in struct:ipt_owner_info
|
/external/kernel-headers/original/linux/netfilter_ipv6/ |
ip6t_owner.h | 4 /* match and invert flags */ 15 u_int8_t match, invert; /* flags */ member in struct:ip6t_owner_info
|