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

  /external/chromium_org/chrome/browser/extensions/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 88 EXPECT_TRUE(result->IsFulfilled(request_data));
95 // Make sure IsFulfilled does not fail because of URL matching.
99 EXPECT_FALSE(result->IsFulfilled(request_data));
139 EXPECT_TRUE(result->IsFulfilled(request_data));
209 condition_no_url_false->IsFulfilled(WebRequestDataWithMatchIds(&data)));
213 condition_no_url_true->IsFulfilled(WebRequestDataWithMatchIds(&data)));
218 EXPECT_TRUE(condition_empty->IsFulfilled(WebRequestDataWithMatchIds(&data)));
268 EXPECT_TRUE(result->IsFulfilled(*(request_data.url_match_ids.begin()),
277 EXPECT_TRUE(result->IsFulfilled(*(request_data.url_match_ids.begin()),
287 EXPECT_FALSE(result->IsFulfilled(-1, request_data))
    [all...]
webrequest_condition_attribute_unittest.cc 96 EXPECT_TRUE(attribute->IsFulfilled(WebRequestData(&url_request_ok,
103 EXPECT_FALSE(attribute->IsFulfilled(WebRequestData(&url_request_fail,
137 EXPECT_FALSE(attribute_include->IsFulfilled(
140 EXPECT_TRUE(attribute_include->IsFulfilled(
150 EXPECT_FALSE(attribute_exclude->IsFulfilled(
161 EXPECT_FALSE(attribute_unincluded->IsFulfilled(
170 EXPECT_TRUE(attribute_unexcluded->IsFulfilled(
217 EXPECT_FALSE(third_party_attribute->IsFulfilled(WebRequestData(&url_request,
219 EXPECT_TRUE(first_party_attribute->IsFulfilled(WebRequestData(&url_request,
223 EXPECT_TRUE(third_party_attribute->IsFulfilled(WebRequestData(&url_request
    [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 174 bool WebRequestConditionAttributeResourceType::IsFulfilled(
252 bool WebRequestConditionAttributeContentType::IsFulfilled(
602 bool WebRequestConditionAttributeRequestHeaders::IsFulfilled(
672 bool WebRequestConditionAttributeResponseHeaders::IsFulfilled(
748 bool WebRequestConditionAttributeThirdParty::IsFulfilled(
851 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 111 EXPECT_TRUE(result->IsFulfilled(match_data));
115 EXPECT_FALSE(result->IsFulfilled(match_data));
content_condition.h 72 bool IsFulfilled(const RendererContentMatchData& renderer_data) const;
content_condition.cc 53 bool ContentCondition::IsFulfilled(
content_rules_registry.cc 132 if (rule->conditions().IsFulfilled(*url_match, renderer_data))
  /external/chromium_org/chrome/browser/extensions/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 53 // // |match_data| passed through from DeclarativeConditionSet::IsFulfilled.
54 // bool IsFulfilled(const ConditionT::MatchData& match_data);
80 // IsFulfilled(|match_data|). If there is no such condition, then false is
83 bool IsFulfilled(url_matcher::URLMatcherConditionSet::ID url_match_trigger,
262 bool DeclarativeConditionSet<ConditionT>::IsFulfilled(
271 if ((*it)->IsFulfilled(match_data))
280 triggered->second->IsFulfilled(match_data));

Completed in 939 milliseconds