HomeSort by relevance Sort by last modified time
    Searched defs:canceled (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/ui/gfx/animation/
test_animation_delegate.h 13 // Trivial AnimationDelegate implementation. AnimationEnded/Canceled quit the
35 bool canceled() const { function in class:gfx::TestAnimationDelegate
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
MediaAccessPermissionRequestTest.java 30 public boolean canceled() { method in class:MediaAccessPermissionRequestTest.OnPermissionRequestHelper
138 // Don't respond and wait for the request canceled.
157 // Load the same page again, the previous request should be canceled.
160 assertTrue(helper.canceled());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResult.java 46 * Creates a new {@linkplain RenameResult} for a user canceled renaming operation
47 * @return a canceled operation
50 public static RenameResult canceled() { method in class:RenameResult
79 * Marks this result as canceled
81 * @param canceled whether the result was canceled
85 public RenameResult setCanceled(boolean canceled) {
86 mCanceled = canceled;
127 * Returns whether this result represents a canceled renaming operation
129 * @return true if the operation was canceled
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
select_file_dialog_extension_browsertest.cc 46 bool canceled() const { return canceled_; } function in class:MockSelectFileDialogListener
260 ASSERT_TRUE(listener_->canceled());
292 ASSERT_FALSE(listener_->canceled());
320 ASSERT_FALSE(listener_->canceled());
346 ASSERT_TRUE(listener_->canceled());
369 ASSERT_TRUE(listener_->canceled());
  /external/chromium_org/google_apis/gaia/
merge_session_helper_unittest.cc 103 const GoogleServiceAuthError& canceled() { return canceled_; } function in class:__anon12459::MergeSessionHelperTest
269 EXPECT_CALL(observer, MergeSessionCompleted("acc2@gmail.com", canceled()));
295 EXPECT_CALL(observer, MergeSessionCompleted("acc3@gmail.com", canceled()));
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 53 CANCELED("canceled", StateClass.canceled),
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
86 * or CANCELING_1, CANCELING_2, CANCELING_3, CANCELED Does not advance for ANNOUNCED and CANCELED state.
109 return CANCELED;
110 case CANCELED:
111 return CANCELED;
123 * Returns to the next reverted state. All states except CANCELED revert to PROBING_1. Status CANCELED does not revert
    [all...]
  /external/chromium_org/cc/resources/
raster_worker_pool_unittest.cc 107 bool canceled; member in struct:cc::__anon7340::RasterWorkerPoolTest::RasterTaskResult
257 result.canceled = was_canceled;
289 EXPECT_FALSE(completed_tasks()[0].canceled);
290 EXPECT_FALSE(completed_tasks()[1].canceled);
303 EXPECT_FALSE(completed_tasks()[0].canceled);
  /external/chromium_org/chrome/browser/common/
cancelable_request.h 65 // that the object will be kept alive if the request is canceled (releasing
73 // if (request->canceled())
111 // This class is threadsafe. Requests may be added or canceled from any thread,
112 // but a task must only be canceled from the same thread it was initially run
127 // thread that would have received the callback if it was not canceled).
196 // given request, and by the provider when a request is canceled.
509 // callback. If the request has been canceled, Return is optional (it will not
552 // The canceled flag indicates that the request should not be executed.
558 bool canceled() { function in class:CancelableRequestBase
573 // been canceled yet
    [all...]
  /external/chromium_org/content/browser/download/
save_package.h 115 bool canceled() const { return user_canceled_ || disk_error_occurred_; } function in class:content::SavePackage
293 // Indicates whether user canceled the saving job.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java 47 volatile boolean canceled; field in class:Job
77 if (response != null && !canceled) {
93 * was canceled.
123 if (canceled) return null;
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommand.java 366 * The command has been canceled. The command session has ended.
368 canceled enum constant in enum:AdHocCommand.Status
380 * The command should be canceled.
436 * (either because it was completed, canceled, or timed out).
  /external/chromium_org/net/cert/
multi_threaded_cert_verifier.cc 201 bool canceled() const { return callback_.is_null(); } function in class:net::CertVerifierRequest
311 bool canceled; local
314 canceled = canceled_;
315 if (!canceled) {
322 if (canceled)
419 if ((*i)->canceled()) {
  /frameworks/base/services/core/java/com/android/server/am/
PendingIntentRecord.java 41 boolean canceled = false; field in class:PendingIntentRecord
204 if (!canceled) {
208 canceled = true;
312 if (!canceled) {
348 if (sent || canceled) {
350 pw.print(" canceled="); pw.println(canceled);
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 208 * there is no guarantee that the operation will be canceled. They still may
212 * @param token The token representing the operation to be canceled. If
214 * canceled.
217 int canceled = 0; local
223 ++canceled;
229 Log.d(TAG, "cancelOperation(" + token + ") -> " + canceled);
231 return canceled;
  /external/chromium_org/device/bluetooth/
bluetooth_device_chromeos.cc 385 bool canceled = false; local
390 canceled = true;
393 if (!canceled) {
  /external/chromium_org/net/ssl/
server_bound_cert_service.cc 203 bool canceled() const { return callback_.is_null(); } function in class:net::ServerBoundCertServiceRequest
319 if ((*i)->canceled()) {
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 85 volatile bool canceled; member in struct:android::SQLiteConnection
88 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
108 return connection->canceled;
774 connection->canceled = true;
780 connection->canceled = false;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.cpp 438 bool canceled = error.isCancellation(); local
439 m_frontend->loadingFailed(requestId, currentTime(), InspectorPageAgent::resourceTypeJson(m_resourcesData->resourceType(requestId)), error.localizedDescription(), canceled ? &canceled : 0);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 785 if self.tkconsole.canceled:
786 self.tkconsole.canceled = False
909 canceled = False variable in class:PyShell
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 785 if self.tkconsole.canceled:
786 self.tkconsole.canceled = False
909 canceled = False variable in class:PyShell
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api.cc 1882 bool canceled = false; local
    [all...]
web_request_api_unittest.cc 352 // Test that a request is canceled if this is requested by any extension
444 // processed because request is canceled before the handler responds.
466 EXPECT_EQ(net::URLRequestStatus::CANCELED, request.status().status());
1322 bool canceled = false; local
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 556 canceled(); method
570 protected final void canceled() { method in class:RemotePrintDocument.AsyncCommand
743 canceled(); method
1018 canceled(); method
    [all...]
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/libs/
volley.jar 
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/libs/
volley.jar 

Completed in 1149 milliseconds

1 2