/external/oprofile/libutil++/ |
comma_list.h | 33 * match anything. 45 * return true if value match one the stored value in items 47 bool match(T const & value) const; 85 bool comma_list<T>::match(T const & value) const function in class:comma_list
|
/external/oprofile/ |
opimport_pull | 104 match = pattern.search(line) 105 leading_dir = match.group(1) 106 middle_part = match.group(2) 107 file_name = match.group(3)
|
/external/skia/gm/tests/ |
run.sh | 124 # that gm will match or mismatch as appropriate. 143 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -w $THIS_IMAGE_DIR 145 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \ 150 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -w $THIS_IMAGE_DIR 155 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \ 160 $GM_BINARY --hierarchy --match selftest2 $CONFIGS -w $THIS_IMAGE_DIR 163 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \ 176 $GM_BINARY --match selftest2 $CONFIGS -w $THIS_IMAGE_DIR 179 $GM_BINARY --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \ 200 gm_test "--verbose --hierarchy --match selftest1 $CONFIGS -r $GM_INPUTS/images/identical-bytes" "$GM_OUTPUTS/compared-against-identical-b (…) [all...] |
/external/skia/src/fonts/ |
SkFontMgr_fontconfig.cpp | 87 // find the first good match 137 static SkFontStyle make_fontconfig_style(FcPattern* match) { 138 int weight = get_int(match, FC_WEIGHT); 139 int width = get_int(match, FC_WIDTH); 140 int slant = get_int(match, FC_SLANT); 240 FcPattern** match = MatchFont(font_set, post_config_family, &count); local 241 if (!match) { 251 const char* justName = find_just_name(get_name(match[i], FC_FILE)); 253 *trimmedMatches.append() = match[i];
|
/external/wpa_supplicant_8/src/wps/ |
wps_upnp_web.c | 792 const char *match; local 806 match = urn_wfawlanconfig; 808 if (os_strncasecmp(b, match, match_len)) 919 char *match; local 961 match = "NT:"; 962 match_len = os_strlen(match); 963 if (os_strncasecmp(h, match, match_len) == 0) { 967 match = "upnp:event"; 968 match_len = os_strlen(match); 969 if (os_strncasecmp(h, match, match_len) != 0) 1138 char *match; local [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
CertStoreSpiTest.java | 81 public boolean match (CRL crl) { method in class:CertStoreSpiTest.tmpCRLSelector 89 public boolean match (Certificate crl) { method in class:CertStoreSpiTest.tmpCertSelector
|
/ndk/build/awk/ |
extract-debuggable.awk | 119 if (!match( $0, "^" sec_begin )) return 0; 120 while (!match($0, sec_end "$")) {
|
extract-minsdkversion.awk | 116 if (!match( $0, "^" sec_begin )) return 0; 117 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 "$")) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
quoprimime.py | 66 return bool(hqre.match(c)) 71 return bool(bqre.match(c)) 78 if hqre.match(c): 89 if bqre.match(c): 166 elif not hqre.match(c): 227 if bqre.match(c): 326 def _unquote_match(match): 327 """Turn a match in the form =AB to the ASCII character with value 0xab""" 328 s = match.group(0)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
quoprimime.py | 66 return bool(hqre.match(c)) 71 return bool(bqre.match(c)) 78 if hqre.match(c): 89 if bqre.match(c): 166 elif not hqre.match(c): 227 if bqre.match(c): 326 def _unquote_match(match): 327 """Turn a match in the form =AB to the ASCII character with value 0xab""" 328 s = match.group(0)
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
compute_dependencies.py | 107 match = re.search(r'partial\s+interface\s+(\w+)', file_contents) 108 return match and match.group(1) 122 implements_pairs = [(match.group(1), match.group(2)) 123 for match in implements_matches] 128 match = re.search(r'callback\s+interface\s+\w+', file_contents) 129 return bool(match) 133 match = re.search(r'interface\s+\w+\s*:\s*(\w+)\s*', file_contents) 134 return match and match.group(1 [all...] |
/external/icu4c/i18n/ |
tznames.cpp | 407 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local 408 if (match) { 409 return match->nameType; 416 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local 417 if (match) { 418 return match->matchLength; 426 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local 427 if (match && match->isTZID) { 428 tzID.setTo(match->id) 437 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local [all...] |
/build/tools/ |
adbs | 23 # match "#00 pc 0003f52e /system/lib/libdvm.so" for example 101 components = func_regexp.match(func_name) 211 match = trace_line.match(line) variable 212 if (match): 213 groups = match.groups()
|
/external/chromium/testing/gmock/scripts/ |
fuse_gmock_files.py | 136 m = INCLUDE_GMOCK_FILE_REGEX.match(line) 141 m = gtest.INCLUDE_GTEST_FILE_REGEX.match(line) 175 m = INCLUDE_GMOCK_FILE_REGEX.match(line) 186 m = gtest.INCLUDE_GTEST_FILE_REGEX.match(line) 193 m = gtest.INCLUDE_SRC_FILE_REGEX.match(line)
|
/external/chromium_org/sandbox/win/src/ |
policy_engine_opcodes.h | 76 OP_NUMBER_MATCH, // Match a 32-bit integer as n == a. 77 OP_ULONG_MATCH_RANGE, // Match an ulong integer as a <= n <= b. 78 OP_ULONG_AND_MATCH, // Match using bitwise AND; as in: n & a != 0. 79 OP_WSTRING_MATCH, // Match a string for equality. 105 // from the last character position from the current opcode. The match 147 // match: The match context that is persisted across the opcode evaluation 150 MatchContext* match); 218 MatchContext* match); 228 EXACT_LENGHT = 2 // Don't do substring match. Do full string match [all...] |
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumbermatcher.cc | 163 // extension to match the last group of the subscriber number. Note the 244 // Pattern to check that brackets match. Opening brackets should be closed 250 // is found, continues to match all characters that are not typically used to 407 PhoneNumberMatch* match) { 408 DCHECK(match); 456 match->set_start(offset); 457 match->set_raw_string(candidate); 465 match->set_number(number); 524 PhoneNumberMatch* match) { 525 DCHECK(match); [all...] |
/external/chromium_org/tools/grit/grit/gather/ |
chrome_scaled_image.py | 95 match = self.split_context_re_.match(output_context) 96 if not match: 100 req_layout, req_scale = match.group(1), int(match.group(2))
|
rc.py | 50 def Replace(match): 51 return _ESCAPE_CHARS[match.group()] 57 def Replace(match): 58 return _UNESCAPE_CHARS[match.group()] 80 if out or first_line_re.match(line): 120 # more than one description per regular expression match. 189 # Match the MENU ID on the first line 192 # Match the translateable caption for a popup menu 195 # Match the caption & ID of a MENUITEM 253 # Match the ID on the first lin [all...] |
/external/iptables/extensions/ |
libxt_devgroup.c | 15 "devgroup match options:\n" 16 "[!] --src-group value[/mask] Match device group of incoming device\n" 17 "[!] --dst-group value[/mask] Match device group of outgoing device\n" 37 static void devgroup_init(struct xt_entry_match *match) 139 static void devgroup_print(const void *ip, const struct xt_entry_match *match, 142 const struct xt_devgroup_info *info = (const void *)match->data; 147 static void devgroup_save(const void *ip, const struct xt_entry_match *match) 149 const struct xt_devgroup_info *info = (const void *)match->data; 158 "devgroup match: You must specify either "
|
/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/markdown/markdown/ |
inlinepatterns.py | 12 pattern.handleMatch(m) # takes a match object and returns 106 def attributeCallback(match): 107 parent.set(match.group(1), match.group(2).replace('\n', ' ')) 141 """Return a ElementTree element from the given match. 147 * m: A re match object containing a match of the pattern. 224 """ Return a link element from the given match. """ 276 """ Return a img element from the given match. """ 299 """ Match to a stored reference and return link element. "" [all...] |
/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/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider.java | 78 // shared suggestion array index, make sure to match COLUMNS 114 // make sure that these match the index of TABLE_NAMES 117 // (id % 10) should match the table name index 452 * 2. If bookmark/history entries has a match, "Search the web" shows up at 756 int match = URI_MATCHER.match(url); 757 if (match == -1) { 761 if (match == URI_MATCH_SUGGEST || match == URI_MATCH_BOOKMARKS_SUGGEST) { 763 return doSuggestQuery(selection, selectionArgs, match == URI_MATCH_BOOKMARKS_SUGGEST) 908 int match = URI_MATCHER.match(url); local 956 int match = URI_MATCHER.match(url); local [all...] |