/external/chromium_org/content/test/data/npapi/ |
geturl.html | 16 callbacks are expected and that the retrieved content is correct.
|
/external/chromium_org/media/base/android/ |
media_player_listener.h | 23 // MediaPlayerBridge so that callbacks are posted onto the UI thread. 26 // Construct a native MediaPlayerListener object. Callbacks from the java 35 // callbacks. 56 // The MediaPlayerBridge object all the callbacks should be send to.
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementDefinition.cpp | 36 PassRefPtr<CustomElementDefinition> CustomElementDefinition::create(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks) 38 return adoptRef(new CustomElementDefinition(descriptor, callbacks)); 41 CustomElementDefinition::CustomElementDefinition(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks) 43 , m_callbacks(callbacks)
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
WebIDBDatabaseCallbacksImpl.cpp | 34 PassOwnPtr<WebIDBDatabaseCallbacksImpl> WebIDBDatabaseCallbacksImpl::create(PassRefPtr<IDBDatabaseCallbacks> callbacks) 36 return adoptPtr(new WebIDBDatabaseCallbacksImpl(callbacks)); 39 WebIDBDatabaseCallbacksImpl::WebIDBDatabaseCallbacksImpl(PassRefPtr<IDBDatabaseCallbacks> callbacks) 40 : m_callbacks(callbacks)
|
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/ |
AndroidTouchInputListener.java | 10 * callbacks/events for android touch screens For use with class AndroidInput
|
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/ |
start_manager.h | 16 /** Max number of start callbacks we can handle. */
|
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/ |
start_manager.h | 16 /** Max number of start callbacks we can handle. */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
WindowList.py | 7 self.callbacks = [] 35 self.callbacks.append(callback) 39 self.callbacks.remove(callback) 44 for callback in self.callbacks:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
WindowList.py | 7 self.callbacks = [] 35 self.callbacks.append(callback) 39 self.callbacks.remove(callback) 44 for callback in self.callbacks:
|
/external/chromium_org/base/win/ |
dllmain.cc | 10 // LoadLibrary, but it hooks into the "standard" set of TLS callbacks that are 32 // Indicate if another service is scanning the callbacks. When this becomes 34 // value is set to true the first time any of our callbacks are called, as that 35 // shows that some other service is handling callbacks. 40 // of the callbacks anymore. We expect such a call to arrive via a 42 // callbacks. 57 // Explicitly depend on tlssup.cc variable to bracket the list of TLS callbacks. 92 // Make DllMain call the listed callbacks. This way any third parties that are 115 // If we are called, it means that some other system is scanning the callbacks 120 // duplicate calls on Vista, where the runtime takes care of the callbacks, [all...] |
/external/chromium_org/content/child/indexed_db/ |
webidbfactory_impl.h | 27 virtual void getDatabaseNames(blink::WebIDBCallbacks* callbacks, 32 blink::WebIDBCallbacks* callbacks, 36 blink::WebIDBCallbacks* callbacks,
|
indexed_db_dispatcher.h | 70 blink::WebIDBCallbacks* callbacks, 77 blink::WebIDBCallbacks* callbacks, 82 blink::WebIDBCallbacks* callbacks, 118 blink::WebIDBCallbacks* callbacks); 127 blink::WebIDBCallbacks* callbacks, 140 blink::WebIDBCallbacks* callbacks); 147 blink::WebIDBCallbacks* callbacks); 153 blink::WebIDBCallbacks* callbacks); 158 blink::WebIDBCallbacks* callbacks); 172 scoped_ptr<blink::WebIDBCallbacks> callbacks(callbacks_ptr) [all...] |
indexed_db_dispatcher_unittest.cc | 56 MockCallbacks callbacks; local 65 &callbacks, 69 EXPECT_TRUE(callbacks.error_seen());
|
webidbcursor_impl.cc | 30 // It's not possible for there to be pending callbacks that address this 49 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr); 52 count, callbacks.release(), ipc_cursor_id_); 65 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr); 74 CachedContinue(callbacks.get()); 82 prefetch_amount_, callbacks.release(), ipc_cursor_id_); 98 callbacks.release(), 127 void WebIDBCursorImpl::CachedContinue(WebIDBCallbacks* callbacks) { 144 callbacks->onSuccess(WebIDBKeyBuilder::Build(key),
|
/external/ceres-solver/internal/ceres/ |
minimizer_test.cc | 52 solver_options.callbacks.push_back(&callback0); 53 solver_options.callbacks.push_back(&callback1); 56 ASSERT_EQ(2, minimizer_options.callbacks.size()); 58 EXPECT_EQ(minimizer_options.callbacks[0], &callback0); 59 EXPECT_EQ(minimizer_options.callbacks[1], &callback1);
|
/external/chromium/base/ |
at_exit.h | 18 // we control when the callbacks are executed. Under Windows for a DLL they 29 // callbacks and singleton destructors will be called. 37 // The dtor calls all the registered callbacks. Do not try to register more 38 // callbacks after this point. 46 // is possible to register new callbacks after calling this function.
|
/external/chromium_org/base/ |
at_exit.h | 18 // we control when the callbacks are executed. Under Windows for a DLL they 29 // callbacks and singleton destructors will be called. 37 // The dtor calls all the registered callbacks. Do not try to register more 38 // callbacks after this point. 49 // is possible to register new callbacks after calling this function.
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_factory.cc | 112 scoped_refptr<IndexedDBCallbacks> callbacks, 127 callbacks->OnError( 134 callbacks->OnSuccess(backing_store->GetDatabaseNames()); 140 scoped_refptr<IndexedDBCallbacks> callbacks, 149 it->second->DeleteDatabase(callbacks); 164 callbacks->OnError( 175 callbacks->OnError(IndexedDBDatabaseError( 184 database->DeleteDatabase(callbacks); 260 scoped_refptr<IndexedDBCallbacks> callbacks, 282 callbacks->OnError [all...] |
/external/clang/include/clang/Tooling/ |
Tooling.h | 77 /// \brief Callbacks called before and after each source file processed by a 108 FactoryT *ConsumerFactory, SourceFileCallbacks *Callbacks = NULL); 251 FactoryT *ConsumerFactory, SourceFileCallbacks *Callbacks) { 255 SourceFileCallbacks *Callbacks) 256 : ConsumerFactory(ConsumerFactory), Callbacks(Callbacks) {} 259 return new ConsumerFactoryAdaptor(ConsumerFactory, Callbacks); 266 SourceFileCallbacks *Callbacks) 267 : ConsumerFactory(ConsumerFactory), Callbacks(Callbacks) {} [all...] |
/hardware/libhardware/modules/camera/ |
CameraHAL.cpp | 82 int CameraHAL::setCallbacks(const camera_module_callbacks_t *callbacks) 84 ALOGV("%s : callbacks=%p", __func__, callbacks); 85 mCallbacks = callbacks; 122 static int set_callbacks(const camera_module_callbacks_t *callbacks) 124 return gCameraHAL.setCallbacks(callbacks);
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
ObjectCache.java | 42 * @param callbacks Callback object that that will return a new instance of the object, and 45 public ObjectCache(Callback<T> callbacks, int maxSize) { 46 mCallback = callbacks;
|
/external/chromium/chrome/common/ |
worker_thread_ticker.h | 18 // thread is hung. Similarly, the callbacks will be called on a separate 51 // Stops the ticker and waits for all callbacks. to be done. This method 52 // does not provide a way to stop without waiting for the callbacks to be 82 // The interval at which the callbacks are to be invoked
|
/external/chromium_org/chrome/browser/extensions/api/top_sites/ |
top_sites_api.h | 29 // For callbacks may be run after destruction.
|
/external/chromium_org/chrome/common/ |
worker_thread_ticker.h | 17 // thread is hung. Similarly, the callbacks will be called on a separate 50 // Stops the ticker and waits for all callbacks. to be done. This method 51 // does not provide a way to stop without waiting for the callbacks to be 81 // The interval at which the callbacks are to be invoked
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
app_custom_bindings.js | 50 var callback = callbacks[callbackId]; 51 delete callbacks[callbackId]; 63 var callbacks = {}; 68 callbacks[callbackId] = callback;
|