HomeSort by relevance Sort by last modified time
    Searched refs:CANCEL (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
SoftTextDialogInputListener.java 41 public static int CANCEL = 1;
  /tools/motodev/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/util/
PlatformException.java 25 * severity is <code>IStatus.CANCEL</code>.
46 if (status.getSeverity() == IStatus.CANCEL)
  /external/chromium/chrome/browser/download/
download_shelf.cc 55 case CANCEL:
76 case CANCEL:
98 case CANCEL:
140 CANCEL, IDS_DOWNLOAD_MENU_CANCEL);
160 CANCEL, IDS_DOWNLOAD_MENU_CANCEL);
download_shelf.h 57 CANCEL, // Cancel the download.
79 // A model to control the cancel behavior.
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 44 CANCEL
62 user_response_ = CANCEL;
133 EXPECT_EQ(CANCEL, user_response());
  /external/nist-sip/java/javax/sip/message/
Request.java 9 String CANCEL = "CANCEL";
  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 30 * This class provides several utilities to cancel bitmap decoding.
33 * decoding if another thread wants to cancel it, it calls the function
40 private static enum State {CANCEL, ALLOW}
48 if (mState == State.CANCEL) {
49 s = "Cancel";
105 boolean result = (status.mState != State.CANCEL);
115 status.mState = State.CANCEL;
123 // Since our cancel request can arrive MediaProvider earlier than getThumbnail request,
124 // we use mThumbRequesting flag to make sure our request does cancel the request.
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 236 private static final Object CANCEL = new Object();
250 * of the use of non-V CANCEL sentinels.
307 * @return the other thread's item, or CANCEL if interrupted or timed out
334 if (v != CANCEL)
406 * Tries to cancel a wait for the given node waiting in the given
415 if (!node.compareAndSet(null, CANCEL))
431 * @return on success, the hole; on failure, CANCEL
461 * @return on success, the hole; on failure, CANCEL
488 * @return on success, the hole; on failure, CANCEL
531 * @return another thread's item, or CANCEL
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/
CanRefreshStatus.java 35 * in this case a Yes/no/cancel dialog must be displayed using this status messages as dialog message.
36 * Yes/No response will be sent to refresh, cancel will cancel the refresh
99 * <code>INFO</code>, <code>WARNING</code>, or <code>CANCEL</code>
105 || (severity == INFO) || (severity == CANCEL) || (severity == ASK_USER)
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page_unittest.cc 75 CANCEL
99 user_response_ = CANCEL;
195 EXPECT_EQ(CANCEL, user_response());
256 EXPECT_EQ(CANCEL, user_response());
327 EXPECT_EQ(CANCEL, user_response());
382 EXPECT_EQ(CANCEL, user_response());
546 EXPECT_EQ(CANCEL, user_response());
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/utilities/ui/
LoginPasswordDialogCreator.java 42 public static final int CANCEL = LoginPasswordDialog.CANCEL;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Parser.java 87 || token.getTokenType() == CANCEL
TokenTypes.java 46 public static final int CANCEL = START + 9;
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/logic/
TransferFilesLogic.java 57 if (status.getSeverity() == IStatus.CANCEL)
StartVncServerLogic.java 82 * Cancel any VncServerJob that is currently running the VNC server on the given emulator instance.
97 info("Cancel execution of the VNC Server on " + instance);
98 job.cancel();
195 status = new Status(IStatus.CANCEL, EmulatorPlugin.PLUGIN_ID, errorMessage, e);
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/
DbNode.java 225 if (status.getSeverity() != IStatus.CANCEL)
231 if (status.getSeverity() != IStatus.CANCEL)
385 new Status(IStatus.CANCEL, DbCoreActivator.PLUGIN_ID,
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/command/
RefreshNodeHandler.java 83 if (dialogResults != SWT.CANCEL)
UnmapDatabaseHandler.java 62 if ((status.getCode() != IStatus.CANCEL) && !status.isOK())
  /tools/motodev/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/core/internal/
CollectLogFile.java 100 throw new PlatformException(new Status(IStatus.CANCEL,
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 264 this.cancel();
276 this.cancel();
370 this.cancel();
592 if (method.equals(Request.CANCEL)) {
593 // Cancel is handled as a special case because it
595 // that it is trying to cancel.
596 transactionMatches = this.getMethod().equals(Request.CANCEL)
619 // a CANCEL request, which is not deemed
633 // Issue #96: special case handling for a CANCEL request -
635 // be CANCEL for it to have a chance at matching
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLViewTest.java 348 int CANCEL = MotionEvent.ACTION_CANCEL;
367 // motion target cancel event
377 assertEquals(CANCEL, d.mOnTouchAction);
388 assertEquals(CANCEL, d.mOnTouchAction);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tic.h 145 #define CANCEL 3 /* Capability to be cancelled in following tc's */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tic.h 145 #define CANCEL 3 /* Capability to be cancelled in following tc's */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tic.h 145 #define CANCEL 3 /* Capability to be cancelled in following tc's */
  /frameworks/base/core/java/android/app/
Dialog.java 110 private static final int CANCEL = 0x44;
591 cancel(); method
616 * The default implementation will cancel the dialog when a touch
621 cancel(); method
1102 public void cancel() { method in class:Dialog
    [all...]

Completed in 563 milliseconds

1 2 3 4