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

  /external/chromium_org/extensions/common/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 87 bool IsMatch(const std::set<StringPattern::ID>& matching_patterns,
222 bool IsMatch(const GURL& url) const;
238 bool IsMatch(const GURL& url) const;
272 bool IsMatch(const std::set<StringPattern::ID>& matching_patterns,
url_matcher.cc 220 bool URLMatcherCondition::IsMatch(
551 bool URLMatcherSchemeFilter::IsMatch(const GURL& url) const {
566 bool URLMatcherPortFilter::IsMatch(const GURL& url) const {
609 bool URLMatcherConditionSet::IsMatch(
614 if (!i->IsMatch(matching_patterns, url))
617 if (scheme_filter_.get() && !scheme_filter_->IsMatch(url))
619 if (port_filter_.get() && !port_filter_->IsMatch(url))
702 if (condition_set_iter->second->IsMatch(matches, url))
  /external/chromium_org/webkit/browser/appcache/
appcache_unittest.cc 626 EXPECT_TRUE(prefix.IsMatch(
628 EXPECT_FALSE(prefix.IsMatch(
634 EXPECT_TRUE(bar_no_star.IsMatch(
636 EXPECT_FALSE(bar_no_star.IsMatch(
642 EXPECT_TRUE(bar_star.IsMatch(
644 EXPECT_TRUE(bar_star.IsMatch(
646 EXPECT_FALSE(bar_star.IsMatch(
652 EXPECT_TRUE(star_bar_star.IsMatch(
654 EXPECT_TRUE(star_bar_star.IsMatch(
656 EXPECT_FALSE(star_bar_star.IsMatch(
    [all...]
appcache.cc 318 if (namespaces[i].IsMatch(url))
appcache_storage_impl.cc     [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/chromium_org/webkit/common/appcache/
appcache_interfaces.cc 87 bool Namespace::IsMatch(const GURL& url) const {
appcache_interfaces.h 108 bool IsMatch(const GURL& url) const;
  /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/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/v8/src/
objects.h     [all...]
objects-inl.h     [all...]
objects.cc     [all...]
  /external/chromium_org/v8/src/
objects.h     [all...]
objects.cc     [all...]
objects-inl.h     [all...]

Completed in 263 milliseconds