/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/ |
pretty_printers.py | 43 object_regexp = "" # match everything 44 name_regexp = "" # match everything 132 if name_re.match(name): 140 subname_re.match(subprinter.name)): 148 if printer_list and object_re.match(obj_name_to_match): 237 if (hasattr(printer, "name") and name_re.match(printer.name) or 238 hasattr(printer, "__name__") and name_re.match(printer.__name__)): 254 if subname_re.match(subprinter.name): 268 # that can match everything. For now punt and only support 284 if object_re.match("global") [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
group-file-lexer.rb | 124 match( "group" ) 148 match( "::" ) 172 match( 0x3b ) 196 match( "::=" ) 220 match( 0x28 ) 244 match( 0x29 ) 268 match( 0x2c ) 292 match( 0x2a ) 316 match( 0x26 ) 340 match( 0x3d [all...] |
/external/chromium_org/third_party/skia/src/ports/ |
SkFontConfigInterface_direct.cpp | 156 // Equivalence classes, used to match the Liberation and other fonts 181 // Match the font name against a whilelist of fonts, returning the equivalence 186 // replacement is a "strong" match (that is, an equivalent font) or 187 // a "weak" match (that is, fontconfig's next-best attempt at finding a 358 FcPattern* match = NULL; local 362 match = current; 367 if (match && !IsFallbackFontAllowed(family)) { 370 const char* post_match_family = get_name(match, FC_FAMILY, id); 379 // -> We should treat this case as a good match. 389 return match; 512 FcPattern* match = MatchFont(font_set, post_config_family, familyStr); local 596 FcPattern* match = fs->fonts[i]; local [all...] |
/external/skia/src/ports/ |
SkFontConfigInterface_direct.cpp | 156 // Equivalence classes, used to match the Liberation and other fonts 181 // Match the font name against a whilelist of fonts, returning the equivalence 186 // replacement is a "strong" match (that is, an equivalent font) or 187 // a "weak" match (that is, fontconfig's next-best attempt at finding a 358 FcPattern* match = NULL; local 362 match = current; 367 if (match && !IsFallbackFontAllowed(family)) { 370 const char* post_match_family = get_name(match, FC_FAMILY, id); 379 // -> We should treat this case as a good match. 389 return match; 512 FcPattern* match = MatchFont(font_set, post_config_family, familyStr); local 596 FcPattern* match = fs->fonts[i]; local [all...] |
/external/chromium_org/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...] |
/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...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
HttpCookieTest.java | 107 boolean match = HttpCookie.domainMatches("hostname", "hostname"); 108 assertFalse(match); 110 match = HttpCookie.domainMatches(".com", "test.com"); 111 assertFalse(match); 113 match = HttpCookie.domainMatches(".com.", "test.com"); 114 assertFalse(match); 118 match = HttpCookie.domainMatches(".local", "hostname"); 119 assertTrue(match); 126 match = HttpCookie.domainMatches(".c.d", "a.b.c.d"); 127 assertFalse(match); [all...] |
/external/chromium_org/tools/mac/ |
symbolicate_crash.py | 87 # This returns a list of just symbols. The indices will match up with the 107 while not thread_re.match(line): 140 while line_re.match(line) or in_stack: 142 matches = line_re.match(line) 167 matches = re.match(regex, line) 195 while user_thread_re.match(line) or in_user_stack or in_kernel_stack: 197 matches = user_thread_re.match(line) 237 matches = re.match(regex_a, line) 247 # If pattern A didn't match (which it will most of the time), try B. 248 matches = re.match(regex_b, line [all...] |
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
PhoneNumberMatcher.java | 87 * Pattern to check that brackets match. Opening brackets should be closed within a phone number. 95 * else (such as a neighbouring zip-code). If white-space is found, continues to match all 186 /** The last successful match, null unless in {@link State#READY}. */ 224 * that represents a phone number. Returns the next match, null if none was found. 227 * @return the phone number match found, null if none can be found 240 PhoneNumberMatch match = extractMatch(candidate, start); local 241 if (match != null) { 242 return match; 253 * Trims away any characters after the first match of {@code pattern} in {@code candidate}, 289 * Attempts to extract a match from a {@code candidate} character sequence 310 PhoneNumberMatch match = parseAndVerify(rawString, offset); local 338 PhoneNumberMatch match = parseAndVerify(firstGroupOnly.toString(), offset); local [all...] |
/external/proguard/src/proguard/retrace/ |
ReTrace.java | 217 String match = matcher.group(expressionTypeIndex + 1); local 223 className = originalClassName(match); 227 className = originalClassName(ClassUtil.externalClassName(match)); 231 lineNumber = Integer.parseInt(match); 235 type = originalType(match); 239 arguments = originalArguments(match); 257 String match = matcher.group(expressionTypeIndex + 1); local 266 className = originalClassName(match); 271 className = originalClassName(ClassUtil.externalClassName(match)); 276 lineNumber = Integer.parseInt(match); [all...] |
/external/chromium/net/base/ |
x509_cert_types_mac.cc | 157 bool match(const std::string& str, const std::string& against) { function in namespace:net::__anon2711 163 bool match(const std::vector<std::string>& rdn1, function in namespace:net::__anon2711 165 // "Two relative distinguished names RDN1 and RDN2 match if they have the 173 if (match(rdn1[i1], rdn2[i2])) 301 return match(common_name, against.common_name) && 302 match(locality_name, against.locality_name) && 303 match(state_or_province_name, against.state_or_province_name) && 304 match(country_name, against.country_name) && 305 match(street_addresses, against.street_addresses) && 306 match(organization_names, against.organization_names) & [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
csdetest.cpp | 279 const UCharsetMatch *match; local 283 match = ucsdet_detect(csd, &status); 285 if (match == NULL) { 290 ucsdet_getUChars(match, detected, sLength, &status); 319 const UCharsetMatch *match; local 324 match = ucsdet_detect(csd, &status); 326 if (match == NULL) { 331 name = ucsdet_getName(match, &status); 332 conf = ucsdet_getConfidence(match, &status); 345 match = ucsdet_detect(csd, &status) 379 const UCharsetMatch *match; local 447 const UCharsetMatch *match; local 591 const UCharsetMatch *match; local 675 const UCharsetMatch *match; local [all...] |
/external/icu4c/test/intltest/ |
csdetest.cpp | 291 const UCharsetMatch *match; local 295 match = ucsdet_detect(csd, &status); 297 if (match == NULL) { 302 ucsdet_getUChars(match, detected, sLength, &status); 331 const UCharsetMatch *match; local 336 match = ucsdet_detect(csd, &status); 338 if (match == NULL) { 343 name = ucsdet_getName(match, &status); 344 conf = ucsdet_getConfidence(match, &status); 357 match = ucsdet_detect(csd, &status) 391 const UCharsetMatch *match; local 459 const UCharsetMatch *match; local 603 const UCharsetMatch *match; local 687 const UCharsetMatch *match; local [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/ |
antlr.js | 179 m=ua.match(/AppleWebKit\/([^\s]*)/); 187 m=ua.match(/NokiaN[^\/]*/); 193 m=ua.match(/AdobeAIR\/([^\s]*)/); 202 m=ua.match(/Opera[\s\/]([^\s]*)/); 205 m=ua.match(/Opera Mini[^;]*/); 210 m=ua.match(/MSIE\s([^;]*)/); 214 m=ua.match(/Gecko\/([^\s]*)/); 217 m=ua.match(/rv:([^\s\)]*)/);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertStoreSpiTest.java | 89 public boolean match (CRL crl) { method in class:CertStoreSpiTest.tmpCRLSelector 97 public boolean match (Certificate crl) { method in class:CertStoreSpiTest.tmpCertSelector
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerId.java | 50 * @param subjectKeyId the subject key identifier to use to match the signers associated certificate. 90 public boolean match(Object obj) method in class:SignerId 97 return baseSelector.match(obj);
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_model.h | 61 // default match, and thus there is no temporary text (and no 70 // will change the selected line back to the default match and redraw. 73 // Gets the selected keyword or keyword hint for the given match. If the match 75 // it returns GetKeywordForText(match.fill_into_edit, keyword). 76 bool GetKeywordForMatch(const AutocompleteMatch& match, 97 // If |match| is from an extension, returns the extension icon; otherwise 99 const SkBitmap* GetIconIfExtensionMatch(const AutocompleteMatch& match) const; 101 // The match the user has manually chosen, if any. 130 // The match the user has manually chosen, if any [all...] |
autocomplete_popup_view_mac.h | 91 // Return the text to show for the match, based on the match's 94 static NSAttributedString* MatchText(const AutocompleteMatch& match, 133 // Returns the NSImage that should be used as an icon for the given match. 134 NSImage* ImageForMatch(const AutocompleteMatch& match);
|
/external/chromium/chrome/browser/ui/views/autocomplete/ |
autocomplete_result_view.h | 45 // Updates the match used to paint the contents of this result view. We copy 46 // the match so that we can continue to paint the last result even after the 48 void SetMatch(const AutocompleteMatch& match); 52 const AutocompleteMatch& match,
|
/external/chromium/chrome/browser/ui/webui/ |
extension_icon_source.h | 59 // based on the |match| type. If |grayscale|, the URL will be for the 63 ExtensionIconSet::MatchType match, 131 ExtensionIconSet::MatchType match);
|
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_classifier.cc | 39 AutocompleteMatch* match, 56 *match = *result.default_match();
|
/external/chromium_org/chrome/browser/extensions/api/omnibox/ |
omnibox_api_browsertest.cc | 46 AutocompleteMatch match = result.match_at(0); local 47 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type); 48 EXPECT_FALSE(match.deletable); 50 match = result.match_at(1); 51 EXPECT_EQ(ASCIIToUTF16("keyword"), match.keyword); 95 ASCIIToUTF16("Description with style: <match>, [dim], (url till end)"); 106 EXPECT_EQ(ACMatchClassification::MATCH, 129 AutocompleteMatch match = result.match_at(4); local 130 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type); 133 EXPECT_FALSE(match.deletable) [all...] |
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
extension_icon_source.h | 58 // based on the |match| type. If |grayscale|, the URL will be for the 64 ExtensionIconSet::MatchType match, 139 ExtensionIconSet::MatchType match);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/ |
contentscript.js | 6 matches = document.body.innerText.match(regex);
|
/external/chromium_org/chrome/tools/ |
check_grd_for_unused_strings.py | 20 # 2 - Files that aren't processes (don't match the source name regex) 65 match = id_regex.search(x) 66 if match is None: 67 print 'ERROR: "%s" did not match our regex' % (x) 69 if not match.group(0) is x: 70 print 'ERROR: "%s" did not fully match our regex' % (x) 90 for match in sorted(set(id_regex.findall(src_file_contents))): 91 if match in ids_left: 92 ids_left.remove(match) 94 if not match in all_ids [all...] |