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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/
callback_forward.h 11 class Callback;
13 typedef Callback<void(void)> Closure;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Callback.java 19 * All callback interfaces used by {@link Enhancer} extend this interface.
27 public interface Callback
Factory.java 30 * The class of this object must have been created using a single Callback type.
32 * @param callback the new interceptor to use
35 Object newInstance(Callback callback);
42 Object newInstance(Callback[] callbacks);
52 Object newInstance(Class[] types, Object[] args, Callback[] callbacks);
55 * Return the <code>Callback</code> implementation at the specified index.
56 * @param index the callback index
57 * @return the callback implementation
59 Callback getCallback(int index)
    [all...]
  /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 {
UnsupportedCallbackException.java 18 package javax.security.auth.callback;
22 * Callback}.
28 private Callback callback; field in class:UnsupportedCallbackException
32 * unsupported {@code Callback}, but no error message.
34 * @param callback
35 * the {@code Callback}
37 public UnsupportedCallbackException(Callback callback) {
38 this.callback = callback
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeAggregator.java 21 public interface Callback extends ContiguousFIFOAggregator.Callback<RequestKey> {
  /external/chromium_org/components/favicon_base/
favicon_callback.h 10 #include "base/callback.h"
17 // Callback for functions that can be used to return a |gfx::Image| and the
19 typedef base::Callback<void(const FaviconImageResult&)> FaviconImageCallback;
21 // Callback for functions returning raw data for a favicon. In
23 typedef base::Callback<void(const FaviconRawBitmapResult&)>
26 // Callback for functions returning raw data for a favicon in multiple
29 typedef base::Callback<void(const std::vector<FaviconRawBitmapResult>&)>
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HotspotController.java 20 void addCallback(Callback callback);
21 void removeCallback(Callback callback);
27 public interface Callback {
KeyguardMonitor.java 23 private final ArrayList<Callback> mCallbacks = new ArrayList<Callback>();
28 public void addCallback(Callback callback) {
29 mCallbacks.add(callback);
32 public void removeCallback(Callback callback) {
33 mCallbacks.remove(callback);
48 for (Callback callback : mCallbacks)
    [all...]
  /external/chromium_org/net/base/
completion_callback.h 8 #include "base/callback.h"
13 // A callback specialization that takes a single int parameter. Usually this is
15 typedef base::Callback<void(int)> CompletionCallback;
17 // 64bit version of callback specialization that takes a single int64 parameter.
19 typedef base::Callback<void(int64)> Int64CompletionCallback;
rand_callback.h 8 #include "base/callback.h"
12 typedef base::Callback<int(int, int)> RandIntCallback;
  /external/chromium_org/chrome/browser/chromeos/profiles/
multiprofiles_intro_dialog.h 8 #include "base/callback.h"
13 void ShowMultiprofilesIntroDialog(const base::Callback<void(bool)> on_accept);
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
delayed_analysis_callback.h 13 // A callback used by external components to register a process-wide analysis
14 // step. The callback will be run after some delay following process launch in
15 // the blocking pool. The argument is a callback by which the consumer can add
17 typedef base::Callback<void(const AddIncidentCallback&)>
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_warning_dialog.h 14 const base::Callback<void(bool)>& on_accept);
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_print_settings_manager.h 19 typedef base::Callback<void(Result)> Callback;
21 // The default print settings are obtained asynchronously and |callback|
22 // is called with the the print settings when they are available. |callback|
25 virtual void GetDefaultPrintSettings(Callback callback) = 0;
39 PepperPrintSettingsManager::Callback callback) OVERRIDE;
  /external/chromium_org/device/serial/
async_waiter.h 8 #include "base/callback.h"
15 // A class that waits until a handle is ready and calls |callback| with the
17 // cancelled and the callback will not be called.
20 typedef base::Callback<void(MojoResult)> Callback;
24 const Callback& callback);
33 const Callback callback_;
  /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 {
UnsupportedCallbackException.java 18 package org.apache.harmony.javax.security.auth.callback;
22 * Callback}.
28 private Callback callback; field in class:UnsupportedCallbackException
32 * unsupported {@code Callback}, but no error message.
34 * @param callback
35 * the {@code Callback}
37 public UnsupportedCallbackException(Callback callback) {
39 this.callback = callback
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_callbacks.h 21 typedef base::Callback<void(SyncStatusCode status)>
24 typedef base::Callback<
28 typedef base::Callback<void(SyncStatusCode status,
32 typedef base::Callback<
36 typedef base::Callback<void(SyncStatusCode status,
  /external/chromium_org/chromeos/dbus/
dbus_method_call_status.h 10 #include "base/callback.h"
27 // A callback to handle responses of methods without results.
28 typedef base::Callback<void(
31 // A callback to handle responses of methods returning a bool value.
32 typedef base::Callback<void(DBusMethodCallStatus call_status,
35 // A callback to handle responses of methods returning a string value.
36 typedef base::Callback<void(
40 // A callback to handle responses of methods returning a boolean value.
41 typedef base::Callback<void(
45 // A callback to handle responses of methods returning a ObjectPath value
    [all...]
  /external/chromium_org/google_apis/drive/
drive_common_callbacks.h 5 // This file contains callback types used for communicating with the Drive
20 // Callback used for getting ResourceList.
21 typedef base::Callback<void(GDataErrorCode error,
25 // Callback used for getting ResourceEntry.
26 typedef base::Callback<void(GDataErrorCode error,
30 // Callback used for getting AboutResource.
31 typedef base::Callback<void(GDataErrorCode error,
35 // Callback used for getting ShareUrl.
36 typedef base::Callback<void(GDataErrorCode error,
39 // Callback used for getting AppList
    [all...]
  /external/chromium_org/chrome/browser/chromeos/net/
delay_network_call.h 13 class Callback;
15 typedef Callback<void(void)> Closure;
26 // Delay callback until the network is connected or while on a captive portal.
27 void DelayNetworkCall(const base::Closure& callback, base::TimeDelta retry);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
file_path_watcher_util.h 13 typedef base::Callback<void(scoped_ptr<base::FilePathWatcher> watcher)>
22 const base::FilePathWatcher::Callback& path_changed_callback);
  /external/chromium_org/remoting/host/
fake_mouse_cursor_monitor.h 17 virtual void Init(Callback* callback, Mode mode) OVERRIDE;
21 Callback* callback_;
  /external/chromium_org/cc/resources/
release_callback.h 8 #include "base/callback.h"
12 typedef base::Callback<void(uint32 sync_point, bool is_lost)> ReleaseCallback;

Completed in 575 milliseconds

1 2 3 4 5 6 7 8 91011>>