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

  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
retriever.h 36 // Retriever retriever(source, storage);
37 // const scoped_ptr<const Retriever::Callback> retrieved(
39 // retriever.Retrieve("data/CA/AB--fr", *retrieved);
40 class Retriever {
46 Retriever(const Source* source, Storage* storage);
47 ~Retriever();
62 DISALLOW_COPY_AND_ASSIGN(Retriever);
rule_retriever.h 29 class Retriever;
33 // const Retriever* retriever = ...
34 // RuleRetriever rules(retriever);
43 // Takes ownership of |retriever|.
44 explicit RuleRetriever(const Retriever* retriever);
51 scoped_ptr<const Retriever> data_retriever_;
retriever.cc 15 #include "retriever.h"
38 const Retriever::Callback& retrieved,
92 const Retriever::Callback& retrieved_;
104 Retriever::Retriever(const Source* source, Storage* storage)
110 Retriever::~Retriever() {}
112 void Retriever::Retrieve(const std::string& key,
ondemand_supply_task.h 26 #include "retriever.h"
50 void Retrieve(const Retriever& retriever);
62 const scoped_ptr<const Retriever::Callback> retrieved_;
rule_retriever.cc 25 #include "retriever.h"
37 const Retriever& data_retriever)
60 const scoped_ptr<const Retriever::Callback> data_retrieved_;
67 RuleRetriever::RuleRetriever(const Retriever* retriever)
68 : data_retriever_(retriever) {
ondemand_supplier.cc 25 #include "retriever.h"
32 : retriever_(new Retriever(source, storage)) {
ondemand_supply_task.cc 31 #include "retriever.h"
60 void OndemandSupplyTask::Retrieve(const Retriever& retriever) {
67 // retriever.Retrieve() no attributes of this object can be accessed (as the
76 retriever.Retrieve(key, *retrieved_);
preload_supplier.cc 37 #include "retriever.h"
72 const Retriever& retriever,
90 retriever.Retrieve(key, *retrieved_);
259 const scoped_ptr<const Retriever::Callback> retrieved_;
275 : retriever_(new Retriever(source, storage)),
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
ondemand_supplier.h 30 class Retriever;
35 // An implementation of the Supplier interface that owns a Retriever object,
57 const scoped_ptr<const Retriever> retriever_;
preload_supplier.h 33 class Retriever;
38 // An implementation of the Supplier interface that owns a Retriever object,
91 const scoped_ptr<const Retriever> retriever_;
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
retriever_test.cc 15 #include "retriever.h"
40 using i18n::addressinput::Retriever;
58 // Tests for Retriever object.
68 Retriever retriever_;
72 const scoped_ptr<const Retriever::Callback> data_ready_;
117 Retriever bad_retriever(new MockSource, new NullStorage);
153 Retriever resilient_retriever(new MockSource, stale_storage);
166 Retriever resilient_retriever(new TestdataSource(false), stale_storage);
rule_retriever_test.cc 26 #include "retriever.h"
34 using i18n::addressinput::Retriever;
45 new Retriever(new TestdataSource(false), new NullStorage)),
ondemand_supply_task_test.cc 33 #include "retriever.h"
43 using i18n::addressinput::Retriever;
57 retriever_(new Retriever(source_, new NullStorage)),
90 const scoped_ptr<Retriever> retriever_;
  /external/chromium_org/chrome/tools/
webforms_aggregator_tests.py 34 """Verify the retriever can download a page."""
35 r = webforms_aggregator.Retriever(self.url1, self.domain, self.cookie_file)
37 msg='Retriever could not download "%s"' % self.url1)
webforms_aggregator.py 68 class Retriever(object):
73 Each Retriever object creates a curl object. This object is added to the curl
80 """Initializes a Retriever object.
316 Creates, uses and destroys Retriever objects. Creates a cookie temp file
319 each Retriever object. Use Run() to crawl the site.
399 Creates many Retriever objects and adds them to a list. The constant
424 curl_multi_object: Each Retriever object has a curl object which is
460 r = Retriever(url, self._domain, self._cookie_file)
495 def _LogRegPageFound(self, retriever):
499 retriever: The object that has retrieved the page
    [all...]

Completed in 292 milliseconds