/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/ |
CancelCall.java | 39 // Schedule a job to cancel the call in 1 second. 43 call.cancel();
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAsyncTask.java | 61 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ShadowAsyncTask 62 return future.cancel(mayInterruptIfRunning);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
NotificationManagerTest.java | 70 notificationManager.cancel(1); 79 notificationManager.cancel("a tag", 1);
|
/external/sl4a/Utils/src/com/googlecode/android_scripting/ |
ForegroundService.java | 84 // Fall back on the old API. Note to cancel BEFORE changing the 86 mNotificationManager.cancel(mNotificationId);
|
/frameworks/base/core/java/android/hardware/fingerprint/ |
IFingerprintService.aidl | 33 // Cancel authentication for the given sessionId 40 // Cancel enrollment in progress
|
/frameworks/base/core/java/android/os/ |
SystemVibrator.java | 104 public void cancel() { method in class:SystemVibrator 111 Log.w(TAG, "Failed to cancel vibration.", e);
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/ |
FileOperationService.java | 62 public static final String EXTRA_CANCEL = "com.android.documentsui.CANCEL"; 198 // is null, the service most likely crashed and was revived by the incoming cancel intent. 202 record.job.cancel(); 204 // If the job hasn't been started, cancel it and explicitly clean up. 208 record.future.cancel(false); 216 // Try to cancel it even if we don't have a job id...in case there is some sad 218 mNotificationManager.cancel(jobId, NOTIFICATION_ID_PROGRESS); 308 mNotificationManager.cancel(job.id, NOTIFICATION_ID_PROGRESS);
|
/frameworks/base/services/core/java/com/android/server/notification/ |
RankingReconsideration.java | 68 public boolean cancel(boolean mayInterruptIfRunning) { method in class:RankingReconsideration 69 if (mState == START) { // can't cancel if running or done
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardParser_V40.java | 84 public void cancel() { method in class:VCardParser_V40 85 mVCardParserImpl.cancel();
|
/frameworks/support/compat/honeycomb_mr1/android/support/v4/animation/ |
HoneycombMr1AnimatorCompatProvider.java | 71 public void cancel() { method in class:HoneycombMr1AnimatorCompatProvider.HoneycombValueAnimatorCompat 72 mWrapped.cancel();
|
/frameworks/support/design/honeycomb-mr1/android/support/design/widget/ |
ValueAnimatorCompatImplHoneycombMr1.java | 103 public void cancel() { method in class:ValueAnimatorCompatImplHoneycombMr1 104 mValueAnimator.cancel();
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/ |
ViewPropertyAnimatorCompatSet.java | 84 public void cancel() { method in class:ViewPropertyAnimatorCompatSet 89 animator.cancel();
|
/frameworks/volley/src/test/java/com/android/volley/mock/ |
MockRequest.java | 79 public void cancel() { method in class:MockRequest 81 super.cancel();
|
/libcore/ojluni/src/main/java/java/nio/channels/spi/ |
AbstractSelectionKey.java | 66 public final void cancel() { method in class:AbstractSelectionKey 73 ((AbstractSelector)selector()).cancel(this);
|
/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/ |
CaptureSessionCreator.java | 66 sessionFuture.cancel(true); 87 sessionFuture.cancel(true);
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
PostCharDialogFragment.java | 29 * Pop up an alert dialog with OK and Cancel buttons to allow user to Accept or Reject the WAIT 73 dialog.cancel();
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupNoteDialogFragment.java | 75 context.getString(android.R.string.cancel), 79 dialog.cancel();
|
/packages/apps/Gallery2/res/layout/ |
choose_widget_type.xml | 49 android:id="@+id/cancel" 53 android:text="@android:string/cancel" />
|
filtershow_presets_management_dialog.xml | 57 android:id="@+id/cancel" 61 android:text="@string/cancel"
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/ |
PresetManagementDialog.java | 42 view.findViewById(R.id.cancel).setOnClickListener(this); 52 case R.id.cancel:
|
/packages/apps/Music/res/layout/ |
weekpicker.xml | 59 <Button android:id="@+id/cancel" 62 android:text="@string/cancel"
|
/packages/apps/Music/res/layout-keyshidden/ |
create_playlist.xml | 63 <Button android:id="@+id/cancel" 65 android:text="@string/cancel"
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
Futures.java | 116 public boolean cancel(boolean mayInterruptIfRunning) { method in class:Futures.ImmediateFuture 472 if (isCancelled()) { // in case cancel called in the meantime 473 running.cancel(wasInterrupted()); 485 cancel(false); 499 public boolean cancel(boolean mayInterruptIfRunning) { method in class:Futures.FallbackFuture 500 if (super.cancel(mayInterruptIfRunning)) { 501 running.cancel(mayInterruptIfRunning); 552 * attempt to cancel the other two, and if either of the other two is 554 * will attempt to cancel itself. 592 * will attempt to cancel the other two, and if either of the other two i [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/ |
player.js | 271 player.cancel(); 366 test('Play after cancel', function() { 370 p.cancel(); 387 test('Reverse after cancel', function() { 390 p.cancel(); 412 test('Finish after cancel', function() { 415 p.cancel(); 429 test('Pause after cancel', function() { 432 p.cancel(); 454 p.cancel(); [all...] |
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
RemotePrintDocument.java | 221 mCurrentCommand.cancel(false); 239 // Cancel the current write as a new one is to be scheduled. 242 mCurrentCommand.cancel(false); 286 public void cancel(boolean force) { method in class:RemotePrintDocument 288 Log.i(LOG_TAG, "[CALLED] cancel(" + force + ")"); 299 mCurrentCommand.cancel(force); 570 * If a force cancel is pending, remove it. This is usually called when a command returns 576 Log.i(LOG_TAG, "[FORCE CANCEL] Removed"); 584 * Cancel the current command. 586 * @param force If set, does not wait for the {@link PrintDocumentAdapter} to cancel. Thi 591 public final void cancel(boolean force) { method in class:RemotePrintDocument.AsyncCommand [all...] |