Searched defs:Match (Results 1 - 25 of 84) sorted by relevance

1234

/external/nist-sip/java/gov/nist/core/
H A DMatch.java28 /** Match template for pattern matching.
38 public interface Match { interface
/external/chromium_org/tools/heapcheck/
H A Dsuppressions.py74 def Match(self, report): member in class:Suppression
144 """Tests the Suppression.Match() capabilities."""
149 assert not empty.Match([])
150 assert not empty.Match(['foo', 'bar'])
152 assert asterisk.Match(['foobar', 'foobaz'])
153 assert not asterisk.Match(['foobaz', 'foobar'])
155 assert ellipsis.Match(['foo', 'bar'])
156 assert ellipsis.Match(['bar', 'baz', 'foo'])
157 assert not ellipsis.Match(['bar', 'baz', 'bah'])
159 assert mixed.Match(['fooba
[all...]
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmedia_path_filter.cc88 bool MediaPathFilter::Match(const base::FilePath& path) { function in class:chrome::MediaPathFilter
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A Ddiff.rb3 Match = Struct.new(:start_in_old, :start_in_new, :size)
4 class Match class in class:HTMLDiff
41 matches << Match.new(@old_words.length, @new_words.length, 0)
135 return (best_match_size != 0 ? Match.new(best_match_in_old, best_match_in_new, best_match_size) : nil)
/external/chromium/chrome/browser/history/
H A Dtext_database.h30 struct Match { struct in class:history::TextDatabase
31 Match();
32 ~Match();
137 std::vector<Match>* results,
H A Dtext_database.cc61 TextDatabase::Match::Match() {} function in class:history::TextDatabase::Match
63 TextDatabase::Match::~Match() {}
304 std::vector<Match>* results,
344 Match& match = results->at(results->size() - 1);
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_helper_unittest.cc50 bool Match(const GURL& origin, function in class:__anon4277::BrowsingDataHelperTest
115 EXPECT_FALSE(Match(kOrigin1, kUnprotected, mock_policy.get()));
116 EXPECT_TRUE(Match(kOrigin2, kUnprotected, mock_policy.get()));
117 EXPECT_FALSE(Match(kOriginExt, kUnprotected, mock_policy.get()));
118 EXPECT_FALSE(Match(kOriginDevTools, kUnprotected, mock_policy.get()));
120 EXPECT_TRUE(Match(kOrigin1, kProtected, mock_policy.get()));
121 EXPECT_FALSE(Match(kOrigin2, kProtected, mock_policy.get()));
122 EXPECT_FALSE(Match(kOriginExt, kProtected, mock_policy.get()));
123 EXPECT_FALSE(Match(kOriginDevTools, kProtected, mock_policy.get()));
125 EXPECT_FALSE(Match(kOrigin
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs166 // Match() routine has already called recover()
250 public virtual void Match( string s ) method in class:Antlr.Runtime.Lexer
277 public virtual void Match( int c ) method in class:Antlr.Runtime.Lexer
/external/chromium/webkit/glue/
H A Dregular_expression_unittest.cc17 struct Match { struct in namespace:__anon3398
25 const Match* matches,
66 const Match matches[] = {
88 const Match matches[] = {
/external/chromium_org/components/autofill/core/browser/
H A Dform_field.cc143 if (FormField::Match(field, pattern, match_type)) {
154 bool FormField::Match(const AutofillField* field, function in class:autofill::FormField
/external/chromium_org/extensions/common/matcher/
H A Dregex_set_matcher.cc38 bool RegexSetMatcher::Match(const std::string& text, function in class:extensions::RegexSetMatcher
71 substring_matcher_->Match(text, &atoms_set);
/external/chromium_org/third_party/re2/re2/
H A Dset.cc94 bool RE2::Set::Match(const StringPiece& text, vector<int>* v) const { function in class:RE2::Set
96 LOG(DFATAL) << "RE2::Set::Match without Compile";
104 LOG(DFATAL) << "RE2::Set::Match: DFA ran out of cache space";
109 LOG(DFATAL) << "RE2::Set::Match: match but unknown regexp set";
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadImplicit.cpp113 bool SkDQuadImplicit::Match(const SkDQuad& quad1, const SkDQuad& quad2) { function in class:SkDQuadImplicit
/external/chromium_org/tools/valgrind/
H A Dsuppressions.py128 def Match(self, suppression_from_report): member in class:Suppression
410 # Match to fetch the instruction from the report and try to match against
429 regex += '(.*\n)*' # Match anything left in the stack.
558 assert parsed[0].Match(stack.split("\n")), (
562 assert not parsed[0].Match(stack.split("\n")), (
596 """Tests the Suppression.Match() capabilities."""
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cc68 bool SuppressionContext::Match(const char *str, SuppressionType type, function in class:__sanitizer::SuppressionContext
92 // Context must not mutate once Match has been called.
/external/regex-re2/re2/
H A Dset.cc94 bool RE2::Set::Match(const StringPiece& text, vector<int>* v) const { function in class:RE2::Set
96 LOG(DFATAL) << "RE2::Set::Match without Compile";
104 LOG(DFATAL) << "RE2::Set::Match: DFA ran out of cache space";
109 LOG(DFATAL) << "RE2::Set::Match: match but unknown regexp set";
/external/skia/src/pathops/
H A DSkDQuadImplicit.cpp113 bool SkDQuadImplicit::Match(const SkDQuad& quad1, const SkDQuad& quad2) { function in class:SkDQuadImplicit
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs208 public virtual void Match(string s) { method in class:Antlr.Runtime.Lexer
230 public virtual void Match(int c) { method in class:Antlr.Runtime.Lexer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs266 public void Match( string s ) method in class:Antlr.Runtime.SlimLexer
293 public void Match( int c ) method in class:Antlr.Runtime.SlimLexer
/external/chromium/sdch/open-vcdiff/src/
H A Dblockhash.h78 class Match { class in class:open_vcdiff::BlockHash
80 Match() : size_(0), source_offset_(-1), target_offset_(-1) { } function in class:open_vcdiff::BlockHash::Match
110 Match(const Match&); // NOLINT
111 void operator=(const Match&);
238 // point to a valid Match object, and cannot be NULL.
239 // The same Match object can be passed
244 // open_vcdiff::BlockHash::Match best_match;
298 Match* best_match) const;
/external/chromium_org/sdch/open-vcdiff/src/
H A Dblockhash.h78 class Match { class in class:open_vcdiff::BlockHash
80 Match() : size_(0), source_offset_(-1), target_offset_(-1) { } function in class:open_vcdiff::BlockHash::Match
110 Match(const Match&); // NOLINT
111 void operator=(const Match&);
238 // point to a valid Match object, and cannot be NULL.
239 // The same Match object can be passed
244 // open_vcdiff::BlockHash::Match best_match;
298 Match* best_match) const;
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_adapter_re2.cc121 virtual bool Match(const string& input_string, function in class:i18n::phonenumbers::RE2RegExp
/external/chromium_org/v8/src/
H A Darguments.cc37 static bool Match(void* a, void* b) { function in namespace:v8::internal
52 CallbackTable::CallbackTable(): map_(Match, 64) {}
H A Dinterface.cc35 static bool Match(void* key1, void* key2) { function in namespace:v8::internal
93 *map = new ZoneHashMap(Match, ZoneHashMap::kDefaultHashMapCapacity,
/external/chromium_org/v8/test/cctest/
H A Dtest-date.cc64 if (Match(&rules_[i], year, month, day, time_in_day_sec)) {
71 bool Match(Rule* rule, int year, int month, int day, int time_in_day_sec) { function in class:DateCacheMock

Completed in 708 milliseconds

1234