/external/chromium_org/chrome/browser/search_engines/ |
template_url_fetcher_callbacks.h | 11 // Callbacks for the TemplateURLFetcher.
|
/external/chromium_org/content/public/browser/ |
media_devices_monitor.h | 14 // OnVideoCaptureDevicesChanged() callbacks.
|
/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/ |
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/web/ |
IDBCursorBackendProxy.cpp | 53 void IDBCursorBackendProxy::advance(unsigned long count, PassRefPtr<IDBCallbacks> callbacks) 55 m_idbCursor->advance(count, new WebIDBCallbacksImpl(callbacks)); 58 void IDBCursorBackendProxy::continueFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks> callbacks) 60 m_idbCursor->continueFunction(key, new WebIDBCallbacksImpl(callbacks));
|
IDBFactoryBackendProxy.cpp | 112 bool IDBFactoryBackendProxy::allowIndexedDB(ScriptExecutionContext* context, const String& name, const WebSecurityOrigin& origin, PassRefPtr<IDBCallbacks> callbacks) 140 callbacks->onError(WebIDBDatabaseError(UnknownError, "The user denied permission to access the database.")); 147 RefPtr<IDBCallbacks> callbacks(prpCallbacks); 149 if (!allowIndexedDB(context, "Database Listing", origin, callbacks)) 152 m_webIDBFactory->getDatabaseNames(new WebIDBCallbacksImpl(callbacks), databaseIdentifier); 157 RefPtr<IDBCallbacks> callbacks(prpCallbacks); 160 if (!allowIndexedDB(context, name, origin, callbacks)) 163 m_webIDBFactory->open(name, version, transactionId, new WebIDBCallbacksImpl(callbacks), new WebIDBDatabaseCallbacksImpl(databaseCallbacks), databaseIdentifier); 168 RefPtr<IDBCallbacks> callbacks(prpCallbacks); 170 if (!allowIndexedDB(context, name, origin, callbacks)) [all...] |
/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/browser/indexed_db/ |
indexed_db_cursor.cc | 20 scoped_refptr<IndexedDBCallbacks> callbacks) 21 : cursor_(cursor), key_(key.Pass()), callbacks_(callbacks) {} 35 scoped_refptr<IndexedDBCallbacks> callbacks) 36 : cursor_(cursor), count_(count), callbacks_(callbacks) {} 50 scoped_refptr<IndexedDBCallbacks> callbacks) 53 callbacks_(callbacks) {} 80 scoped_refptr<IndexedDBCallbacks> callbacks) { 84 task_type_, new CursorIterationOperation(this, key.Pass(), callbacks)); 88 scoped_refptr<IndexedDBCallbacks> callbacks) { 92 new CursorAdvanceOperation(this, count, callbacks)); [all...] |
indexed_db_cursor.h | 29 void Advance(uint32 count, scoped_refptr<IndexedDBCallbacks> callbacks); 31 scoped_refptr<IndexedDBCallbacks> callbacks); 33 scoped_refptr<IndexedDBCallbacks> callbacks);
|
indexed_db_factory.cc | 45 scoped_refptr<IndexedDBCallbacks> callbacks, 54 callbacks->OnError( 61 callbacks->OnSuccess(backing_store->GetDatabaseNames()); 66 scoped_refptr<IndexedDBCallbacks> callbacks, 76 it->second->DeleteDatabase(callbacks); 85 callbacks->OnError(IndexedDBDatabaseError( 95 callbacks->OnError(IndexedDBDatabaseError( 103 database_backend->DeleteDatabase(callbacks); 148 scoped_refptr<IndexedDBCallbacks> callbacks, 163 callbacks->OnError(IndexedDBDatabaseError [all...] |
indexed_db_database.cc | 66 scoped_refptr<IndexedDBCallbacks> callbacks, 72 callbacks_(callbacks), 202 scoped_refptr<IndexedDBCallbacks> callbacks) 211 callbacks_(callbacks) {} 234 scoped_refptr<IndexedDBCallbacks> callbacks, 242 callbacks_(callbacks), 281 scoped_refptr<IndexedDBCallbacks> callbacks) 290 callbacks_(callbacks) {} 312 scoped_refptr<IndexedDBCallbacks> callbacks) 318 callbacks_(callbacks) {} [all...] |
indexed_db_factory.h | 35 void GetDatabaseNames(scoped_refptr<IndexedDBCallbacks> callbacks, 41 scoped_refptr<IndexedDBCallbacks> callbacks, 47 scoped_refptr<IndexedDBCallbacks> callbacks,
|
/external/chromium_org/content/child/indexed_db/ |
proxy_webidbfactory_impl.h | 28 WebKit::WebIDBCallbacks* callbacks, 34 WebKit::WebIDBCallbacks* callbacks, 39 WebKit::WebIDBCallbacks* callbacks,
|
indexed_db_dispatcher.h | 70 WebKit::WebIDBCallbacks* callbacks, 77 WebKit::WebIDBCallbacks* callbacks, 82 WebKit::WebIDBCallbacks* callbacks, 117 WebKit::WebIDBCallbacks* callbacks); 126 WebKit::WebIDBCallbacks* callbacks, 139 WebKit::WebIDBCallbacks* callbacks); 146 WebKit::WebIDBCallbacks* callbacks); 152 WebKit::WebIDBCallbacks* callbacks); 157 WebKit::WebIDBCallbacks* callbacks); 171 scoped_ptr<WebKit::WebIDBCallbacks> callbacks(callbacks_ptr) [all...] |
/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/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);
|