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

1 2 3 4

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
PushObserver.java 76 PushObserver CANCEL = new PushObserver() {
ErrorCode.java 47 CANCEL(8, 5, -1),
  /external/nist-sip/java/javax/sip/message/
Request.java 9 String CANCEL = "CANCEL";
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
WakeUpCall.java 42 static final String CANCEL = "CANCEL";
47 boolean cancel = intent.hasExtra(CANCEL);
48 if (!cancel) {
84 // cancel alarms
86 am.cancel(PendingIntent.getBroadcast(context, 0, intent, 0));
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 53 static enum State {WAIT, DONE, CANCEL}
  /external/libvncserver/libvncserver/
selbox.c 19 enum { SELECTING, OK, CANCEL } state;
23 static const char* cancelStr="Cancel";
139 m->state = CANCEL;
182 m->state = CANCEL;
296 if(selData.state==CANCEL)
  /frameworks/av/radio/
IRadio.cpp 40 CANCEL,
162 virtual status_t cancel() function in class:android::BpRadio
166 status_t status = remote()->transact(CANCEL, data, &reply);
295 case CANCEL: {
297 status_t status = cancel();
  /frameworks/base/services/core/java/com/android/server/am/
AppErrorDialog.java 57 static final int CANCEL = 7;
89 setCancelMessage(mHandler.obtainMessage(CANCEL));
201 cancel();
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPoller.java 37 * also services "requests" from clients to register for new events or cancel
83 * Executed by poller thread to cancel key
88 * Executed by poller thread to shutdown and cancel all keys
129 * Cancels, and waits on, poller thread to cancel given key.
131 final void cancel(WatchKey key) { method in class:AbstractPoller
133 invoke(RequestType.CANCEL, key);
152 CANCEL,
264 * Cancel existing key
266 case 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.
  /frameworks/base/core/java/android/widget/
Toast.java 146 public void cancel() { method in class:Toast
147 mTN.cancel();
350 private static final int CANCEL = 2;
410 case CANCEL: {
444 public void cancel() { method in class:Toast.TN
445 if (localLOGV) Log.v(TAG, "CANCEL: " + this);
446 mHandler.obtainMessage(CANCEL).sendToTarget();
452 // If a cancel/hide is pending - no need to show - at this point
454 if (mHandler.hasMessages(CANCEL) || mHandler.hasMessages(HIDE)) {
492 // after it notifies us to cancel the toast there is an inheren
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/sysroot/usr/include/
tic.h 145 #define CANCEL 3 /* Capability to be cancelled in following tc's */
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
MultiPagedForm.java 50 DONE, CANCEL
175 * cancel the form and discard the results.
442 case CANCEL:
488 actions.add(new Action.Builder().key(Key.CANCEL.name())
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewSslTest.java     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 52 * that create responses and generate cancel requests from incoming orignial requests without the
55 * Bystrom. Szabo Barna noticed a contact in a cancel request - this is a pointless header for
56 * cancel. Antonis Kyardis contributed bug fixes. Jeroen van Bemmel noted that method names are
90 // given cancel request
118 putName(Request.CANCEL);
744 * Creates a default SIPResquest message that would cancel this request. Note that tag
748 * @return A CANCEL SIPRequest constructed according to RFC3261 section 9.1
757 // A CANCEL request SHOULD NOT be sent to cancel a request other than
761 throw new SipException("Attempt to create CANCEL for " + this.getMethod())
774 SIPRequest cancel = new SIPRequest(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 46 public static final int CANCEL = START + 9;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 315 assert CLEAR_RETURN_CODE != Window.OK && CLEAR_RETURN_CODE != Window.CANCEL;
    [all...]
  /cts/tests/app/src/android/app/cts/
DialogTest.java 68 private static final int CANCEL = 0x44;
750 * 1. Cancel the dialog.
790 d.setCancelMessage(new MockDismissCancelHandler(d, ht.getLooper()).obtainMessage(CANCEL,
    [all...]
  /frameworks/base/core/java/android/app/
Dialog.java 126 private static final int CANCEL = 0x44;
191 cancel();
652 cancel(); method
677 * The default implementation will cancel the dialog when a touch
682 cancel(); method
1231 public void cancel() { method in class:Dialog
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.common_3.6.0.v20100503.jar 

Completed in 1060 milliseconds

1 2 3 4