HomeSort by relevance Sort by last modified time
    Searched defs:Callback (Results 1 - 25 of 232) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/include/clang/Analysis/Analyses/
ReachableCode.h 39 class Callback {
42 virtual ~Callback() {}
52 void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PostAttachCallbacks.h 38 typedef void (*Callback)(Node*);
39 static void queueCallback(Callback, Node*);
  /external/javasqlite/src/main/java/SQLite/
Callback.java 4 * Callback interface for SQLite's query results.
9 * class TableFmt implements SQLite.Callback {
36 public interface Callback {
  /libcore/luni/src/main/java/javax/security/auth/callback/
Callback.java 18 package javax.security.auth.callback;
21 * Defines an empty base interface for all {@code Callback}s used during
24 public interface Callback {
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
DecodeAggregator.java 23 public interface Callback extends ContiguousFIFOAggregator.Callback<Request> {
  /external/chromium/base/
callback.h 2 // pump.py callback.h.pump
18 // New, super-duper, unified Callback system. This will eventually replace
24 // The templated Callback class is a generalized function object. Together
36 // The Callback objects themselves should be passed by const-reference, and
48 // base::Callback<int(void)> func_cb = base::Bind(&Return5);
62 // base::Callback<int(void)> ref_cb = base::Bind(&Ref::Foo, ref.get());
70 // * WARNING: You must be sure the referee outlives the callback!
81 // base::Callback<int(void)> base::no_ref_cb =
92 // base::Callback<int(void)> bound_copy_cb = base::Bind(&Identity, value);
93 // base::Callback<int(void)> bound_ref_cb
    [all...]
  /external/chromium/chrome/browser/extensions/
file_reader.h 11 #include "base/callback.h"
24 typedef Callback2<bool, const std::string&>::Type Callback;
26 FileReader(const ExtensionResource& resource, Callback* callback);
29 // the callback will be notified of the results.
41 Callback* callback_;
  /external/chromium_org/chrome/browser/extensions/
webstore_inline_installer.h 26 // Clients will be notified of success or failure via the |callback| argument
32 typedef WebstoreStandaloneInstaller::Callback Callback;
37 const Callback& callback);
webstore_startup_installer.h 22 // Clients will be notified of success or failure via the |callback| argument
27 typedef WebstoreStandaloneInstaller::Callback Callback;
32 const Callback& callback);
  /external/chromium_org/chrome/browser/ui/app_list/search/webstore/
webstore_installer.h 22 typedef WebstoreStandaloneInstaller::Callback Callback;
27 const Callback& callback);
  /external/chromium_org/content/public/browser/
devtools_manager.h 10 #include "base/callback.h"
57 typedef base::Callback<void(DevToolsAgentHost*, bool attached)> Callback;
59 virtual void AddAgentStateCallback(const Callback& callback) = 0;
60 virtual void RemoveAgentStateCallback(const Callback& callback) = 0;
  /external/chromium_org/extensions/browser/
file_reader.h 10 #include "base/callback.h"
25 typedef base::Callback<void(bool, const std::string&)> Callback;
28 const Callback& callback);
31 // the callback will be notified of the results.
42 Callback callback_;
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
downloader.h 21 #include <libaddressinput/callback.h>
32 // const Callback& downloaded) const {
40 typedef i18n::addressinput::Callback<std::string, std::string> Callback;
44 // Downloads |url| and invokes the |downloaded| callback.
46 const Callback& downloaded) const = 0;
storage.h 21 #include <libaddressinput/callback.h>
36 // const Callback& data_ready) const {
44 typedef i18n::addressinput::Callback<std::string, std::string> Callback;
51 // Retrieves the data for |key| and invokes the |data_ready| callback.
53 const Callback& data_ready) const = 0;
callback.h 34 // typedef Callback<MyType, MyDataType> MyCallback;
37 // scoped_ptr<MyCallback> callback(BuildCallback(
42 // (*callback)(success, key, data);
52 class Callback {
54 virtual ~Callback() {}
64 class CallbackImpl : public Callback<Key, Data> {
90 // Returns a callback to |observer->observe_event| method. The caller owns the
93 Callback<Key, Data>* BuildCallback(
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
rule_retriever.h 20 #include <libaddressinput/callback.h>
35 // scoped_ptr<RuleRetriever::Callback> rule_ready(BuildCallback(
40 typedef i18n::addressinput::Callback<std::string, Rule> Callback;
46 // Retrieves the rule for |key| and invokes the |rule_ready| callback.
47 void RetrieveRule(const std::string& key, const Callback& rule_ready) const;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_testlib.cc 34 void Callback(const SuspendedThreadsList &suspended_threads_list,
42 StopTheWorld(Callback, NULL);
  /external/chromium/chrome/common/
worker_thread_ticker.h 22 // This callback interface to be implemented by clients of this
24 class Callback {
30 virtual ~Callback() {}
39 // Registers a callback handler interface
42 bool RegisterTickHandler(Callback *tick_handler);
44 // Unregisters a callback handler interface
46 bool UnregisterTickHandler(Callback *tick_handler);
73 // A list type that holds all registered callback interfaces
74 typedef std::vector<Callback*> TickHandlerListType;
85 // A list that holds all registered callback interface
    [all...]
  /external/chromium_org/chrome/common/
worker_thread_ticker.h 21 // This callback interface to be implemented by clients of this
23 class Callback {
29 virtual ~Callback() {}
38 // Registers a callback handler interface
41 bool RegisterTickHandler(Callback *tick_handler);
43 // Unregisters a callback handler interface
45 bool UnregisterTickHandler(Callback *tick_handler);
72 // A list type that holds all registered callback interfaces
73 typedef std::vector<Callback*> TickHandlerListType;
84 // A list that holds all registered callback interface
    [all...]
  /external/chromium_org/content/child/
quota_dispatcher.h 38 class Callback {
40 virtual ~Callback() {}
63 Callback* callback);
68 Callback* callback);
70 // Creates a new Callback instance for WebStorageQuotaCallbacks.
71 static Callback* CreateWebStorageQuotaCallbacksWrapper(
84 IDMap<Callback, IDMapOwnPointer> pending_quota_callbacks_;
  /external/chromium/chrome/browser/chromeos/login/
ownership_status_checker.h 10 #include "base/callback.h"
20 // a checker, passing in the callback. Once the check is done, the callback will
21 // be invoked with the result. In order to cancel the callback, just destroy the
25 // Callback function type. The status code is guaranteed to be different from
27 typedef Callback1<OwnershipService::Status>::Type Callback;
29 explicit OwnershipStatusChecker(Callback* callback);
36 explicit Core(Callback* callback);
    [all...]
  /external/chromium/webkit/glue/
alt_error_page_resource_fetcher.h 8 #include "base/callback.h"
29 const std::string&>::Type Callback;
34 Callback* callback);
48 scoped_ptr<Callback> callback_;
  /external/chromium_org/chrome/browser/apps/
ephemeral_app_launcher.h 33 typedef WebstoreStandaloneInstaller::Callback Callback;
40 const Callback& callback);
56 const Callback& callback);
59 const Callback& callback);
  /external/chromium_org/chrome/browser/chromeos/file_manager/
app_installer.h 25 typedef extensions::WebstoreStandaloneInstaller::Callback Callback;
30 const Callback& callback);
57 Callback callback_;
  /external/chromium_org/chrome/browser/devtools/
devtools_targets_ui.h 11 #include "base/callback.h"
24 typedef base::Callback<void(const std::string&,
25 scoped_ptr<base::ListValue>)> Callback;
27 DevToolsTargetsUIHandler(const std::string& source_id, Callback callback);
33 Callback callback);
36 Callback callback);
52 Callback callback_
    [all...]

Completed in 610 milliseconds

1 2 3 4 5 6 7 8 910