Home
last modified time | relevance | path

Searched refs:addListener (Results 1 – 25 of 190) sorted by relevance

12345678

/external/chromium/chrome/browser/resources/sync_internals/
Dsync_log.js26 chrome.sync.onSyncServiceStateChanged.addListener(function () {
32 chrome.sync.onSyncNotificationStateChange.addListener(
39 chrome.sync.onSyncIncomingNotification.addListener(function (changedTypes) {
47 chrome.sync.onChangesApplied.addListener(function (modelType, changes) {
54 chrome.sync.onChangesComplete.addListener(function (modelType) {
60 chrome.sync.onSyncCycleCompleted.addListener(function (snapshot) {
66 chrome.sync.onAuthError.addListener(function (authError) {
72 chrome.sync.onUpdatedToken.addListener(function (token) {
78 chrome.sync.onPassphraseRequired.addListener(function (forDecryption) {
84 chrome.sync.onPassphraseAccepted.addListener(function (bootstrapToken) {
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/water/
DTestSimpleWater.java121 inputManager.addListener(this, "use_water"); in initInput()
123 inputManager.addListener(this, "lightup"); in initInput()
125 inputManager.addListener(this, "lightdown"); in initInput()
127 inputManager.addListener(this, "lightleft"); in initInput()
129 inputManager.addListener(this, "lightright"); in initInput()
131 inputManager.addListener(this, "lightforward"); in initInput()
133 inputManager.addListener(this, "lightback"); in initInput()
/external/chromium/chrome/common/extensions/docs/examples/api/messaging/timer/
Dpage.js1 chrome.extension.onConnect.addListener(function(port) {
2 port.onMessage.addListener(function(msg) {
7 chrome.extension.onRequest.addListener(
/external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/
Dnavigation_collector.js51 chrome.experimental.webNavigation.onBeforeRetarget.addListener(
53 chrome.experimental.webNavigation.onBeforeNavigate.addListener(
55 chrome.experimental.webNavigation.onCompleted.addListener(
57 chrome.experimental.webNavigation.onCommitted.addListener(
59 chrome.experimental.webNavigation.onErrorOccurred.addListener(
63 chrome.extension.onRequest.addListener(this.onRequestListener_.bind(this));
/external/chromium/chrome/browser/resources/shared/js/cr/
Dpromise.js75 addListener: function(fun) { method in Promise
121 p.addListener(fun);
153 arguments[i].addListener(f);
187 args[i].addListener(f);
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
DTerrainTestCollision.java208 inputManager.addListener(actionListener, "wireframe"); in setupKeys()
215 inputManager.addListener(actionListener, "Lefts"); in setupKeys()
216 inputManager.addListener(actionListener, "Rights"); in setupKeys()
217 inputManager.addListener(actionListener, "Ups"); in setupKeys()
218 inputManager.addListener(actionListener, "Downs"); in setupKeys()
219 inputManager.addListener(actionListener, "Forwards"); in setupKeys()
220 inputManager.addListener(actionListener, "Backs"); in setupKeys()
222 inputManager.addListener(actionListener, "shoot"); in setupKeys()
224 inputManager.addListener(actionListener, "cameraDown"); in setupKeys()
DTerrainGridSerializationTest.java75 terrain.addListener(new TerrainGridListener() { in simpleInitApp()
111 this.inputManager.addListener(this.actionListener, "Lefts"); in initKeys()
112 this.inputManager.addListener(this.actionListener, "Rights"); in initKeys()
113 this.inputManager.addListener(this.actionListener, "Ups"); in initKeys()
114 this.inputManager.addListener(this.actionListener, "Downs"); in initKeys()
115 this.inputManager.addListener(this.actionListener, "Jumps"); in initKeys()
DTerrainGridTileLoaderTest.java133 terrain.addListener(new TerrainGridListener() { in simpleInitApp()
168 this.inputManager.addListener(this.actionListener, "Lefts"); in initKeys()
169 this.inputManager.addListener(this.actionListener, "Rights"); in initKeys()
170 this.inputManager.addListener(this.actionListener, "Ups"); in initKeys()
171 this.inputManager.addListener(this.actionListener, "Downs"); in initKeys()
172 this.inputManager.addListener(this.actionListener, "Jumps"); in initKeys()
DTerrainGridTest.java136 terrain.addListener(new TerrainGridListener() { in simpleInitApp()
171 this.inputManager.addListener(this.actionListener, "Lefts"); in initKeys()
172 this.inputManager.addListener(this.actionListener, "Rights"); in initKeys()
173 this.inputManager.addListener(this.actionListener, "Ups"); in initKeys()
174 this.inputManager.addListener(this.actionListener, "Downs"); in initKeys()
175 this.inputManager.addListener(this.actionListener, "Jumps"); in initKeys()
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
DHelloCollision.java136 inputManager.addListener(this, "Left"); in setUpKeys()
137 inputManager.addListener(this, "Right"); in setUpKeys()
138 inputManager.addListener(this, "Up"); in setUpKeys()
139 inputManager.addListener(this, "Down"); in setUpKeys()
140 inputManager.addListener(this, "Jump"); in setUpKeys()
DHelloTerrainCollision.java181 inputManager.addListener(this, "Left"); in setUpKeys()
182 inputManager.addListener(this, "Right"); in setUpKeys()
183 inputManager.addListener(this, "Up"); in setUpKeys()
184 inputManager.addListener(this, "Down"); in setUpKeys()
185 inputManager.addListener(this, "Jump"); in setUpKeys()
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestQ3.java146 inputManager.addListener(this,"Lefts"); in setupKeys()
147 inputManager.addListener(this,"Rights"); in setupKeys()
148 inputManager.addListener(this,"Ups"); in setupKeys()
149 inputManager.addListener(this,"Downs"); in setupKeys()
150 inputManager.addListener(this,"Space"); in setupKeys()
DTestPhysicsCar.java89 inputManager.addListener(this, "Lefts"); in setupKeys()
90 inputManager.addListener(this, "Rights"); in setupKeys()
91 inputManager.addListener(this, "Ups"); in setupKeys()
92 inputManager.addListener(this, "Downs"); in setupKeys()
93 inputManager.addListener(this, "Space"); in setupKeys()
94 inputManager.addListener(this, "Reset"); in setupKeys()
DTestFancyCar.java78 inputManager.addListener(this, "Lefts"); in setupKeys()
79 inputManager.addListener(this, "Rights"); in setupKeys()
80 inputManager.addListener(this, "Ups"); in setupKeys()
81 inputManager.addListener(this, "Downs"); in setupKeys()
82 inputManager.addListener(this, "Space"); in setupKeys()
83 inputManager.addListener(this, "Reset"); in setupKeys()
DTestRagdollCharacter.java108 control.addListener(this); in simpleInitApp()
135 inputManager.addListener(this, "Strafe Left", "Strafe Right"); in setupKeys()
136 inputManager.addListener(this, "Rotate Left", "Rotate Right"); in setupKeys()
137 inputManager.addListener(this, "Walk Forward", "Walk Backward"); in setupKeys()
138 inputManager.addListener(this, "Slice"); in setupKeys()
DTestPhysicsCharacter.java89 inputManager.addListener(this, "Strafe Left", "Strafe Right"); in setupKeys()
90 inputManager.addListener(this, "Rotate Left", "Rotate Right"); in setupKeys()
91 inputManager.addListener(this, "Walk Forward", "Walk Backward"); in setupKeys()
92 inputManager.addListener(this, "Jump", "Shoot"); in setupKeys()
DTestAttachDriver.java99 inputManager.addListener(this, "Lefts"); in setupKeys()
100 inputManager.addListener(this, "Rights"); in setupKeys()
101 inputManager.addListener(this, "Ups"); in setupKeys()
102 inputManager.addListener(this, "Downs"); in setupKeys()
103 inputManager.addListener(this, "Space"); in setupKeys()
104 inputManager.addListener(this, "Reset"); in setupKeys()
DTestWalkingChar.java154 inputManager.addListener(this, "wireframe"); in setupKeys()
161 inputManager.addListener(this, "CharLeft"); in setupKeys()
162 inputManager.addListener(this, "CharRight"); in setupKeys()
163 inputManager.addListener(this, "CharUp"); in setupKeys()
164 inputManager.addListener(this, "CharDown"); in setupKeys()
165 inputManager.addListener(this, "CharSpace"); in setupKeys()
166 inputManager.addListener(this, "CharShoot"); in setupKeys()
312 animationControl.addListener(this); in setupAnimationController()
/external/webkit/Source/WebCore/platform/win/
DWindowMessageBroadcaster.cpp44 void WindowMessageBroadcaster::addListener(HWND hwnd, WindowMessageListener* listener) in addListener() function in WebCore::WindowMessageBroadcaster
52 broadcaster->addListener(listener); in addListener()
75 void WindowMessageBroadcaster::addListener(WindowMessageListener* listener) in addListener() function in WebCore::WindowMessageBroadcaster
DWindowMessageBroadcaster.h42 static void addListener(HWND, WindowMessageListener*);
53 void addListener(WindowMessageListener*);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DJdkFutureAdaptersTest.java70 listenableFuture.addListener(singleCallListener, sameThreadExecutor()); in testListenInPoolThreadIgnoresExecutorWhenDelegateIsDone()
96 listenableFuture.addListener(singleCallListener, executorService); in testListenInPoolThreadUsesGivenExecutor()
197 listenable.addListener(earlyListener, sameThreadExecutor()); in testListenInPoolThreadRunsListenerAfterRuntimeException()
205 listenable.addListener(lateListener, sameThreadExecutor()); in testListenInPoolThreadRunsListenerAfterRuntimeException()
/external/guava/guava/src/com/google/common/util/concurrent/
DForwardingListenableFuture.java46 public void addListener(Runnable listener, Executor exec) { in addListener() method in ForwardingListenableFuture
47 delegate().addListener(listener, exec); in addListener()
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
Dscreenshot.js39 chrome.tabs.onUpdated.addListener(addSnapshotImageToTab);
46 chrome.browserAction.onClicked.addListener(function(tab) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
Dproxy_error_handler.js22 chrome.experimental.proxy.onProxyError.addListener(
26 chrome.extension.onRequest.addListener(
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
DButtonPropertyEditorPresentationImpl.java101 control.addListener(SWT.Dispose, new Listener() { in createControl()
108 control.addListener(SWT.MouseDown, new Listener() { in createControl()
116 control.addListener(SWT.MouseUp, new Listener() { in createControl()
123 control.addListener(SWT.Selection, new Listener() { in createControl()

12345678