/external/iproute2/include/ |
ip6tables.h | 11 struct ip6tables_match *match; member in struct:ip6tables_rule_match 23 /* Size of match data. */ 26 /* Size of match data relevent for userspace comparison purposes */ 32 /* Initialize the match. */ 40 struct ip6t_entry_match **match); 45 /* Prints out the match iff non-NULL: put space at end */ 47 const struct ip6t_entry_match *match, int numeric); 51 const struct ip6t_entry_match *match); 134 extern struct ip6tables_match *find_match(const char *name, enum ip6t_tryload, struct ip6tables_rule_match **match);
|
/external/iptables/extensions/ |
libxt_dscp.c | 33 "dscp match options\n" 34 "[!] --dscp value Match DSCP codepoint with numerical value\n" 37 "[!] --dscp-class name Match the DiffServ class. This value may\n" 74 "DSCP match: Parameter --dscp is required"); 78 dscp_print(const void *ip, const struct xt_entry_match *match, int numeric) 81 (const struct xt_dscp_info *)match->data; 82 printf(" DSCP match %s0x%02x", dinfo->invert ? "!" : "", dinfo->dscp); 85 static void dscp_save(const void *ip, const struct xt_entry_match *match) 88 (const struct xt_dscp_info *)match->data;
|
libip6t_icmp6.c | 81 "icmpv6 match options:\n" 82 "[!] --icmpv6-type typename match icmpv6 type\n" 97 unsigned int match = limit; local 103 if (match != limit) 108 icmpv6_codes[match].name, 110 match = i; 114 if (match != limit) { 115 *type = icmpv6_codes[match].type; 116 code[0] = icmpv6_codes[match].code_min; 117 code[1] = icmpv6_codes[match].code_max [all...] |
libipt_ah.c | 12 "ah match options:\n" 14 " match spi (range)\n"); 55 static void ah_print(const void *ip, const struct xt_entry_match *match, 58 const struct ipt_ah *ah = (struct ipt_ah *)match->data; 68 static void ah_save(const void *ip, const struct xt_entry_match *match) 70 const struct ipt_ah *ahinfo = (struct ipt_ah *)match->data;
|
libxt_esp.c | 12 "esp match options:\n" 14 " match spi (range)\n"); 50 esp_print(const void *ip, const struct xt_entry_match *match, int numeric) 52 const struct xt_esp *esp = (struct xt_esp *)match->data; 62 static void esp_save(const void *ip, const struct xt_entry_match *match) 64 const struct xt_esp *espinfo = (struct xt_esp *)match->data;
|
libxt_quota2.man | 2 on a per-match basis. Available modes are packet counting or byte counting. 4 this match a minimalist accounting tool. 7 the match will return false, just like the original "quota" match. In growing 26 it is not reset. An "!" may be used to invert the result of the match. The 30 Count packets instead of bytes that passed the quota2 match.
|
libxt_recent.c | 52 "recent match options:\n" 54 "[!] --rcheck Match if source address in list.\n" 55 "[!] --update Match if source address in list, also update last-seen time.\n" 56 "[!] --remove Match if source address in list, also removes that address from list.\n" 58 " Specifies that the match will only occur if source address last seen within\n" 61 " Specifies that the match will only occur if source address seen hits times.\n" 64 " Specifies that the match will only occur if the source address and the TTL\n" 65 " match between this packet and the one which was set.\n" 69 " --rsource Match/Save the source address of each packet in the recent list table (default).\n" 70 " --rdest Match/Save the destination address of each packet in the recent list table.\n [all...] |
/external/valgrind/main/none/tests/s390x/ |
tcxb.c | 7 int match; local 12 : "=d" (match) 15 return match; 20 int match; local 25 : "=d" (match) 28 return match; 33 int match; local 38 : "=d" (match) 41 return match;
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LocalProvider.java | 89 int match = sURLMatcher.match(url); local 90 switch (match) { 118 int match = sURLMatcher.match(url); local 119 switch (match) { 133 int match = sURLMatcher.match(url); local 135 switch (match) {
|
/external/chromium/chrome/browser/autocomplete/ |
extension_app_provider.cc | 63 // We have a match, might be a partial match. 66 AutocompleteMatch match(this, 0, false, 68 match.fill_into_edit = UTF8ToUTF16(url); 69 match.destination_url = GURL(url); 70 match.inline_autocomplete_offset = string16::npos; 71 match.contents = UTF8ToUTF16(name); 72 HighlightMatch(input, &match.contents_class, name_iter, name); 73 match.description = UTF8ToUTF16(url); 74 HighlightMatch(input, &match.description_class, url_iter, url) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-105972.js | 23 * "/^.*?$/ will not match anything" 45 * The bug: this match was coming up null in Rhino and SpiderMonkey. 46 * It should match the whole string. The reason: 49 * at the simplest match it can find. But the pattern here asks us 50 * to match till the end of the string. So the simplest match must 56 actualmatch = string.match(pattern); 63 * Unlike the above pattern, we don't have to match till the end of 69 actualmatch = string.match(pattern); 79 * the match will stop because the operator *? is non-greedy [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
vcdiffengine.cc | 64 // This helper function tries to find an appropriate match within 66 // If target_hash is not NULL, this function will also look for a match 69 // If a match is found, this function will generate an ADD instruction 70 // for all unencoded data that precedes the match, 71 // and a COPY instruction for the match itself; then it returns 74 // If no appropriate match is found, the function returns 0. 87 // When FindBestMatch() comes up with a match for a candidate block, 89 // and target offset of the match. 90 BlockHash::Match best_match; 92 // First look for a match in the dictionary [all...] |
/external/clang/test/SemaObjC/ |
warn-superclass-method-mismatch.m | 24 -(void) method: (struct A*) a; // expected-warning {{method parameter type 'struct A *' does not match super class method parameter type 'int *'}} 25 -(void) method1: (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'Base *'}} 27 + method3: (int)x1 : (Sub *)x2 : (float)x3; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'Base *'}} 29 -(void) method_r: (char)ch : (float*)f1 : (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class method parameter type 'int *'}} 30 - method5: (int) x : (float) d; // expected-warning {{method parameter type 'float' does not match super class method parameter type 'double'}} 31 - method6: (int) x : (double) d; // expected-warning {{method parameter type 'double' does not match super class method parameter type 'float'}}
|
/external/openssh/regress/ |
addrmatch.sh | 4 tid="address match" 24 Match Address 192.168.0.0/16,!192.168.30.0/24,10.0.0.0/8,host.example.com 26 Match Address 1.1.1.1,::1,!::3,2000::/16 31 run_trial user 192.168.30.1 somehost no "deny, negative match" 32 run_trial user 19.0.0.1 somehost no "deny, no match" 40 run_trial user ::4 somehost no "deny, IP6 no match"
|
/external/oprofile/libutil++/ |
generic_spec.h | 3 * Container holding an item or a special "match all" item 31 * build a default spec which match anything 52 /// return true if rhs match this spec. Sub part of PP:3.24 53 bool match(T const & rhs) const { function in class:generic_spec 57 /// return true if rhs match this spec. Sub part of PP:3.24 58 bool match(generic_spec<T> const & rhs) const { function in class:generic_spec
|
/external/webkit/Source/WebCore/inspector/front-end/ |
InspectorFrontendHostStub.js | 43 var match = navigator.userAgent.match(/Windows NT/); 44 if (match) 46 match = navigator.userAgent.match(/Mac OS X/); 47 if (match)
|
/frameworks/base/core/tests/coretests/src/android/app/ |
SuggestionProvider.java | 65 int match = sURLMatcher.match(url); local 66 switch (match) { 87 int match = sURLMatcher.match(url); local 88 switch (match) {
|
/frameworks/base/tools/aapt/ |
ResourceFilter.cpp | 51 // if it's a locale with a region, also match an unmodified locale of the 73 ResourceFilter::match(int axis, uint32_t value) const function in class:ResourceFilter 89 ResourceFilter::match(int axis, const ResTable_config& config) const function in class:ResourceFilter 91 return match(axis, AaptGroupEntry::getConfigValueForAxis(config, axis)); 95 ResourceFilter::match(const ResTable_config& config) const function in class:ResourceFilter 98 if (!match(i, AaptGroupEntry::getConfigValueForAxis(config, i))) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
LocaleUtils.java | 42 // Locale match level constants. 43 // A higher level of match is guaranteed to have a higher numerical value. 44 // Some room is left within constants to add match cases that may arise necessary 54 // The languages and country match, but the variants are different. Or, the reference locale 63 // The language and the country match, and the tested locale specifies a variant but the 66 // The compared locales are fully identical. This is the best match level. 69 // The level at which a match is "normally" considered a locale match with standard algorithms. 73 // Make this match the maximum match level. If this evolves to have more than 2 digit [all...] |
/sdk/sdk_common/src/com/android/ide/common/resources/configuration/ |
UiModeQualifier.java | 77 // only normal is a match for all UI mode, because it's not an actual mode. 82 // others must be an exact match 96 // what we have is already the best possible match (exact match) 102 // else "normal" can be a match in case there's no exact match
|
/external/icu4c/i18n/unicode/ |
search.h | 45 * of each match. 71 * printf("Found match at %d pos, length is %d\n", pos, 148 * Returns the index to the match in the text string that was searched. 171 * @return The length of the match in the target text, or 0 if there 172 * is no match currently. 184 * If the iterator is not pointing at a valid match (e.g. just after 187 * @param result stores the matched string or an empty string if a match 202 * points at which matches are detected. If a match is 203 * found, but the match's start or end index is not a 205 * the match will be rejected and another will be searched [all...] |
/frameworks/base/core/java/android/util/ |
StateSet.java | 69 // We've reached the end of the cases to match against. 76 // We use negative values to indicate must-NOT-match states. 84 // We've reached the end of states to match. 86 // We didn't find this must-match state. 89 // Continue checking other must-not-match states. 96 // Continue checking other other must-match states. 99 // Any match of a must-not-match state returns false. 105 // We've reached the end of states to match and we didn't 106 // find a must-match state [all...] |
/external/icu4c/i18n/ |
regeximp.h | 60 URX_BACKTRACK = 1, // Force a backtrack, as if a match test had failed. 62 URX_ONECHAR = 3, // Value field is the 21 bit unicode char to match 74 URX_FAIL = 14, // Stop match operation, No match. 80 // Used in (x)+, breaks loop on zero length match. 132 URX_ONECHAR_I = 39, // Test for case-insensitive match of a literal character. 147 // Param 1: The minimum length of the look-behind match 148 // Param 2: The max length of the look-behind match 151 // Check that match ended at the right spot, 155 // Param 1: The minimum length of the look-behind match [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldScannerTest.java | 42 MatchResult mresult = s.match(); 53 mresult = s.match(); 61 mresult = s.match(); 72 s.match(); 86 mresult = s.match(); 92 mresult = s.match(); 97 mresult = s.match(); 131 mresult = s.match(); 139 mresult = s.match(); 148 MatchResult matchResult = s.match(); [all...] |
/device/asus/tilapia/recovery/ |
Android.mk | 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk 40 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk
|