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

1 2 3 4 5 6

  /libcore/luni/src/main/java/java/util/
TimerTask.java 31 /* If timer was cancelled */
32 boolean cancelled; field in class:TimerTask
93 boolean willRun = !cancelled && when > 0;
94 cancelled = true;
Timer.java 46 * cancelled may hold resources indefinitely.
146 if (timers[i].cancelled) {
170 private boolean cancelled; field in class:Timer.TimerImpl
204 // need to check cancelled inside the synchronized block
205 if (cancelled) {
226 if (task.cancelled) {
251 if (task.cancelled) {
289 cancelled = true;
306 cancelled = true;
560 if (impl.cancelled) {
    [all...]
  /external/chromium_org/crypto/
crypto_module_blocking_password_delegate.h 24 // The implementation should set |*cancelled| to true if the user cancelled
28 bool* cancelled) = 0;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowVibrator.java 11 private boolean cancelled; field in class:ShadowVibrator
31 cancelled = true;
40 return cancelled;
  /external/chromium/crypto/
crypto_module_blocking_password_delegate.h 25 // The implementation should set |*cancelled| to true if the user cancelled
29 bool* cancelled) = 0;
  /external/chromium_org/chrome/utility/importer/
importer.h 31 bool cancelled() const { return cancelled_; } function in class:Importer
bookmarks_file_importer.cc 21 return importer->cancelled();
98 if (!bookmarks.empty() && !cancelled()) {
firefox_importer.cc 112 if ((items & importer::HOME_PAGE) && !cancelled()) {
121 if ((items & importer::HISTORY) && !cancelled()) {
127 if ((items & importer::FAVORITES) && !cancelled()) {
132 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
137 if ((items & importer::PASSWORDS) && !cancelled()) {
168 while (s.Step() && !cancelled()) {
185 if (!rows.empty() && !cancelled())
236 while (s.Step() && !cancelled())
323 if (!bookmarks.empty() && !cancelled()) {
328 if (!url_keywords.empty() && !cancelled()) {
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
AppTask.java 55 private boolean cancelled, finished; field in class:AppTask
75 cancelled = true;
121 return cancelled;
130 return finished || cancelled || (exception != null);
  /external/smack/src/org/jivesoftware/smack/
PacketCollector.java 48 private boolean cancelled = false; field in class:PacketCollector
77 * queued up. Once a packet collector has been cancelled, it cannot be
81 // If the packet collector has already been cancelled, do nothing.
82 if (!cancelled) {
83 cancelled = true;
  /external/smack/src/org/jivesoftware/smackx/packet/
MessageEvent.java 54 * event is cancelled first.</li>
65 public static final String CANCELLED = "cancelled";
71 private boolean cancelled = true; field in class:MessageEvent
145 * When the message is a notification returns if the receiver of the message cancelled
148 * @return true if the receiver of the message cancelled composing a reply
151 return cancelled;
176 allEvents.add(MessageEvent.CANCELLED);
244 * When the message is a notification sets if the receiver of the message cancelled
246 * The Cancelled event is never requested explicitly. It is requested implicitly whe
    [all...]
  /external/chromium/chrome/browser/importer/
importer.h 43 bool cancelled() const { return cancelled_; } function in class:Importer
firefox3_importer.cc 78 if ((items & importer::HOME_PAGE) && !cancelled())
84 if ((items & importer::HISTORY) && !cancelled()) {
90 if ((items & importer::FAVORITES) && !cancelled()) {
95 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
100 if ((items & importer::PASSWORDS) && !cancelled()) {
133 while (s.Step() && !cancelled()) {
150 if (!rows.empty() && !cancelled())
198 while (s.Step() && !cancelled())
291 if (!bookmarks.empty() && !cancelled()) {
299 if (!template_urls.empty() && !cancelled()) {
    [all...]
toolbar_importer.cc 54 // their thread-safe implementation requires that they are cancelled from the
102 if (cancelled()) {
139 if ((items_to_import_ & importer::FAVORITES) && !cancelled()) {
149 if (!cancelled())
187 if (cancelled()) {
214 if (cancelled()) {
248 if (cancelled()) {
256 if (reader.Load(response) && !cancelled()) {
553 if (!bookmarks.empty() && !cancelled()) {
ie_importer.cc 94 if ((items & importer::HOME_PAGE) && !cancelled())
97 if ((items & importer::HISTORY) && !cancelled()) {
102 if ((items & importer::FAVORITES) && !cancelled()) {
107 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
112 if ((items & importer::PASSWORDS) && !cancelled()) {
137 if (!bookmarks.empty() && !cancelled()) {
165 while (!cancelled() &&
198 if (!rows.empty() && !cancelled()) {
246 while (!cancelled() && SUCCEEDED(item->Next(1, &item_name, 0))) {
336 while (reg_iterator.Valid() && !cancelled()) {
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
mouse_drag_controller.h 10 // When Drag is cancelled by hitting ESC key, we may still receive
35 - (void)dragEnded:(BOOL)cancelled;
  /external/chromium_org/chrome/browser/ui/panels/
panel_resize_controller.h 33 Panel* EndResizing(bool cancelled);
53 // Bounds to restore the panel to if resize is cancelled.
panel_drag_controller.h 31 void EndDragging(bool cancelled);
  /external/chromium_org/chrome/browser/ui/
crypto_module_password_dialog.cc 42 bool* cancelled) OVERRIDE {
57 *cancelled = cancelled_;
  /external/chromium/chrome/browser/ui/panels/
panel_manager.h 55 void EndDragging(bool cancelled);
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransfer.java 132 * Returns true if the transfer has been cancelled, if it has stopped because
135 * @return Returns true if the transfer has been cancelled, if it has stopped
139 return status == Status.cancelled || status == Status.error
230 } while (count != -1 && !getStatus().equals(Status.cancelled));
233 if (!getStatus().equals(Status.cancelled) && getError() == Error.none
305 * The file transfer was cancelled
307 cancelled("Cancelled"); enum constant in enum:FileTransfer.Status
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DelayedLaunchInfo.java 232 * Set if launch has been cancelled
234 public void setCancelled(boolean cancelled) {
235 this.mCancelled = cancelled;
239 * @return true if launch has been cancelled
  /external/chromium/chrome/browser/chromeos/
wm_overview_controller.h 116 // Hide the snapshot windows. When |cancelled| is true, then the
119 void Hide(bool cancelled);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
VibratorTest.java 48 public void cancelled() { method in class:VibratorTest
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 177 "cancelLoad: still waiting for cancelled task; dropping next");
193 boolean cancelled = mTask.cancel(false);
194 if (DEBUG) Slog.v(TAG, "cancelLoad: cancelled=" + cancelled);
195 if (cancelled) {
200 return cancelled;
242 if (DEBUG) Slog.v(TAG, "Cancelled task is now canceled!");

Completed in 528 milliseconds

1 2 3 4 5 6