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

  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_condition_attribute.h 62 virtual bool IsFulfilled(
100 virtual bool IsFulfilled(
130 virtual bool IsFulfilled(
150 // flag. If that flag is set to true, then IsFulfilled() returns true iff
151 // |header_matcher_| matches at least one header. Otherwise IsFulfilled()
165 virtual bool IsFulfilled(
184 // flag. If that flag is set to true, then IsFulfilled() returns true iff
185 // |header_matcher_| matches at least one header. Otherwise IsFulfilled()
199 virtual bool IsFulfilled(
229 virtual bool IsFulfilled(
    [all...]
webrequest_condition_unittest.cc 97 EXPECT_TRUE(result->IsFulfilled(request_data));
104 // Make sure IsFulfilled does not fail because of URL matching.
114 EXPECT_FALSE(result->IsFulfilled(request_data));
160 EXPECT_TRUE(result->IsFulfilled(request_data));
230 condition_no_url_false->IsFulfilled(WebRequestDataWithMatchIds(&data)));
234 condition_no_url_true->IsFulfilled(WebRequestDataWithMatchIds(&data)));
239 EXPECT_TRUE(condition_empty->IsFulfilled(WebRequestDataWithMatchIds(&data)));
289 EXPECT_TRUE(result->IsFulfilled(*(request_data.url_match_ids.begin()),
298 EXPECT_TRUE(result->IsFulfilled(*(request_data.url_match_ids.begin()),
308 EXPECT_FALSE(result->IsFulfilled(-1, request_data))
    [all...]
webrequest_condition_attribute_unittest.cc 110 EXPECT_TRUE(attribute->IsFulfilled(WebRequestData(url_request_ok.get(),
123 EXPECT_FALSE(attribute->IsFulfilled(WebRequestData(url_request_fail.get(),
156 EXPECT_FALSE(attribute_include->IsFulfilled(
159 EXPECT_TRUE(attribute_include->IsFulfilled(
169 EXPECT_FALSE(attribute_exclude->IsFulfilled(
180 EXPECT_FALSE(attribute_unincluded->IsFulfilled(
189 EXPECT_TRUE(attribute_unexcluded->IsFulfilled(
236 EXPECT_FALSE(third_party_attribute->IsFulfilled(
238 EXPECT_TRUE(first_party_attribute->IsFulfilled(
242 EXPECT_TRUE(third_party_attribute->IsFulfilled(
    [all...]
webrequest_condition.h 88 bool IsFulfilled(const MatchData& request_data) const;
webrequest_condition.cc 93 bool WebRequestCondition::IsFulfilled(
113 if (!(*i)->IsFulfilled(*(request_data.data)))
webrequest_condition_attribute.cc 175 bool WebRequestConditionAttributeResourceType::IsFulfilled(
253 bool WebRequestConditionAttributeContentType::IsFulfilled(
604 bool WebRequestConditionAttributeRequestHeaders::IsFulfilled(
674 bool WebRequestConditionAttributeResponseHeaders::IsFulfilled(
750 bool WebRequestConditionAttributeThirdParty::IsFulfilled(
854 bool WebRequestConditionAttributeStages::IsFulfilled(
webrequest_rules_registry.cc 67 if ((*it)->conditions().IsFulfilled(-1, request_data))
406 rule_trigger->second->conditions().IsFulfilled(*url_match,
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_condition_unittest.cc 112 EXPECT_TRUE(result->IsFulfilled(match_data));
116 EXPECT_FALSE(result->IsFulfilled(match_data));
content_condition.h 71 bool IsFulfilled(const RendererContentMatchData& renderer_data) const;
content_condition.cc 53 bool ContentCondition::IsFulfilled(
chrome_content_rules_registry.cc 141 if (rule->conditions().IsFulfilled(*url_match, renderer_data))
  /external/chromium_org/extensions/browser/api/declarative/
declarative_rule_unittest.cc 126 bool IsFulfilled(const MatchData& match_data) const {
179 EXPECT_FALSE(result->IsFulfilled(1, match_data))
182 EXPECT_FALSE(result->IsFulfilled(-1, match_data))
186 EXPECT_TRUE(result->IsFulfilled(-1, match_data))
192 EXPECT_TRUE(result->IsFulfilled(1, match_data))
195 EXPECT_FALSE(result->IsFulfilled(1, match_data))
199 EXPECT_TRUE(result->IsFulfilled(2, match_data))
declarative_rule.h 57 // // |match_data| passed through from DeclarativeConditionSet::IsFulfilled.
58 // bool IsFulfilled(const ConditionT::MatchData& match_data);
84 // IsFulfilled(|match_data|). If there is no such condition, then false is
87 bool IsFulfilled(url_matcher::URLMatcherConditionSet::ID url_match_trigger,
275 bool DeclarativeConditionSet<ConditionT>::IsFulfilled(
284 if ((*it)->IsFulfilled(match_data))
293 triggered->second->IsFulfilled(match_data));

Completed in 831 milliseconds