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

1 2 3 4 5 6

  /external/clang/include/clang/Analysis/Analyses/
ReachableCode.h 39 class Callback {
42 virtual ~Callback() {}
52 void FindUnreachableCode(AnalysisDeclContext &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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_testlib.cc 33 void Callback(const SuspendedThreadsList &suspended_threads_list,
41 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/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...]
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
Callback.java 18 package org.apache.harmony.javax.security.auth.callback;
21 * Defines an empty base interface for all {@code Callback}s used during
24 public interface Callback {
  /external/webkit/Source/WebCore/platform/android/
PackageNotifier.h 45 typedef void (*Callback)();
46 void setOnResultAvailable(Callback);
58 Callback m_onResultAvailable;
  /packages/apps/Dialer/src/com/android/dialer/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);
  /frameworks/base/core/java/android/webkit/
GeolocationPermissions.java 35 * {@link WebChromeClient#onGeolocationPermissionsShowPrompt(String,GeolocationPermissions.Callback) WebChromeClient.onGeolocationPermissionsShowPrompt()}
46 * A callback interface used by the host application to set the Geolocation
49 public interface Callback {
76 * @param callback a {@link ValueCallback} to receive the result of this
87 public void getOrigins(ValueCallback<Set<String> > callback) {
95 * @param callback a {@link ValueCallback} to receive the result of this
102 public void getAllowed(String origin, ValueCallback<Boolean> callback) {
  /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/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
17 // be accessed from the registered callback. The callback can than use the
150 /// \brief Registers a callback to notify the end of parsing.
169 /// Collects the \c BoundNodes of all callback invocations when matching
223 internal::CollectMatchesCallback Callback;
225 Finder.addMatcher(Matcher, &Callback);
227 return Callback.Nodes;
  /external/guava/guava-tests/test/com/google/common/io/
CheckCloseSupplier.java 33 * call {@code callback.delegateClosed()}.
38 private final Set<Callback> open = Sets.newHashSet();
66 public final class Callback {
72 protected Callback newCallback() {
73 Callback callback = new Callback(); local
74 open.add(callback);
75 return callback;
80 * {@link Callback#delegateClosed} when the close method of the delegate i
    [all...]
  /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.

Completed in 1635 milliseconds

1 2 3 4 5 6