HomeSort by relevance Sort by last modified time
    Searched refs:Match (Results 101 - 125 of 252) sorted by null

1 2 3 45 6 7 8 91011

  /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/chromium/third_party/libjingle/source/talk/base/
messagequeue.h 128 inline bool Match(MessageHandler* handler, uint32 id) const {
  /external/chromium_org/content/browser/renderer_host/
gtk_key_bindings_handler_unittest.cc 82 ASSERT_TRUE(handler_->Match(event, &result));
  /external/chromium_org/sdch/open-vcdiff/src/
vcdiffengine.cc 61 // This helper function tries to find an appropriate match within
63 // If target_hash is not NULL, this function will also look for a match
66 // If a match is found, this function will generate an ADD instruction
67 // for all unencoded data that precedes the match,
68 // and a COPY instruction for the match itself; then it returns
71 // If no appropriate match is found, the function returns 0.
84 // When FindBestMatch() comes up with a match for a candidate block,
86 // and target offset of the match.
87 BlockHash::Match best_match;
89 // First look for a match in the dictionary
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_icu.cc 85 // case of the successful match to be after the match.
157 bool Match(const string& input_string,
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive_tester.cc 12 // the location of the match.
60 if (!re.Match(input, 0, input.size(), anchor, m, n)) {
  /external/chromium_org/v8/src/
regexp-macro-assembler.h 84 // check for a match with c.
95 // Check the current character for a match with a literal character. If we
96 // fail to match then goto the on_failure label. End of input always
104 // constant and then check for a match with c.
212 static Result Match(Handle<Code> regexp,
d8.h 81 CounterMap(): hash_map_(Match) { }
113 static bool Match(void* key1, void* key2);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 26 TEST(Suppressions, Match) {
  /external/open-vcdiff/src/
vcdiffengine.cc 61 // This helper function tries to find an appropriate match within
63 // If target_hash is not NULL, this function will also look for a match
66 // If a match is found, this function will generate an ADD instruction
67 // for all unencoded data that precedes the match,
68 // and a COPY instruction for the match itself; then it returns
71 // If no appropriate match is found, the function returns 0.
84 // When FindBestMatch() comes up with a match for a candidate block,
86 // and target offset of the match.
87 BlockHash::Match best_match;
89 // First look for a match in the dictionary
    [all...]
  /external/regex-re2/re2/testing/
exhaustive_tester.cc 12 // the location of the match.
60 if (!re.Match(input, 0, input.size(), anchor, m, n)) {
  /external/v8/src/
regexp-macro-assembler.h 79 // check for a match with c.
85 // Check the current character for a match with a literal string. If we
86 // fail to match then goto the on_failure label. If check_eos is set then
101 // Check the current character for a match with a literal character. If we
102 // fail to match then goto the on_failure label. End of input always
110 // constant and then check for a match with c.
197 static Result Match(Handle<Code> regexp,
d8.h 81 CounterMap(): hash_map_(Match) { }
113 static bool Match(void* key1, void* key2);
  /external/chromium/chrome/browser/autofill/
form_field.cc 83 UBool match = matcher.find(0, status); local
85 return !!match;
125 bool FormField::Match(AutofillField* field,
208 if (Match(field, pattern, match_label_only)) {
269 // then we will match an element only if it is in the standard.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 218 Match match = pickBestMatch(mHorizontalSuggestions); local
219 if (match != null
220 && (!mSnap || Math.abs(match.delta) < BaseLayoutRule.getMaxMatchDistance())) {
221 if (mHorizontalDeps.contains(match.edge.node)) {
222 match.cycle = true;
225 snapHorizontal(hEdge, match.edge.at, newBounds);
228 mCurrentTopMatch = match;
230 mCurrentBottomMatch = match;
234 mCurrentTopMatch = match;
242 Match match = pickBestMatch(mVerticalSuggestions); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 908 /** match a token optionally with a label in front */
910 <if(label)><label>=(<labelType>)<endif>Match(input,<token>,Follow._<token>_in_<ruleName><elementIndex>); <checkRuleBacktrackFailure()>
924 /** match a character */
929 Match(<char>); <checkRuleBacktrackFailure()>
932 /** match a character range */
995 /** Match a string literal */
999 Match(<string>); <checkRuleBacktrackFailure()><\n>
1006 Match(<string>); <checkRuleBacktrackFailure()><\n>
1022 /** Match . wildcard in lexer */
1035 /** Match a rule reference by invoking it possibly with argument
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 884 /** match a token optionally with a label in front */
886 <if(label)><label>=(<labelType>)<endif>Match(input,<token>,Follow._<token>_in_<ruleName><elementIndex>); <checkRuleBacktrackFailure()>
904 /** match a character */
909 Match(<char>); <checkRuleBacktrackFailure()>
912 /** match a character range */
975 /** Match a string literal */
979 Match(<string>); <checkRuleBacktrackFailure()><\n>
986 Match(<string>); <checkRuleBacktrackFailure()><\n>
1002 /** Match . wildcard in lexer */
1015 /** Match a rule reference by invoking it possibly with argument
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 1037 /** match a token optionally with a label in front */
1039 <if(label)><label> := <endif>Match(Input, <token>, FOLLOW_<token>_in_<ruleName><elementIndex>)<if(label)> as I<labelType><endif>;<\n><checkRuleBacktrackFailure()>
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.cc 438 if (!media_path_filter_->Match(dest_file_path))
484 media_path_filter_->Match(file_path)) {
538 if (!info.IsDirectory() && !media_path_filter_->Match(enum_path))
594 if (!media_path_filter_->Match(file_path))
621 !media_path_filter_->Match(file_path)) {
  /external/chromium_org/third_party/re2/re2/
re2.cc 242 // Could delay this until the first match call that
374 if (!re.Match(*str, 0, str->size(), UNANCHORED, vec, nvec))
401 if (!re.Match(*str, p - str->data(), str->size(), UNANCHORED, vec, nvec))
406 // Disallow empty match at end of last match: skip ahead.
436 if (!re.Match(text, 0, text.size(), UNANCHORED, vec, nvec))
543 bool RE2::Match(const StringPiece& text,
565 // Use DFAs to find exact location of match, filter out non-matches.
569 StringPiece match; local
570 StringPiece* matchp = &match;
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 1 //===- FileCheck.cpp - Check that File's Contents match what is expected --===//
69 /// FixedStr - If non-empty, this pattern is a fixed string match with the
104 /// Match - Match the pattern string against the input buffer Buffer. This
105 /// returns the position that is matched or npos if there is no match. If
106 /// there is a match, the size of the matched string is returned in MatchLen.
109 /// variables and is updated if this match defines new values.
110 size_t Match(StringRef Buffer, size_t &MatchLen,
113 /// PrintFailureInfo - Print additional information about a failure to match
134 /// should correspond to a perfect match
    [all...]
  /external/regex-re2/re2/
re2.cc 224 // Could delay this until the first match call that
356 if (!re.Match(*str, 0, str->size(), UNANCHORED, vec, nvec))
383 if (!re.Match(*str, p - str->data(), str->size(), UNANCHORED, vec, nvec))
388 // Disallow empty match at end of last match: skip ahead.
418 if (!re.Match(text, 0, text.size(), UNANCHORED, vec, nvec))
525 bool RE2::Match(const StringPiece& text,
547 // Use DFAs to find exact location of match, filter out non-matches.
551 StringPiece match; local
552 StringPiece* matchp = &match;
    [all...]
  /external/chromium_org/tools/valgrind/
suppressions.py 113 regex: The actual regex used to match against scraped reports.
128 def Match(self, suppression_from_report):
132 We match our suppressions against generated suppressions
146 return self.regex.match('\n'.join(lines) + '\n') is not None
220 # * Memcheck:Unaddressable should also match Addr* reports,
221 # * Memcheck:Uninitialized should also match Cond and Value reports,
225 # * Memcheck:Addr[1248] suppressions should match Unaddressable reports,
226 # * Memcheck:Cond and Memcheck:Value[1248] should match Uninitialized.
321 elif re.match("^fun:.*|^obj:.*|^\.\.\.$", line):
391 instr: The instruction to match
    [all...]
  /external/compiler-rt/lib/lsan/
lsan_common.cc 397 if (suppression_ctx->Match(addr_frames[i].function, SuppressionLeak, &s) ||
398 suppression_ctx->Match(addr_frames[i].file, SuppressionLeak, &s) ||
399 suppression_ctx->Match(addr_frames[i].module, SuppressionLeak, &s))
  /external/nist-sip/java/gov/nist/core/
GenericObject.java 82 protected Match matchExpression; // Pattern matcher.
93 /** Set the pattern matcher. To match on the
94 * field of a sip message, set the match expression in the match template
95 * and invoke the match function. This useful because
100 * an incoming message, first parse it, and then construct a match template,
102 * match. The rules for matching are: A null object matches wild card -
103 * that is a match template of null matches any parsed SIP object.
104 * To match with any subfield, set the match template on a template objec
493 public boolean match(Object other) { method in class:GenericObject
    [all...]

Completed in 2162 milliseconds

1 2 3 45 6 7 8 91011