Searched defs:addListener (Results 1 - 25 of 82) sorted by relevance

1234

/external/chromium_org/extensions/renderer/resources/
H A Dunload_event.js13 exports.addListener = function(listener) {
/external/guava/guava/src/com/google/common/util/concurrent/
H A DListenableFuture.java39 * <p>It is possible to call {@link #addListener addListener} directly, but this
43 * addListener} calls are occasionally useful:<pre> {@code
47 * future.addListener(new Runnable() {
104 * particular, listeners may run in the thread that calls {@code addListener}
122 void addListener(Runnable listener, Executor executor); method in interface:ListenableFuture
H A DForwardingListenableFuture.java46 public void addListener(Runnable listener, Executor exec) { method in class:ForwardingListenableFuture
47 delegate().addListener(listener, exec);
H A DListenableFutureTask.java29 * functionality, call {@link #addListener}.
77 public void addListener(Runnable listener, Executor exec) { method in class:ListenableFutureTask
H A DJdkFutureAdapters.java47 * ListenableFuture#addListener} by taking a thread from an internal,
48 * unbounded pool at the first call to {@code addListener} and holding it
124 public void addListener(Runnable listener, Executor exec) { method in class:JdkFutureAdapters.ListenableFutureAdapter
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DPositionObserver.java31 void addListener(Listener listener); method in interface:PositionObserver
H A DViewPositionObserver.java63 public void addListener(Listener listener) { method in class:ViewPositionObserver
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryList.cpp51 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener) function in class:WebCore::MediaQueryList
56 m_matcher->addListener(listener, this);
H A DMediaQueryMatcher.cpp103 void MediaQueryMatcher::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener, PassRefPtrWillBeRawPtr<MediaQueryList> query) function in class:WebCore::MediaQueryMatcher
/external/chromium_org/third_party/icu/source/common/
H A Dservnotf.cpp39 ICUNotifier::addListener(const EventListener* l, UErrorCode& status) function in class:ICUNotifier
/external/icu/icu4c/source/common/
H A Dservnotf.cpp39 ICUNotifier::addListener(const EventListener* l, UErrorCode& status) function in class:ICUNotifier
/external/chromium_org/remoting/webapp/
H A Dfullscreen.js41 remoting.Fullscreen.prototype.addListener = function(callback) { };
H A Dfullscreen_v1.js51 this.addListener(callbackAndRemoveListener);
70 remoting.FullscreenAppsV1.prototype.addListener = function(callback) {
H A Dfullscreen_v2.js48 chrome.app.window.current().onFullscreened.addListener(
50 chrome.app.window.current().onMaximized.addListener(
52 chrome.app.window.current().onRestored.addListener(
68 this.addListener(callbackAndRemoveListener);
87 remoting.FullscreenAppsV2.prototype.addListener = function(callback) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DWorkerScriptDebugServer.cpp53 void WorkerScriptDebugServer::addListener(ScriptDebugListener* listener) function in class:WebCore::WorkerScriptDebugServer
/external/chromium_org/chrome/browser/resources/google_now/
H A Dcommon_test_util.js26 // Container for event handlers added by mocked 'addListener' functions.
30 * Mocks 'addListener' function of an API event. The mocked function will keep
53 addListener: function(callback) {
60 * Gets the array of event handlers added by a mocked 'addListener' function.
/external/chromium_org/chrome/browser/resources/signin_internals/
H A Dsignin_internals.js23 // Note the addListener function does not end up creating duplicate
60 Event.prototype.addListener = function(listener) {
179 chrome.signin.onSigninInfoChanged.addListener(function(info) {
/external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
H A DChromeSigninController.java98 public void addListener(Listener listener) { method in class:ChromeSigninController
/external/droiddriver/src/com/google/android/droiddriver/base/
H A DDefaultPoller.java92 public ListenerRemover addListener(final TimeoutListener timeoutListener) { method in class:DefaultPoller
103 public ListenerRemover addListener(final PollingListener pollingListener) { method in class:DefaultPoller
/external/junit/src/org/junit/runner/
H A DJUnitCore.java97 addListener(listener);
170 public void addListener(RunListener listener) { method in class:JUnitCore
171 fNotifier.addListener(listener);
/external/junit/src/org/junit/runner/notification/
H A DRunNotifier.java26 public void addListener(RunListener listener) { method in class:RunNotifier
/external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
H A Dexterns.js27 ChromeInputImeOnKeyEventEvent.prototype.addListener =
128 ChromeEvent.prototype.addListener = function(callback) {};
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dinterframe.js11 * messages to that iframe and cvox.Interframe.addListener to receive
101 cvox.Interframe.addListener = function(listener) {
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dweb_request_internal_custom_bindings.js21 // with extra parameters. Each invocation of addListener creates a new named
27 // chrome.webRequest.onBeforeRequest.addListener(
66 WebRequestEventImpl.prototype.addListener =
111 subEvent.addListener(subEventCallback);
183 'addListener',
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorResourceContentLoader.cpp91 void InspectorResourceContentLoader::addListener(PassOwnPtr<VoidCallback> callback) function in class:WebCore::InspectorResourceContentLoader

Completed in 2098 milliseconds

1234