/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/netfilter_ipv6/ |
ip6t_owner.h | 25 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter_ipv4/ |
ipt_owner.h | 27 u_int8_t match, invert; member in struct:ipt_owner_info
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter_ipv6/ |
ip6t_owner.h | 25 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv4/ |
ipt_owner.h | 27 u_int8_t match, invert; member in struct:ipt_owner_info
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv6/ |
ip6t_owner.h | 25 u_int8_t match, invert; member in struct:ip6t_owner_info
|
/system/core/libcutils/ |
android_reboot.c | 40 int match; local 50 match = fscanf(f, "%255s %255s %255s %255s %d %d\n", 57 if ((match == 6) && !strncmp(mount_dev, "/dev/block", 10) && strstr(mount_opts, "rw")) { 61 } while (match != EOF);
|
/cts/tests/tests/content/src/android/content/cts/ |
IntentFilter_AuthorityEntryTest.java | 56 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri)); 58 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri)); 61 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri)); 64 assertEquals(IntentFilter.MATCH_CATEGORY_HOST, mAuthorityEntry.match(uri)); 68 assertEquals(IntentFilter.MATCH_CATEGORY_HOST, mAuthorityEntry.match(uri)); 72 assertEquals(IntentFilter.MATCH_CATEGORY_PORT, mAuthorityEntry.match(uri)); 76 assertEquals(IntentFilter.MATCH_CATEGORY_HOST, mAuthorityEntry.match(uri));
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
tokenized_string_match_unittest.cc | 15 // Returns a string of |text| marked the hits in |match| using block bracket. 18 const TokenizedStringMatch& match) { 21 const TokenizedStringMatch::Hits& hits = match.hits(); 45 TokenizedStringMatch match; local 48 EXPECT_FALSE(match.Calculate(UTF8ToUTF16(kTestCases[i].query), text)) 55 TEST(TokenizedStringMatchTest, Match) { 71 TokenizedStringMatch match; local 74 EXPECT_TRUE(match.Calculate(UTF8ToUTF16(kTestCases[i].query), text)); 75 EXPECT_EQ(kTestCases[i].expect, MatchHit(text, match)); 91 // Acronym match is better than something in the middle [all...] |
/external/chromium_org/tools/ |
unused-symbols-report.py | 63 match = symbol_re.search(line) 64 if not match: 66 symbol, path = match.groups() 73 match = path_re.match(path) 74 if not match: 77 target, path = match.groups()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ProfileAwareUriMatcher.java | 58 * @param code the code to match for the root URI 104 * 3. The URI contains lookup key references that match the special profile lookup key. 109 int match = match(uri); local 110 if (PROFILE_URIS.contains(match)) { 112 } else if (PROFILE_URI_ID_MAP.containsKey(match)) { 113 int idSegment = PROFILE_URI_ID_MAP.get(match); 118 } else if (PROFILE_URI_LOOKUP_KEY_MAP.containsKey(match)) { 119 int lookupKeySegment = PROFILE_URI_LOOKUP_KEY_MAP.get(match);
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
rjsmin.py | 152 match = _re.compile(what).match 154 chr(c) for c in xrange(127) if not match(chr(c)) 160 match = _re.compile(id_literal_(keep)).match 162 chr(c) for c in xrange(127) if not match(chr(c)) 196 def space_subber(match): 199 groups = match.groups() 255 def subber(match): 257 groups = match.groups( [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ViaParser.java | 56 lexer.match(TokenTypes.ID); 61 lexer.match('/'); 63 lexer.match(TokenTypes.ID); 70 lexer.match('/'); 72 lexer.match(TokenTypes.ID); 149 lexer.match(LexerCore.ID); 172 lexer.match(LexerCore.ID); 203 this.lexer.match(TokenTypes.VIA); 205 this.lexer.match(':'); // expect a colon. 220 this.lexer.match('\n') [all...] |
RetryAfterParser.java | 95 this.lexer.match(';'); 97 lexer.match(TokenTypes.ID); 101 this.lexer.match('='); 114 this.lexer.match('='); 116 lexer.match(TokenTypes.ID);
|
/dalvik/tools/ |
deadcode.py | 13 # Match lines like 48 # Match lines like: 76 match = codes.find(method, start) 78 if match is -1: 82 startOfLine = codes.rfind("\n", 0, match) + 1 87 if codes.find("invoke", startOfLine, match) is not -1: 90 start = match + len(method)
|
/external/chromium/chrome/browser/content_settings/ |
content_settings_pattern.cc | 77 const size_t match = local 80 return (match != std::string::npos) && 81 (match == 0 || host[match - 1] == '.') && 82 (match + pattern_.length() - kDomainWildcardLength == host.length());
|
/external/chromium_org/sandbox/win/src/ |
policy_engine_opcodes.cc | 45 MatchContext* match); 110 // Argument 0 is the stored number to match. 114 unsigned long match, 118 opcode->SetArgument(0, match); 124 const void* match, 128 opcode->SetArgument(0, match); 157 // Argument 0 is the stored lower bound to match. 158 // Argument 1 is the stored upper bound to match. 194 // Argument 0 is the stored number to match. 197 unsigned long match, [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
crashlogs.py | 62 match = first_line_regex.match(f[0:f.find('\n')]) 63 if match and match.group('process_name') == process_name and (pid is None or int(match.group('pid')) == pid):
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumbermatcher.h | 90 // Returns true if the text sequence has another match. 93 // Gets next match from text sequence. 94 bool Next(PhoneNumberMatch* match); 104 // Attempts to extract a match from a candidate string. Returns true if a 105 // match is found, otherwise returns false. The value "offset" refers to the 107 bool Find(int index, PhoneNumberMatch* match); 115 // Attempts to extract a match from candidate. Returns true if the match was 118 PhoneNumberMatch* match); 120 // Attempts to extract a match from a candidate string if the whole candidat [all...] |
/external/chromium_org/third_party/mesa/src/src/getopt/ |
getopt_long.c | 156 * Returns -1 if short_too is set and the option does not match long_options. 164 int i, match; local 167 match = -1; 185 /* exact match */ 186 match = i; 191 * a partial match of a single character. 196 if (match == -1) /* partial match */ 197 match = i; 207 if (match != -1) { /* option found * [all...] |
/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/mesa3d/src/getopt/ |
getopt_long.c | 156 * Returns -1 if short_too is set and the option does not match long_options. 164 int i, match; local 167 match = -1; 185 /* exact match */ 186 match = i; 191 * a partial match of a single character. 196 if (match == -1) /* partial match */ 197 match = i; 207 if (match != -1) { /* option found * [all...] |
/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))) {
|
/external/chromium_org/extensions/browser/ |
info_map_unittest.cc | 145 const Extension* match = info_map->extensions().GetExtensionOrAppByURL( local 147 EXPECT_TRUE(match && match->HasAPIPermission(APIPermission::kNotification)); 148 match = info_map->extensions().GetExtensionOrAppByURL(app_url); 149 EXPECT_TRUE(match && match->HasAPIPermission(APIPermission::kNotification)); 150 EXPECT_FALSE(match && match->HasAPIPermission(APIPermission::kTab)); 153 match = info_map->extensions().GetExtensionOrAppByURL( 155 EXPECT_TRUE(match && match->HasAPIPermission(APIPermission::kTab)) [all...] |
/external/chromium_org/tools/linux/ |
dump-static-initializers.py | 57 is a protoc-generated file. If a single match is found, it is returned. 61 match = protobuf_filename_re.match(filename) 62 if not match: 64 basename = match.groups(0) 88 match = symbol_code_name_re.match(symbol) 89 if not match: 91 symbol = match.group(1) 108 match = nm_re.match(line [all...] |
/external/doclava/src/com/google/doclava/parser/ |
JavaLexer.java | 248 match('0'); 287 match('0'); 399 match("0x"); 407 match("0X"); 508 match('.'); 558 match('.'); 746 match('.'); [all...] |