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

1 2 3 4 5 6 7

  /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...]
RenameResourceWizard.java 99 return RenameResult.canceled();
119 * canceled
154 return false; // Canceled
  /libcore/ojluni/src/main/java/java/util/stream/
AbstractShortCircuitTask.java 53 * Indicates whether this task has been canceled. Tasks may cancel other
58 protected volatile boolean canceled; field in class:AbstractShortCircuitTask
194 * Mark this task as canceled
197 canceled = true;
201 * Queries whether this task is canceled. A task is considered canceled if
202 * it or any of its parents have been canceled.
204 * @return {@code true} if this task or any parent is canceled.
207 boolean cancel = canceled;
210 cancel = parent.canceled;
    [all...]
  /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...]
  /frameworks/base/core/java/android/print/
IPrintSpoolerCallbacks.aidl 33 void onCancelPrintJobResult(boolean canceled, int sequence);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
TextInputDialogTest.java 43 public void canceled () {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
Gesture.java 30 * canceled. A gesture is associated with a single undo transaction (although
115 * it was canceled).
119 * @param canceled True if the gesture was canceled, and false otherwise.
121 public void end(ControlPoint pos, boolean canceled) {
ResizeGesture.java 118 public void end(ControlPoint pos, boolean canceled) {
119 super.end(pos, canceled);
121 if (!canceled) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Call.java 31 * canceled. As this object represents a single request/response pair (stream),
39 volatile boolean canceled; field in class:Call
80 if (result == null) throw new IOException("Canceled");
118 * cannot be canceled.
121 canceled = true;
126 return canceled;
163 if (canceled) {
165 responseCallback.onFailure(originalRequest, new IOException("Canceled"));
188 String string = canceled ? "canceled call" : "call"
    [all...]
Dispatcher.java 46 /** Running calls. Includes canceled calls that haven't finished yet. */
49 /** In-flight synchronous calls. Includes canceled calls that haven't finished yet. */
126 call.get().canceled = true;
  /frameworks/base/services/core/java/com/android/server/am/
PendingIntentRecord.java 50 boolean canceled = false; field in class:PendingIntentRecord
226 if (whitelistDuration > 0 && !canceled) {
242 if (!canceled) {
246 canceled = true;
361 if (!canceled) {
397 if (sent || canceled) {
399 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;
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 212 boolean canceled;
216 canceled = true;
222 if (canceled)
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/
MpegTsPlayer.java 453 private boolean canceled; field in class:MpegTsPlayer.InternalRendererBuilderCallback
456 canceled = true;
461 if (!canceled) {
468 if (!canceled) {
  /external/boringssl/src/ssl/test/runner/
alert.go 63 alertUserCanceled: "user canceled",
  /prebuilts/go/darwin-x86/src/crypto/tls/
alert.go 65 alertUserCanceled: "user canceled",
  /prebuilts/go/linux-x86/src/crypto/tls/
alert.go 65 alertUserCanceled: "user canceled",
  /hardware/ti/omap4-aah/camera/inc/
Encoder_libjpeg.h 57 bool canceled);
  /hardware/ti/omap4xxx/camera/inc/
Encoder_libjpeg.h 48 bool canceled);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
ImageLoader.java 355 boolean canceled = request.removeContainerAndCancelIfNecessary(this);
356 if (canceled) {
439 * @return True if the request was canceled, false otherwise.
466 // If one of the callers in the batched request canceled the request
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 87 volatile bool canceled; member in struct:android::SQLiteConnection
90 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
110 return connection->canceled;
772 connection->canceled = true;
778 connection->canceled = false;
    [all...]

Completed in 4502 milliseconds

1 2 3 4 5 6 7