/external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
case-sensitive.js | 3 function test(storageString, callback) 5 window.completionCallback = callback;
|
documentURI.js | 3 function test(storageString, callback) 5 window.completionCallback = callback;
|
/external/webkit/Source/WebCore/storage/ |
SQLTransaction.cpp | 62 PassRefPtr<SQLTransaction> SQLTransaction::create(Database* db, PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback, 65 return adoptRef(new SQLTransaction(db, callback, errorCallback, successCallback, wrapper, readOnly)); 68 SQLTransaction::SQLTransaction(Database* db, PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback, 74 , m_callbackWrapper(callback, db->scriptExecutionContext()) 90 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> callbackError, ExceptionCode& e) 103 RefPtr<SQLStatement> statement = SQLStatement::create(m_database.get(), sqlStatement, arguments, callback, callbackError, permissions); 203 LOG(StorageAPI, "Callback %s\n", debugStepName(m_nextStep)); 247 // If the database was deleted, jump to the error callback 266 // Transaction Steps 1+2 - Open a transaction to the database, jumping to the error callback if that fails 275 // Transaction Steps 3 - Peform preflight steps, jumping to the error callback if they fai 296 RefPtr<SQLTransactionCallback> callback = m_callbackWrapper.unwrap(); local [all...] |
/hardware/libhardware/include/hardware/ |
bt_hh.h | 52 only used in BTA_HH_OPEN_EVT callback */ 87 /** Callback for connection state change. 92 /** Callback for vitual unplug api. 97 /** Callback for get hid info 102 /** Callback for get/set protocal api. 107 /** Callback for get/set_idle_time api. 112 /** Callback for get report api. 118 /** BT-HH callback structure. */
|
/packages/apps/Email/src/com/android/email/activity/ |
MessageCommandButtonView.java | 45 private Callback mCallback = EmptyCallback.INSTANCE; 47 public interface Callback { 52 private static class EmptyCallback implements Callback { 53 public static final Callback INSTANCE = new EmptyCallback(); 87 public void setCallback(Callback callback) { 88 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/ |
HomeXLarge.java | 34 ActionBar.Callback { 80 /** Implements ActionBar.Callback */ 91 /** Implements ActionBar.Callback */ 96 /** Implements ActionBar.Callback */ 112 /** Implements ActionBar.Callback */ 117 /** Implements ActionBar.Callback */ 122 /** Implements ActionBar.Callback */ 127 /** Implements ActionBar.Callback */
|
/external/libnfc-nxp/inc/ |
phNfcInterface.h | 146 NFC_EXEC_CALLBACK = 0x01, /**< Callback Execution Sequence */ 147 NFC_EXEC_UNKNOWN = 0xFF /**< Callback Execution Sequence */ 178 * This structure holds the completion callback information of the 180 * along with the completion callback. 200 * This structure holds the notification callback information passed from 201 * the lower layer to the upper layer along with the notification callback. 238 ********************* Callback Function Type Definition ************************ 243 * Interface Notification Callback 245 * This callback notifies the occurrance of an event in the Lower Interface. 247 * \param [in] pContext Context for the Callback Functio [all...] |
/cts/tests/src/android/speech/tts/cts/ |
StubTextToSpeechService.java | 50 protected void onSynthesizeText(SynthesisRequest request, SynthesisCallback callback) { 51 if (callback.start(16000, AudioFormat.ENCODING_PCM_16BIT, 1) != TextToSpeech.SUCCESS) { 55 if (callback.audioAvailable(data, 0, data.length) != TextToSpeech.SUCCESS) { 58 if (callback.done() != TextToSpeech.SUCCESS) {
|
/external/chromium/base/ |
callback_old.h | 12 // Callback -------------------------------------------------------------------- 14 // A Callback is like a Task but with unbound parameters. It is basically an 21 // users to not care which type of class implements the callback, only that it 31 // necessary. The pointer in a callback must remain valid until the callback 34 // Like Task, the callback executor is responsible for deleting the callback 35 // pointer once the callback has executed. 39 // Callback2<int, string>::Type* callback = 41 // callback->Run(5, string("hello")) [all...] |
/external/chromium/chrome/common/extensions/docs/static/ |
experimental.clipboard.html | 7 For all functions exposed by this API, the argument to the callback indicates
|
/external/chromium/net/http/ |
http_basic_stream.h | 45 CompletionCallback* callback) OVERRIDE; 50 CompletionCallback* callback) OVERRIDE; 54 virtual int ReadResponseHeaders(CompletionCallback* callback) OVERRIDE; 59 CompletionCallback* callback) OVERRIDE;
|
/external/chromium/net/proxy/ |
proxy_script_fetcher.h | 29 // Downloads the given PAC URL, and invokes |callback| on completion. 31 // ERR_IO_PENDING, then the request completes asynchronously, and |callback| 44 // deleting |this|), then no callback is invoked. 48 CompletionCallback* callback) = 0;
|
/external/icu4c/test/cintltst/ |
nccbtst.h | 46 const char *codepage, UConverterFromUCallback callback, const int32_t *expectOffsets, 51 const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets, 55 const char *codepage, UConverterFromUCallback callback , const int32_t *expectOffsets, 59 const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets,
|
/external/javasqlite/src/main/java/SQLite/ |
BusyHandler.java | 4 * Callback interface for SQLite's user defined busy handler.
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.compat | 29 ATTRIBUTE Login-Callback-Number 19 string 30 ATTRIBUTE Framed-Callback-Id 20 string 35 VALUE Service-Type Callback-Login 3 36 VALUE Service-Type Callback-Framed 4
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_RemoveTimer.3 | 11 Removes a timer callback previously added with \fISDL_AddTimer\fR\&.
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testtimer.c | 21 static Uint32 SDLCALL callback(Uint32 interval, void *param) function 63 t1 = SDL_AddTimer(100, callback, (void*)1); 66 t2 = SDL_AddTimer(50, callback, (void*)2); 69 t3 = SDL_AddTimer(233, callback, (void*)3);
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
error-expected.txt | 1 Tests Geolocation error callback using the mock service.
|
reentrant-permission-denied-expected.txt | 1 Tests that reentrant calls to Geolocation methods from the error callback due to a PERMISSION_DENIED error are OK.
|
reentrant-success-expected.txt | 1 Tests that reentrant calls to Geolocation methods from the success callback are OK.
|
timeout-clear-watch-expected.txt | 1 Tests that when a watch times out and is cleared from the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
maximum-age.js | 39 testFailed('Error callback invoked unexpectedly'); 52 testFailed('Error callback invoked unexpectedly'); 66 testFailed('Error callback invoked unexpectedly'); 74 testFailed('Success callback invoked unexpectedly');
|
permission-denied.js | 11 testFailed('Success callback invoked unexpectedly');
|
/external/webkit/Source/JavaScriptCore/API/ |
JSWeakObjectMapRefInternal.h | 44 static PassRefPtr<OpaqueJSWeakObjectMap> create(void* data, JSWeakMapDestroyedCallback callback) 46 return adoptRef(new OpaqueJSWeakObjectMap(data, callback)); 57 OpaqueJSWeakObjectMap(void* data, JSWeakMapDestroyedCallback callback) 59 , m_callback(callback)
|
/external/webkit/Source/WebCore/dom/ |
StringCallback.cpp | 43 static PassOwnPtr<DispatchCallbackTask> create(PassRefPtr<StringCallback> callback, const String& data) 45 return adoptPtr(new DispatchCallbackTask(callback, data)); 54 DispatchCallbackTask(PassRefPtr<StringCallback> callback, const String& data) 55 : m_callback(callback)
|