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

1 2 3 4

  /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/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/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...]
firefox2_importer.cc 62 if ((items & importer::HOME_PAGE) && !cancelled())
68 if ((items & importer::HISTORY) && !cancelled()) {
74 if ((items & importer::FAVORITES) && !cancelled()) {
79 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
84 if ((items & importer::PASSWORDS) && !cancelled()) {
170 for (size_t i = 0; i < lines.size() && (!importer || !importer->cancelled());
317 if (!bookmarks.empty() && !cancelled()) {
326 !cancelled()) {
356 if (!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
IncomingFileTransfer.java 212 setStatus(Status.cancelled);
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceRequest.h 42 void didFail(bool cancelled = false);
CachedResourceRequest.cpp 179 void CachedResourceRequest::didFail(bool cancelled)
184 LOG(ResourceLoading, "Failed to load '%s' (cancelled=%d).\n", m_resource->url().latin1().data(), cancelled);
197 if (!cancelled) {
202 if (cancelled || !m_resource->isPreloaded())
  /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/webkit/Source/WebCore/loader/
SubresourceLoader.cpp 184 if (cancelled())
196 if (cancelled())
204 if (cancelled())
216 if (cancelled())
232 if (cancelled())
265 // The SubResourceLoaderClient may have cancelled this ResourceLoader in response to the challenge.
  /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 168 "cancelLoad: still waiting for cancelled task; dropping next");
184 boolean cancelled = mTask.cancel(false);
185 if (DEBUG) Slog.v(TAG, "cancelLoad: cancelled=" + cancelled);
186 if (cancelled) {
191 return cancelled;
233 if (DEBUG) Slog.v(TAG, "Cancelled task is now canceled!");
  /frameworks/support/v4/java/android/support/v4/content/
AsyncTaskLoader.java 124 * method requests that the load be cancelled, and notes this is the case;
127 * it will be held until the cancelled load is complete.
129 * @return Returns <tt>false</tt> if the task could not be cancelled,
141 "cancelLoad: still waiting for cancelled task; dropping next");
157 boolean cancelled = mTask.cancel(false);
158 if (DEBUG) Log.v(TAG, "cancelLoad: cancelled=" + cancelled);
159 if (cancelled) {
163 return cancelled;
202 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!")
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DropTarget.java 60 /** Indicates that the drag operation was cancelled */
61 public boolean cancelled = false; field in class:DropTarget.DragObject
  /external/chromium/net/spdy/
spdy_http_stream.cc 87 CHECK(!stream_->cancelled());
220 CHECK(!stream_->cancelled());
424 // If the transaction is cancelled or errored out, we don't need to complete
426 if (!stream_ || stream_->response_status() != OK || stream_->cancelled())

Completed in 447 milliseconds

1 2 3 4