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

1 2 3

  /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...]
  /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...]
  /external/chromium/chrome/browser/ui/views/tabs/
tab_controller.h 58 // Ends dragging a Tab. |canceled| is true if the drag was aborted in a way
61 virtual bool EndDrag(bool canceled) = 0;
  /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/chromium/net/base/
cert_verifier.cc 112 bool canceled() const { return !callback_; } function in class:net::CertVerifierRequest
199 bool canceled; local
202 canceled = canceled_;
203 if (!canceled) {
209 if (canceled)
271 if ((*i)->canceled()) {
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_gtk.h 69 // Ends dragging a Tab. |canceled| is true if the drag was aborted in a way
72 virtual bool EndDrag(bool canceled) = 0;
159 // Ends the dragging operations. |canceled| is true if the operation was
160 // canceled.
161 void EndDrag(bool canceled);
tab_gtk.cc 98 // is canceled.
237 bool canceled = (result == GTK_DRAG_RESULT_USER_CANCELLED); local
238 EndDrag(canceled);
375 void TabGtk::EndDrag(bool canceled) {
393 delegate_->EndDrag(canceled);
dragged_tab_controller_gtk.h 42 // Complete the current drag session. If the drag session was canceled
43 // because the user pressed Escape or something interrupted it, |canceled|
46 bool EndDrag(bool canceled);
65 // The drag session was canceled (alt-tab during drag, escape ...)
66 CANCELED,
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 40 boolean canceled = false; field in class:PendingIntentRecord
201 if (!canceled) {
205 canceled = true;
308 if (!canceled) {
344 if (sent || canceled) {
346 pw.print(" canceled="); pw.println(canceled);
  /external/chromium/chrome/browser/chromeos/
version_loader.cc 139 if (request->canceled())
184 if (request->canceled())
  /external/smack/src/org/jivesoftware/smackx/provider/
AdHocCommandDataProvider.java 62 else if (AdHocCommand.Status.canceled.toString().equalsIgnoreCase(status)) {
63 adHocCommandData.setStatus(AdHocCommand.Status.canceled);
  /external/chromium/chrome/browser/geolocation/
access_token_store.cc 41 if (request->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;
  /external/webkit/Source/WebCore/page/
EventSource.cpp 238 int canceled = error.isCancellation(); local
239 if (((m_state == CONNECTING) && !canceled) || ((m_state == OPEN) && canceled))
  /external/chromium/chrome/browser/history/
history_backend.cc     [all...]
top_sites_backend.cc 102 if (request->canceled())
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 212 boolean canceled;
216 canceled = true;
222 if (canceled)
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkManager.js 203 loadingFailed: function(identifier, time, localizedDescription, canceled)
210 resource.canceled = canceled;
  /external/chromium/chrome/browser/chromeos/cros/
syslogs_library.cc 92 if (request->canceled())
  /external/chromium/chrome/browser/
icon_manager.cc 67 if (client_request.request->canceled()) {
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommand.java 366 * The command has been canceled. The command session has ended.
368 canceled enum constant in enum:AdHocCommand.Status
380 * The command should be canceled.
436 * (either because it was completed, canceled, or timed out).
  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 329 boolean canceled = request.removeContainerAndCancelIfNecessary(this);
330 if (canceled) {
413 * @return True if the request was canceled, false otherwise.
441 // If one of the callers in the batched request canceled the request
  /external/chromium/chrome/browser/download/
save_package.h 125 bool canceled() const { return user_canceled_ || disk_error_occurred_; } function in class:SavePackage
289 // Indicates whether user canceled the saving job.
  /external/chromium/chrome/browser/password_manager/
password_store.cc 24 if (canceled()) {

Completed in 671 milliseconds

1 2 3