HomeSort by relevance Sort by last modified time
    Searched full:callback (Results 1 - 25 of 6179) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/storage/
open-database-creation-callback-expected.txt 1 This test tests openDatabase()'s creation callback.
statement-error-callback-expected.txt 1 CONSOLE MESSAGE: line 0: Exception in statement error callback
2 This test confirms that a transaction is immediately rolled back if and only if a statement's error callback throws an exception, returns true, or doesn't return any value.
3 PASS - the transaction error callback was invoked.
4 PASS - the transaction error callback was invoked.
5 PASS - the transaction error callback was invoked.
6 PASS - the transaction error callback was invoked.
7 PASS - the transaction error callback was invoked.
8 PASS - the transaction error callback was invoked.
9 PASS - the transaction success callback was invoked.
10 PASS - the transaction success callback was invoked
    [all...]
null-callbacks-expected.txt 1 This test checks that 'null' can be used wherever we expect an optional callback.
transaction-error-callback-expected.txt 4 Testing transaction failing mid-way and error callback returning true : SUCCESS
5 Testing transaction failing mid-way and error callback return false : SUCCESS
6 Testing statement callback throwing exception and error callback returning true : SUCCESS
7 Testing statement callback throwing exception and error callback returning false : SUCCESS
open-database-creation-callback-isolated-world-expected.txt 2 ALERT: PASS: document.body.bar visible in a callback created in this world.
3 This test tests that the openDatabase() creation callback is called in the right world.
statement-error-callback-isolated-world-expected.txt 2 ALERT: PASS: document.body.bar visible in a callback created in this world.
3 This test tests that the statement error callback is called in the right world.
statement-success-callback-isolated-world-expected.txt 2 ALERT: PASS: document.body.bar visible in a callback created in this world.
3 This test tests that the statement success callback is called in the right world.
transaction-callback-isolated-world-expected.txt 2 ALERT: PASS: document.body.bar visible in a callback created in this world.
3 This test tests that the transaction callback is called in the right world.
transaction-error-callback-isolated-world-expected.txt 2 ALERT: PASS: document.body.bar visible in a callback created in this world.
3 This test tests that the transaction error callback is called in the right world.
transaction-success-callback-isolated-world-expected.txt 2 ALERT: PASS: document.body.bar visible in a callback created in this world.
3 This test tests that the transaction success callback is called in the right world.
change-version-handle-reuse-expected.txt 2 changeVersion: transaction callback
3 changeVersion: success callback
4 transaction: statement error callback: no such table: FooBar
  /ndk/tests/build/test-gnustl-chrono/jni/
hanoi.c 3 void hanoi(int from, int to, int mid, int n, void (*callback)(int, int)) {
5 callback(from, to);
7 hanoi(from, mid, to, n - 1, callback);
8 callback(from, to);
9 hanoi(mid, to, from, n - 1, callback);
  /external/webkit/LayoutTests/platform/android-v8/storage/
statement-error-callback-expected.txt 1 CONSOLE MESSAGE: line 67: Uncaught Exception in statement error callback
2 This test confirms that a transaction is immediately rolled back if and only if a statement's error callback throws an exception, returns true, or doesn't return any value.
3 PASS - the transaction error callback was invoked.
4 PASS - the transaction error callback was invoked.
5 PASS - the transaction error callback was invoked.
6 PASS - the transaction error callback was invoked.
7 PASS - the transaction error callback was invoked.
8 PASS - the transaction error callback was invoked.
9 PASS - the transaction success callback was invoked.
10 PASS - the transaction success callback was invoked
    [all...]
transaction-error-callback-expected.txt 4 Testing transaction failing mid-way and error callback returning true : SUCCESS
5 Testing transaction failing mid-way and error callback return false : SUCCESS
6 Testing statement callback throwing exception and error callback returning true : SUCCESS
7 Testing statement callback throwing exception and error callback returning false : SUCCESS
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRemoteCallbackList.java 15 private HashMap<IBinder, Callback> callbacks = new HashMap<IBinder, Callback>();
20 private final class Callback implements IBinder.DeathRecipient {
21 final E callback; field in class:ShadowRemoteCallbackList.Callback
24 Callback(E callback, Object cookie) {
25 this.callback = callback;
31 callbacks.remove(callback.asBinder());
33 onCallbackDied(callback, cookie)
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
UnsupportedCallbackException.java 18 package org.apache.harmony.javax.security.auth.callback;
22 * Callback}.
28 private Callback callback; field in class:UnsupportedCallbackException
32 * unsupported {@code Callback}, but no error message.
34 * @param callback
35 * the {@code Callback}
37 public UnsupportedCallbackException(Callback callback) {
39 this.callback = callback
    [all...]
  /libcore/luni/src/main/java/javax/security/auth/callback/
UnsupportedCallbackException.java 18 package javax.security.auth.callback;
22 * Callback}.
28 private Callback callback; field in class:UnsupportedCallbackException
32 * unsupported {@code Callback}, but no error message.
34 * @param callback
35 * the {@code Callback}
37 public UnsupportedCallbackException(Callback callback) {
38 this.callback = callback
    [all...]
  /external/chromium/chrome/common/
worker_thread_ticker_unittest.cc 13 class TestCallback : public WorkerThreadTicker::Callback {
32 class LongCallback : public WorkerThreadTicker::Callback {
50 TestCallback callback; local
53 EXPECT_TRUE(ticker.RegisterTickHandler(&callback));
54 EXPECT_TRUE(ticker.UnregisterTickHandler(&callback));
56 EXPECT_FALSE(ticker.RegisterTickHandler(&callback));
57 EXPECT_FALSE(ticker.UnregisterTickHandler(&callback));
65 TEST(WorkerThreadTickerTest, Callback) {
68 TestCallback callback; local
70 ASSERT_TRUE(ticker.RegisterTickHandler(&callback));
85 TestCallback callback; local
102 LongCallback callback; local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper.h 21 // Helper to serialize signed settings ops, provide unified callback interface,
25 class Callback {
27 // Callback of CheckWhitelistOp. |success| indicates whether the op succeeds
33 // Callback of WhitelistOp that adds |email| to the whitelist.
37 // Callback of WhitelistOp that removes |email| to the whitelist.
41 // Callback of StorePropertyOp.
47 // Callback of RetrievePropertyOp.
53 // Callback of StorePolicyOp.
57 // Callback of RetrievePolicyOp.
68 Callback* callback) = 0
    [all...]
ownership_status_checker.h 10 #include "base/callback.h"
20 // a checker, passing in the callback. Once the check is done, the callback will
21 // be invoked with the result. In order to cancel the callback, just destroy the
25 // Callback function type. The status code is guaranteed to be different from
27 typedef Callback1<OwnershipService::Status>::Type Callback;
29 explicit OwnershipStatusChecker(Callback* callback);
36 explicit Core(Callback* callback);
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
UnsupportedCallbackExceptionTest.java 22 import javax.security.auth.callback.UnsupportedCallbackException;
23 import javax.security.auth.callback.Callback;
38 * javax.security.auth.callback.UnsupportedCallbackExceptionTest#UnsupportedCallbackException(Callback callback)
39 * javax.security.auth.callback.UnsupportedCallbackExceptionTest#getCallback()
43 Callback c = null;
50 * javax.security.auth.callback.UnsupportedCallbackExceptionTest#UnsupportedCallbackException(Callback callback
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Trace.java 4 * Callback interface for SQLite's trace function.
10 * Callback to trace (ie log) one SQL statement.
  /external/chromium/base/
callback_unittest.cc 5 #include "base/callback.h"
29 // White-box testpoints to inject into a Callback<> object for checking
43 scoped_ptr<Callback1<int*>::Type> callback(
47 callback->Run(&number);
53 scoped_ptr<CallbackWithReturnValue<int>::Type> callback(
56 EXPECT_EQ(callback->Run(), 1);
70 Callback<void(void)> callback_a_;
71 const Callback<void(void)> callback_b_; // Ensure APIs work with const.
72 Callback<void(void)> null_callback_;
78 Callback<void(void)> c0
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 57 // Return sInstance if it's non-null, otherwise construct a new callback
58 InputContextCallback callback; local
60 callback = sInstance;
63 // Reset the callback
64 callback.mHaveValue = false;
66 callback = new InputContextCallback();
70 callback.mSeq = sSequenceNumber++;
71 return callback;
98 Log.i(TAG, "Got out-of-sequence callback " + seq + " (expected " + mSeq
111 Log.i(TAG, "Got out-of-sequence callback " + seq + " (expected " + mSe
186 InputContextCallback callback = InputContextCallback.getInstance(); local
204 InputContextCallback callback = InputContextCallback.getInstance(); local
222 InputContextCallback callback = InputContextCallback.getInstance(); local
240 InputContextCallback callback = InputContextCallback.getInstance(); local
258 InputContextCallback callback = InputContextCallback.getInstance(); local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
tmpCallbackHandler.java 26 import javax.security.auth.callback.Callback;
27 import javax.security.auth.callback.CallbackHandler;
28 import javax.security.auth.callback.UnsupportedCallbackException;
36 public void handle(Callback[] callback) throws IOException,
38 if (callback == null) {
39 throw new UnsupportedCallbackException(null, "callback is null");
41 if (callback.length == 0) {
42 throw new UnsupportedCallbackException(null, "callback is empty")
    [all...]

Completed in 649 milliseconds

1 2 3 4 5 6 7 8 91011>>