/external/chromium_org/third_party/icu/source/i18n/ |
csrmbcs.h | 50 * Test the match of this charset with the input text data 57 * bits 0-7: the match confidence, ranging from 0-100 59 * bits 8-15: The match reason, an enum-like value. 74 UBool match(InputText* input, CharsetMatch *results) const = 0; 103 UBool match(InputText* input, CharsetMatch *results) const; 125 UBool match(InputText* input, CharsetMatch *results) const = 0; 147 UBool match(InputText* input, CharsetMatch *results) const; 162 UBool match(InputText* input, CharsetMatch *results) const; 180 UBool match(InputText* input, CharsetMatch *results) const; 199 UBool match(InputText* input, CharsetMatch *results) const [all...] |
/external/icu/icu4c/source/i18n/ |
csrmbcs.h | 50 * Test the match of this charset with the input text data 57 * bits 0-7: the match confidence, ranging from 0-100 59 * bits 8-15: The match reason, an enum-like value. 74 UBool match(InputText* input, CharsetMatch *results) const = 0; 103 UBool match(InputText* input, CharsetMatch *results) const; 125 UBool match(InputText* input, CharsetMatch *results) const = 0; 147 UBool match(InputText* input, CharsetMatch *results) const; 162 UBool match(InputText* input, CharsetMatch *results) const; 180 UBool match(InputText* input, CharsetMatch *results) const; 199 UBool match(InputText* input, CharsetMatch *results) const [all...] |
/frameworks/base/core/jni/ |
android_os_UEventObserver.cpp | 48 const String8& match = gMatches.itemAt(i); local 54 if (strstr(field, match.string())) { 55 ALOGV("Matched uevent message with pattern: %s", match.string()); 88 ScopedUtfChars match(env, matchStr); 91 gMatches.add(String8(match.c_str())); 95 ScopedUtfChars match(env, matchStr); 99 if (gMatches.itemAt(i) == match.c_str()) {
|
/frameworks/base/tools/aapt/ |
ResourceFilter.h | 23 virtual bool match(const android::ResTable_config& config) const = 0; 37 bool match(const android::ResTable_config& config) const; 62 * that this filter is looking for. In order to match a configuration, 86 bool match(const android::ResTable_config& config) const { function in class:StrongResourceFilter 112 bool match(const android::ResTable_config& config) const { function in class:InverseResourceFilter 113 return !mFilter->match(config); 129 bool match(const android::ResTable_config& config) const { function in class:AndResourceFilter 132 if (!mFilters[i]->match(config)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 145 match = self.interesting.search(rawdata, i) # < or & 146 if match: 147 j = match.start() 157 if starttagopen.match(rawdata, i): # < + letter 185 match = charref.match(rawdata, i) 186 if match: 187 name = match.group()[2:-1] 189 k = match.end() 200 match = entityref.match(rawdata, i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 145 match = self.interesting.search(rawdata, i) # < or & 146 if match: 147 j = match.start() 157 if starttagopen.match(rawdata, i): # < + letter 185 match = charref.match(rawdata, i) 186 if match: 187 name = match.group()[2:-1] 189 k = match.end() 200 match = entityref.match(rawdata, i [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
history_quick_provider.cc | 99 // Figure out if HistoryURL provider has a URL-what-you-typed match 104 // input to be a URL-what-you-typed match. The username test checks that 109 // provider won't promote the URL-what-you-typed match to first 123 // data structure) compete with the URL-what-you-typed match as 130 // match as normal. 136 // We want to put the URL-what-you-typed match first if either 141 // normally with the URL-what-you-typed match.) 149 // the URL-what-you-typed match are on the same host (i.e., aren't 191 // a URL-what-you-typed match. (We want URL-what-you-typed matches for 228 AutocompleteMatch match( [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCTP.java | 155 match(input,FUNC_DECL,FOLLOW_FUNC_DECL_in_declaration74); method 157 match(input, Token.DOWN, null); method 164 match(input, Token.UP, null); method 171 match(input,FUNC_DEF,FOLLOW_FUNC_DEF_in_declaration88); method 173 match(input, Token.DOWN, null); method 185 match(input, Token.UP, null); method 210 match(input,VAR_DEF,FOLLOW_VAR_DEF_in_variable113); method 212 match(input, Token.DOWN, null); method 224 match(input, Token.UP, null); method 247 match(input,ID,FOLLOW_ID_in_declarator137); method 270 match(input,FUNC_HDR,FOLLOW_FUNC_HDR_in_functionHeader158); method 272 match(input, Token.DOWN, null); method 278 match(input,ID,FOLLOW_ID_in_functionHeader162); method 314 match(input, Token.UP, null); method 337 match(input,ARG_DEF,FOLLOW_ARG_DEF_in_formalParameter186); method 339 match(input, Token.DOWN, null); method 351 match(input, Token.UP, null); method 405 match(input,BLOCK,FOLLOW_BLOCK_in_block273); method 408 match(input, Token.DOWN, null); method 468 match(input, Token.UP, null); method 574 match(input,FOR,FOLLOW_FOR_in_forStat328); method 576 match(input, Token.DOWN, null); method 598 match(input, Token.UP, null); method 667 match(input,EQEQ,FOLLOW_EQEQ_in_expr352); method 669 match(input, Token.DOWN, null); method 681 match(input, Token.UP, null); method 688 match(input,LT,FOLLOW_LT_in_expr368); method 690 match(input, Token.DOWN, null); method 702 match(input, Token.UP, null); method 709 match(input,PLUS,FOLLOW_PLUS_in_expr384); method 711 match(input, Token.DOWN, null); method 723 match(input, Token.UP, null); method 730 match(input,EQ,FOLLOW_EQ_in_expr400); method 732 match(input, Token.DOWN, null); method 740 match(input, Token.UP, null); method [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCTP.java | 155 match(input,FUNC_DECL,FOLLOW_FUNC_DECL_in_declaration74); method 157 match(input, Token.DOWN, null); method 164 match(input, Token.UP, null); method 171 match(input,FUNC_DEF,FOLLOW_FUNC_DEF_in_declaration88); method 173 match(input, Token.DOWN, null); method 185 match(input, Token.UP, null); method 210 match(input,VAR_DEF,FOLLOW_VAR_DEF_in_variable113); method 212 match(input, Token.DOWN, null); method 224 match(input, Token.UP, null); method 247 match(input,ID,FOLLOW_ID_in_declarator137); method 270 match(input,FUNC_HDR,FOLLOW_FUNC_HDR_in_functionHeader158); method 272 match(input, Token.DOWN, null); method 278 match(input,ID,FOLLOW_ID_in_functionHeader162); method 314 match(input, Token.UP, null); method 337 match(input,ARG_DEF,FOLLOW_ARG_DEF_in_formalParameter186); method 339 match(input, Token.DOWN, null); method 351 match(input, Token.UP, null); method 405 match(input,BLOCK,FOLLOW_BLOCK_in_block273); method 408 match(input, Token.DOWN, null); method 468 match(input, Token.UP, null); method 574 match(input,FOR,FOLLOW_FOR_in_forStat328); method 576 match(input, Token.DOWN, null); method 598 match(input, Token.UP, null); method 667 match(input,EQEQ,FOLLOW_EQEQ_in_expr352); method 669 match(input, Token.DOWN, null); method 681 match(input, Token.UP, null); method 688 match(input,LT,FOLLOW_LT_in_expr368); method 690 match(input, Token.DOWN, null); method 702 match(input, Token.UP, null); method 709 match(input,PLUS,FOLLOW_PLUS_in_expr384); method 711 match(input, Token.DOWN, null); method 723 match(input, Token.UP, null); method 730 match(input,EQ,FOLLOW_EQ_in_expr400); method 732 match(input, Token.DOWN, null); method 740 match(input, Token.UP, null); method [all...] |
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_controller.cc | 34 // instructions from the suggest server. If such a match ranks sufficiently 39 // prefetch suggestion even if it is not the default match. Otherwise we only 42 // verbatim match) or the second entry in the dropdown (which can happen for 43 // non-default matches when a top verbatim match is shown); for other matches, 53 // If the default match should be prefetched, do that. 60 // Otherwise, if the top match is a verbatim match and the very next match 99 // The default match has changed, we need to let the OmniboxEditModel know 101 const AutocompleteResult::const_iterator match(result().default_match()) [all...] |
/external/chromium_org/tools/resources/ |
list_resources_removed_by_repack.py | 33 match = unused_pattern.match(line) 34 if match: 35 resource_id = int(match.group('resource_id')) 77 match = resource_pattern.match(line) 78 if match: 79 resource_id = int(match.group('resource_id')) 80 resource_name = match.group('resource_name')
|
/external/clang/include/clang/ASTMatchers/ |
ASTMatchFinder.h | 11 // over the AST and invokes a given callback on every match. 14 // subtree match on the AST. Next, a callback that is executed every time the 19 // the match or construct changes that can be applied to the code. 56 /// that will trigger the callbacks specified via addMatcher(...) when a match 68 /// \brief Contains all information for a given match. 70 /// Every time a match is found, the MatchFinder will invoke the registered 71 /// MatchCallback with a MatchResult containing information about the match. 75 /// \brief Contains the nodes bound on the current match. 87 /// \brief Called when the Match registered for it was successfully found 93 /// \brief Called on every match by the \c MatchFinder 159 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder 240 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers 251 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
WarningParser.java | 87 this.lexer.match(TokenTypes.ID); 100 this.lexer.match(TokenTypes.ID); 104 this.lexer.match(':'); 105 this.lexer.match(TokenTypes.ID); 123 this.lexer.match(','); 129 this.lexer.match(TokenTypes.ID); 142 this.lexer.match(TokenTypes.ID); 148 this.lexer.match(':'); 149 this.lexer.match(TokenTypes.ID);
|
CallInfoParser.java | 77 this.lexer.match('<'); 81 this.lexer.match('>'); 88 this.lexer.match(','); 94 this.lexer.match('<'); 98 this.lexer.match('>');
|
/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;
|
/cts/suite/audio_quality/lib/src/ |
SimpleScriptExec.cpp | 44 android::String8 match; local 45 match.append(PASS_MAGIC_WORD); 46 match.append(reMatch); 47 LOGV("re match %s", match.string()); 53 if (regcomp(&re, match.string(), cflags) != 0) { 59 // match found. passed
|
/external/chromium_org/content/renderer/android/ |
phone_number_detector.cc | 68 PhoneNumberMatch match; local 69 matcher.Next(&match); 72 phone_util->FormatNumberForMobileDialing(match.number(), region_code_, 82 base::UTF8ToUTF16(utf8_input.substr(0, match.start())).length(); 83 *end_pos = *start_pos + base::UTF8ToUTF16(match.raw_string()).length();
|
/external/chromium_org/third_party/android_platform/development/scripts/ |
stack_core.py | 140 match = trace_line.match(line) or debug_trace_line.match(line) 141 if match: 142 address, lib = match.group('address', 'lib') 144 match = value_line.match(line) 145 if match and not code_line.match(line): 146 (_0, _1, address, lib, _2, _3) = match.groups( [all...] |
/external/chromium_org/third_party/skia/tests/ |
RecordPatternTest.cpp | 18 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 22 // Build up a save-clip-restore block. The pattern will match only it's complete. 24 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 27 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 30 REPORTER_ASSERT(r, pattern.match(&record, 0)); 49 // We should match only at 0 and 3. Going over the length should fail gracefully. 52 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3); 54 REPORTER_ASSERT(r, !pattern.match(&record, i)); 70 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 81 REPORTER_ASSERT(r, pattern.match(&record, 0)) [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
gen_dynamic_list.py | 59 match = re.match('__interceptor_(.*)', func) 60 if match: 64 orig_name = match.group(1) 69 if re.match('__sanitizer_(.*)', func):
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
UniqueDWARFASTType.cpp | 34 // Make sure the tags match 40 // Make sure the file and line match 44 // file and line. Now verify all of the parent DIEs match. 47 bool match = true; local 49 while (!done && match && parent_arg_die && parend_pos_die) 64 match = false; 70 match = false; 84 if (match)
|
/external/skia/tests/ |
RecordPatternTest.cpp | 18 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 22 // Build up a save-clip-restore block. The pattern will match only it's complete. 24 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 27 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 30 REPORTER_ASSERT(r, pattern.match(&record, 0)); 49 // We should match only at 0 and 3. Going over the length should fail gracefully. 52 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3); 54 REPORTER_ASSERT(r, !pattern.match(&record, i)); 70 REPORTER_ASSERT(r, !pattern.match(&record, 0)); 81 REPORTER_ASSERT(r, pattern.match(&record, 0)) [all...] |
/packages/apps/Email/src/com/android/email/mail/internet/ |
EmailHtmlUtil.java | 36 Matcher match = pattern.matcher(text); local 38 if (match.find()) { 42 int start = match.start(); 44 end = match.end(); 61 } while (match.find());
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
TypedUriMatcherImpl.java | 53 public T match(Uri uri) { method in class:TypedUriMatcherImpl 54 int match = mUriMatcher.match(uri); local 55 if (match == UriMatcher.NO_MATCH) { 58 return mValues[match];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_renames.py | 48 # Don't match the node if it's within another match 49 def match(self, node): member in class:FixRenames 50 match = super(FixRenames, self).match 51 results = match(node) 53 if any(match(obj) for obj in attr_chain(node, "parent")):
|