/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 | 237 private static final Object CANCEL = new Object(); 251 * of the use of non-V CANCEL sentinels. 306 * @return the other thread's item, or CANCEL if interrupted or timed out 333 if (v != CANCEL) 405 * Tries to cancel a wait for the given node waiting in the given 414 if (!node.compareAndSet(null, CANCEL)) 430 * @return on success, the hole; on failure, CANCEL 460 * @return on success, the hole; on failure, CANCEL 487 * @return on success, the hole; on failure, CANCEL 530 * @return another thread's item, or CANCEL [all...] |
/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());
|
/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;
|
/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...] |
SIPTransaction.java | 451 * Return true if the transaction corresponds to a CANCEL message. 453 * @return -- true if the transaciton is a CANCEL transaction. 456 return getMethod().equals(Request.CANCEL); 922 * This is useful for checking if a CANCEL belongs to this transaction. 943 || this.getOriginalRequest().getMethod().equals(Request.CANCEL)) [all...] |
SIPClientTransaction.java | 234 this.cancel(); [all...] |
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/ |
GLViewTest.java | 374 int CANCEL = MotionEvent.ACTION_CANCEL; 393 // motion target cancel event 403 assertEquals(CANCEL, d.mOnTouchAction); 414 assertEquals(CANCEL, d.mOnTouchAction);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/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 | 108 private static final int CANCEL = 0x44; 576 cancel(); method 601 * The default implementation will cancel the dialog when a touch 606 cancel(); method 1071 public void cancel() { method in class:Dialog [all...] |
/external/chromium/net/http/ |
http_proxy_client_socket_pool_unittest.cc | 251 scoped_ptr<spdy::SpdyFrame> rst(ConstructSpdyRstStream(1, spdy::CANCEL)); 485 scoped_ptr<spdy::SpdyFrame> rst(ConstructSpdyRstStream(1, spdy::CANCEL));
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/ |
ConfirmationCallbackTest.java | 45 ConfirmationCallback.CANCEL, 76 fail("Default option type should be either YES, NO, CANCEL or OK"); 106 * Expected IAE, if optionType is YES_NO_CANCEL_OPTION and defaultOption is not YES/NO/CANCEL, 121 fail("1. If option type is YES_NO_CANCEL_OPTION then default option should be YES/NO/CANCEL"); 127 * Expected IAE, if optionType is OK_CANCEL_OPTION and defaultOption is not CANCEL/OK 133 fail("1. If option type is OK_CANCEL_OPTION then default option should be CANCEL/OK"); 137 fail("2. If option type is OK_CANCEL_OPTION then default option should be CANCEL/OK"); 258 * if optionType was specified in ctor, then selection represented as YES, NO, OK or CANCEL
|
/external/webkit/Source/WebKit/wx/bindings/python/samples/ |
simple.py | 123 self.current, wx.OK|wx.CANCEL)
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaThumbRequest.java | 53 static enum State {WAIT, DONE, CANCEL}
|
/external/chromium/chrome/browser/printing/ |
print_dialog_gtk.cc | 296 callback_->Run(PrintingContextCairo::CANCEL);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/ |
ProgressTaskDialog.java | 61 /** Cancel button says "Cancel" and is enabled. Waiting for user to cancel. */
63 /** Cancel button has been clicked. Waiting for thread to finish. */
150 mCancelButton.setText("Cancel");
161 SWT.H_SCROLL | SWT.V_SCROLL | SWT.CANCEL | SWT.MULTI);
175 * Sets the mode to cancel pending.
176 * The first time this grays the cancel button, to let the user know that the
177 * cancel operation is pending.
182 // and lock on the cancel button mode. [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...] |
SIPMessage.java | 844 if (this.getCSeq().getMethod().equals(Request.CANCEL)) [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
DialogTest.java | 68 private static final int CANCEL = 0x44; [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
DialogFilter.java | 697 } else if (sipRequest.getMethod().equals(Request.CANCEL)) { 703 "Got a CANCEL, InviteServerTx = " + st + " cancel Server Tx ID = " 708 // Processing incoming CANCEL. 709 // Check if we can process the CANCEL request. 710 if (sipRequest.getMethod().equals(Request.CANCEL)) { 711 // If the CANCEL comes in too late, there's not 716 // too late to cancel the transaction then 717 // just respond OK to the CANCEL and bail. 719 sipStack.getStackLogger().logDebug("Too late to cancel Transaction") [all...] |