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

1 2 3 4

  /external/clang/include/clang/Analysis/Analyses/
ReachableCode.h 39 class Callback {
41 virtual ~Callback() {}
51 void FindUnreachableCode(AnalysisContext &AC, Callback &CB);
  /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 {
  /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_;
extension_accessibility_api.h 12 #include "base/callback.h"
43 typedef Callback0::Type Callback;
44 void AddOnEnabledListener(Callback* callback);
45 void AddOnDisabledListener(Callback* callback);
76 std::vector<Callback*> on_enabled_listeners_;
77 std::vector<Callback*> on_disabled_listeners_;
  /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/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...]
signed_settings_helper.h 21 // Helper to serialize signed settings ops, provide unified callback interface,
25 class Callback {
27 // Callback of CheckWhitelistOp. |success| indicates whether the op succeeds
33 // Callback of WhitelistOp that adds |email| to the whitelist.
37 // Callback of WhitelistOp that removes |email| to the whitelist.
41 // Callback of StorePropertyOp.
47 // Callback of RetrievePropertyOp.
53 // Callback of StorePolicyOp.
57 // Callback of RetrievePolicyOp.
68 Callback* callback) = 0
    [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_;
image_resource_fetcher.h 9 #include "base/callback.h"
17 // downloading is done the supplied callback is notified. ImageResourceFetcher
21 typedef Callback2<ImageResourceFetcher*, const SkBitmap&>::Type Callback;
28 Callback* callback);
39 // ResourceFetcher::Callback. Decodes the image and invokes callback_.
43 scoped_ptr<Callback> callback_;
resource_fetcher.h 18 #include "base/callback.h"
42 const std::string&>::Type Callback;
47 WebKit::WebURLRequest::TargetType target_type, Callback* callback);
50 // Stop the request and don't call the callback.
97 // Callback when we're done
98 scoped_ptr<Callback> callback_;
115 Callback* callback);
119 // Callback for timer that limits how long we wait for the alternate erro
    [all...]
cpp_bound_class.h 26 #include "base/callback.h"
71 typedef Callback2<const CppArgumentList&, CppVariant*>::Type Callback;
79 // Bind the Javascript method called |name| to the C++ callback |callback|.
80 void BindCallback(const std::string& name, Callback* callback);
88 Callback* callback = local
91 BindCallback(name, callback);
94 // Bind Javascript property |name| to the C++ getter callback |callback|
103 GetterCallback* callback = local
137 Callback* callback = local
    [all...]
  /external/webkit/Source/WebCore/platform/android/
PackageNotifier.h 45 typedef void (*Callback)();
46 void setOnResultAvailable(Callback);
58 Callback m_onResultAvailable;
  /packages/apps/Contacts/src/com/android/contacts/util/
EmptyLoader.java 40 public static class Callback implements LoaderCallbacks<Object> {
43 public Callback(Context context) {
  /external/chromium/base/win/
event_trace_provider.cc 59 ULONG EtwTraceProvider::Callback(WMIDPREQUESTCODE request, void* buffer) {
75 return provider->Callback(request, buffer);
  /external/chromium/chrome/browser/download/
download_request_limiter.h 29 // Invoking CanDownloadOnIOThread notifies the callback and may update the
57 // The callback from CanDownloadOnIOThread. This is invoked on the io thread.
58 class Callback {
64 virtual ~Callback() {}
106 // callback.
108 DownloadRequestLimiter::Callback* callback);
156 std::vector<DownloadRequestLimiter::Callback*> callbacks_;
173 // Updates the state of the page as necessary and notifies the callback.
174 // WARNING: both this call and the callback are invoked on the io thread
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
CppBoundClass.h 76 // Callback class for "void function(CppVariant*)"
107 // Callback for "void function(const CppArguemntList&, CppVariant*)"
108 class Callback {
110 virtual ~Callback() {}
114 // Callback for "void T::method(const CppArguemntList&, CppVariant*)"
115 template <class T> class MemberCallback : public Callback {
132 // Callback class for "void T::method(CppVariant*)"
148 void bindCallback(const std::string&, Callback*);
156 Callback* callback = new MemberCallback<T>(static_cast<T*>(this), method) local
170 GetterCallback* callback = new MemberGetterCallback<T>(static_cast<T*>(this), method); local
204 Callback* callback = new MemberCallback<T>(static_cast<T*>(this), method); local
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store_unittest.cc 147 // Counts the number of times Callback() has been run.
152 void Callback() {
165 // Test that we can get a completion callback after a Flush().
169 // Callback shouldn't be invoked until we call Flush().
172 store_->Flush(NewRunnableMethod(counter.get(), &CallbackCounter::Callback));
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.h 144 // The callback type used by ForEachMatchingFormField().
145 typedef Callback3<HTMLFormControlElement*, const webkit_glue::FormField*, bool>::Type Callback;
154 // and meets the |requirements|, |callback| is called with the actual
157 // REQUIRE_EMPTY. This method owns |callback|.
158 void ForEachMatchingFormField(FormElement* form, Node* node, RequirementsMask requirements, const webkit_glue::FormData& data, Callback* callback);
160 // A ForEachMatchingFormField() callback that sets |field|'s value using the
165 // A ForEachMatchingFormField() callback that sets |field|'s placeholder value
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuPresenter.java 32 public interface Callback {
46 * @return true if the Callback will handle presenting the submenu, false if
80 * Set a callback object that will be notified of menu events
82 * @param cb Callback that will be notified of future events
84 public void setCallback(Callback cb);
88 * has been selected. An active Callback should be notified, and
99 * of the menu indicated as necessary and notify a registered callback.
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
LoadScreennailTask.java 34 * Callback for the completed asynchronous task.
36 public interface Callback {
45 private final Callback callback; field in class:LoadScreennailTask
47 public LoadScreennailTask(Context context, Callback callback) {
49 this.callback = callback;
70 callback.onComplete(result);
  /external/chromium/chrome/browser/
browsing_data_database_helper_browsertest.cc 66 void Callback(const std::vector<BrowsingDataDatabaseHelper::DatabaseInfo>&
85 NewCallback(&stop_test_on_callback, &StopTestOnCallback::Callback));
86 // Blocks until StopTestOnCallback::Callback is notified.
105 TestCompletionCallback callback; local
107 NewCallback(&callback, &TestCompletionCallback::callback));
110 callback.result();
131 TestCompletionCallback callback; local
133 NewCallback(&callback, &TestCompletionCallback::callback));
    [all...]
browsing_data_local_storage_helper_browsertest.cc 8 #include "base/callback.h"
73 void Callback(
108 NewCallback(&stop_test_on_callback, &StopTestOnCallback::Callback));
109 // Blocks until StopTestOnCallback::Callback is notified.
151 TestCompletionCallback callback; local
153 NewCallback(&callback, &TestCompletionCallback::callback));
156 callback.result();
173 TestCompletionCallback callback; local
175 NewCallback(&callback, &TestCompletionCallback::callback))
    [all...]
  /external/chromium/chrome/browser/policy/
device_policy_cache.cc 29 // through a callback.
30 class StorePolicyOperation : public chromeos::SignedSettingsHelper::Callback,
33 typedef Callback1<chromeos::SignedSettings::ReturnCode>::Type Callback;
37 Callback* callback)
40 callback_(callback) {
90 scoped_ptr<Callback> callback_;

Completed in 759 milliseconds

1 2 3 4