HomeSort by relevance Sort by last modified time
    Searched refs:IsMatch (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
LiveNodeList.cpp 30 class IsMatch {
32 IsMatch(const LiveNodeList& list)
69 return ElementTraversal::firstWithin(rootNode(), IsMatch(*this));
74 return ElementTraversal::lastWithin(rootNode(), IsMatch(*this));
79 return traverseMatchingElementsForwardToOffset(currentElement, &rootNode(), offset, currentOffset, IsMatch(*this));
84 return traverseMatchingElementsBackwardToOffset(currentElement, &rootNode(), offset, currentOffset, IsMatch(*this));
  /external/chromium_org/components/url_matcher/
url_matcher_unittest.cc 42 EXPECT_TRUE(filter1.IsMatch(matching_url));
43 EXPECT_FALSE(filter1.IsMatch(non_matching_url));
44 EXPECT_TRUE(filter2.IsMatch(matching_url));
45 EXPECT_TRUE(filter2.IsMatch(non_matching_url));
53 EXPECT_TRUE(filter.IsMatch(GURL("http://www.example.com")));
54 EXPECT_TRUE(filter.IsMatch(GURL("http://www.example.com:80")));
55 EXPECT_TRUE(filter.IsMatch(GURL("http://www.example.com:81")));
56 EXPECT_TRUE(filter.IsMatch(GURL("http://www.example.com:90")));
57 EXPECT_TRUE(filter.IsMatch(GURL("http://www.example.com:8080")));
58 EXPECT_FALSE(filter.IsMatch(GURL("http://www.example.com:79")))
    [all...]
url_matcher.h 88 bool IsMatch(const std::set<StringPattern::ID>& matching_patterns,
255 bool IsMatch(const std::string& canonical_url_query) const;
275 bool IsMatch(const GURL& url) const;
291 bool IsMatch(const GURL& url) const;
338 bool IsMatch(const std::set<StringPattern::ID>& matching_patterns,
341 bool IsMatch(const std::set<StringPattern::ID>& matching_patterns,
url_matcher.cc 220 bool URLMatcherCondition::IsMatch(
623 bool URLQueryElementMatcherCondition::IsMatch(
677 bool URLMatcherSchemeFilter::IsMatch(const GURL& url) const {
692 bool URLMatcherPortFilter::IsMatch(const GURL& url) const {
747 bool URLMatcherConditionSet::IsMatch(
750 return IsMatch(matching_patterns, url, std::string());
753 bool URLMatcherConditionSet::IsMatch(
759 if (!i->IsMatch(matching_patterns, url))
762 if (scheme_filter_.get() && !scheme_filter_->IsMatch(url))
764 if (port_filter_.get() && !port_filter_->IsMatch(url)
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_unittest.cc 632 EXPECT_TRUE(prefix.IsMatch(
634 EXPECT_FALSE(prefix.IsMatch(
640 EXPECT_TRUE(bar_no_star.IsMatch(
642 EXPECT_FALSE(bar_no_star.IsMatch(
648 EXPECT_TRUE(bar_star.IsMatch(
650 EXPECT_TRUE(bar_star.IsMatch(
652 EXPECT_FALSE(bar_star.IsMatch(
658 EXPECT_TRUE(star_bar_star.IsMatch(
660 EXPECT_TRUE(star_bar_star.IsMatch(
662 EXPECT_FALSE(star_bar_star.IsMatch(
    [all...]
appcache.cc 321 if (namespaces[i].IsMatch(url))
appcache_storage_impl.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.cpp 281 class IsMatch {
283 IsMatch(const HTMLCollectionType& list)
299 static inline IsMatch<HTMLCollectionType> makeIsMatch(const HTMLCollectionType& list) { return IsMatch<HTMLCollectionType>(list); }
367 IsMatch<HTMLCollection> isMatch(*this);
368 for (Element* next = ElementTraversal::nextSibling(currentElement, isMatch); next; next = ElementTraversal::nextSibling(*next, isMatch)) {
383 IsMatch<HTMLCollection> isMatch(*this)
    [all...]
  /external/chromium_org/third_party/re2/re2/
prog.cc 171 static bool IsMatch(Prog*, Prog::Inst*);
224 IsMatch(this, k)) {
228 if (IsMatch(this, j) &&
238 static bool IsMatch(Prog* prog, Prog::Inst* ip) {
242 LOG(DFATAL) << "Unexpected opcode in IsMatch: " << ip->opcode();
dfa.cc 99 inline bool IsMatch() const { return flag_ & kFlagMatch; }
230 // sets *ismatch to true.
233 int c, uint flag, bool* ismatch,
1038 bool ismatch = false; local
    [all...]
  /external/regex-re2/re2/
prog.cc 171 static bool IsMatch(Prog*, Prog::Inst*);
224 IsMatch(this, k)) {
228 if (IsMatch(this, j) &&
238 static bool IsMatch(Prog* prog, Prog::Inst* ip) {
242 LOG(DFATAL) << "Unexpected opcode in IsMatch: " << ip->opcode();
dfa.cc 97 inline bool IsMatch() const { return flag_ & kFlagMatch; }
228 // sets *ismatch to true.
231 int c, uint flag, bool* ismatch,
1036 bool ismatch = false; local
    [all...]
  /external/chromium_org/net/base/registry_controlled_domains/
registry_controlled_domain.cc 114 bool IsMatch(const unsigned char* offset, const unsigned char* end,
158 if (!IsMatch(offset, end, key))
170 if (!IsMatch(offset, end, key))
  /external/chromium_org/content/common/
appcache_interfaces.cc 102 bool AppCacheNamespace::IsMatch(const GURL& url) const {
appcache_interfaces.h 103 bool IsMatch(const GURL& url) const;
  /external/chromium_org/third_party/lzma_sdk/
LzmaDec.c 94 #define IsMatch 0
95 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
160 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
502 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaDec.c 95 #define IsMatch 0
96 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
161 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
503 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /external/lzma/C/
LzmaDec.c 94 #define IsMatch 0
95 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
160 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
502 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /external/chromium_org/v8/src/
ast-value-factory.cc 59 virtual bool IsMatch(Object* other) OVERRIDE {
objects.h     [all...]
objects-inl.h 530 virtual bool IsMatch(Object* string) OVERRIDE {
560 virtual bool IsMatch(Object* string) OVERRIDE;
576 virtual bool IsMatch(Object* string) OVERRIDE {
590 virtual bool IsMatch(Object* string) OVERRIDE {
    [all...]
serialize.cc 723 virtual bool IsMatch(Object* string) {
    [all...]
objects.cc     [all...]

Completed in 330 milliseconds