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

1 2 3 4 5

  /libcore/dalvik/src/main/java/dalvik/annotation/
TestLevel.java 29 COMPLETE,
55 * and {@code COMPLETE}.
61 * method for which there already exists one {@code COMPLETE} or a set of
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRouteDirector.java 54 /** Indicates that the route is complete. */
55 public final static int COMPLETE = 0;
BasicRouteDirector.java 129 return COMPLETE;
177 return COMPLETE;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 30 COMPLETE,
41 * @return Localized message for UI display, valid only in COMPLETE
54 * State becomes CANCELLED unless already COMPLETE or FAILED
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/arpa/
ftp.h 41 #define COMPLETE 2 /* positive completion */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/arpa/
ftp.h 41 #define COMPLETE 2 /* positive completion */
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Utf8.java 57 * bytes in a complete UTF-8 byte sequences can be stored in multiple
59 * byte sequence is definitely not well-formed, {@link #COMPLETE} if it is
72 * complete (no further bytes are needed to complete a character).
74 public static final int COMPLETE = 0;
119 * partialIsValidUtf8(bytes, index, limit) == Utf8.COMPLETE}.
122 return partialIsValidUtf8(bytes, index, limit) == COMPLETE;
131 * @param state either {@link Utf8#COMPLETE} (if this is the initial decoding
136 * definitely not well-formed, {@link #COMPLETE} if it is well-formed
145 if (state != COMPLETE) {
    [all...]
  /external/blktrace/
act_mask.c 23 DECLARE_MASK_MAP(COMPLETE),
  /external/chromium_org/chrome/browser/download/
download_path_reservation_tracker_unittest.cc 183 SetDownloadItemState(item.get(), DownloadItem::COMPLETE);
245 SetDownloadItemState(item.get(), DownloadItem::COMPLETE);
286 SetDownloadItemState(item.get(), DownloadItem::COMPLETE);
335 SetDownloadItemState(item2.get(), DownloadItem::COMPLETE);
356 SetDownloadItemState(item2.get(), DownloadItem::COMPLETE);
378 SetDownloadItemState(item1.get(), DownloadItem::COMPLETE);
379 SetDownloadItemState(item3.get(), DownloadItem::COMPLETE);
434 SetDownloadItemState(item.get(), DownloadItem::COMPLETE);
436 SetDownloadItemState(items[i].get(), DownloadItem::COMPLETE);
468 SetDownloadItemState(item.get(), DownloadItem::COMPLETE);
    [all...]
drag_download_item_views.cc 35 DCHECK_EQ(content::DownloadItem::COMPLETE, download->GetState());
download_item_model_unittest.cc 310 { 0, 0, false, true, false, "Opening when complete" },
311 { 1, 0, false, true, false, "Opening when complete" },
312 { 0, 2, false, true, false, "Opening when complete" },
313 { 1, 2, false, true, false, "Opening when complete" },
388 { DownloadItem::COMPLETE, false, false, false, false},
389 { DownloadItem::COMPLETE, false, true , false, false},
390 { DownloadItem::COMPLETE, false, false, true , true },
391 { DownloadItem::COMPLETE, false, true , true , true },
download_target_determiner.cc 161 // return QUIT_DOLOOP. In this case, an inner DoLoop() may complete the target
164 if (result == COMPLETE)
230 return COMPLETE;
642 return COMPLETE;
653 return COMPLETE;
659 return COMPLETE;
672 return COMPLETE;
694 return COMPLETE;
862 // complete or the download item is destroyed. The callback is always invoked
    [all...]
download_browsertest.cc 161 if (item_->GetState() == DownloadItem::COMPLETE) {
175 (item_->GetState() == DownloadItem::COMPLETE &&
181 if (item_->GetState() == DownloadItem::COMPLETE && waiting_)
617 // Waits for the download to complete.
619 EXPECT_EQ(1u, observer->NumDownloadsSeenInState(DownloadItem::COMPLETE));
650 // A version of CheckDownload that allows complete path specification.
739 // The mock system will not complete until it gets a special URL.
763 EXPECT_EQ(1u, observer->NumDownloadsSeenInState(DownloadItem::COMPLETE));
764 CheckDownloadStatesForBrowser(browser, 1, DownloadItem::COMPLETE);
    [all...]
  /external/chromium_org/content/browser/download/
save_item.cc 52 // complete.
68 // Small downloads might be complete before method has a chance to run.
89 state_ = COMPLETE;
97 case COMPLETE:
save_item.h 24 COMPLETE,
46 // Rough percent complete, -1 means we don't know (since we didn't receive a
drag_download_file.cc 110 if (state == DownloadItem::COMPLETE ||
115 on_completed_, state == DownloadItem::COMPLETE));
129 download_item_->GetState() == DownloadItem::COMPLETE;
download_browsertest.cc 497 return download->GetState() == DownloadItem::COMPLETE;
803 NavigateToURLAndWaitForDownload(shell(), url, DownloadItem::COMPLETE);
813 ASSERT_EQ(DownloadItem::COMPLETE, download2->GetState());
819 EXPECT_EQ(1u, observer2->NumDownloadsSeenInState(DownloadItem::COMPLETE));
857 NavigateToURLAndWaitForDownload(shell(), url, DownloadItem::COMPLETE);
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
StorageTest.java 111 private enum BodyType { COMPLETE, CHUNKED }
115 CacheStatus.DIRTY, BodyType.COMPLETE,
127 CacheStatus.CLEAN, BodyType.COMPLETE,
139 CacheStatus.DIRTY, BodyType.COMPLETE,
151 CacheStatus.CLEAN, BodyType.COMPLETE,
  /external/chromium_org/v8/src/
incremental-marking.h 23 COMPLETE
51 inline bool IsComplete() { return state() == COMPLETE; }
97 if (state_ == COMPLETE) {
  /packages/apps/Settings/tests/src/com/android/settings/bluetooth/
Utf8ByteLengthFilterTest.java 35 level = TestLevel.COMPLETE,
41 level = TestLevel.COMPLETE,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneMmiCode.java 294 ret.mState = State.COMPLETE;
478 // Complete or failed cannot be cancelled
479 if (mState == State.COMPLETE || mState == State.FAILED) {
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8TestUtil.java 242 int state1 = Utf8.partialIsValidUtf8(Utf8.COMPLETE, bytes, 0, i);
245 if (isRoundTrippable != (state3 == Utf8.COMPLETE)) {
250 assertEquals(isRoundTrippable, (state3 == Utf8.COMPLETE));
265 x.partialIsValidUtf8(Utf8.COMPLETE, 0, numBytes));
268 x.partialIsValidUtf8(Utf8.COMPLETE, 0, i));
270 x.substring(0, i).partialIsValidUtf8(Utf8.COMPLETE, 0, i));
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapMessage.java 74 UNKNOWN, COMPLETE, FRACTIONED, NOTIFICATION
157 if ("complete".equals(s)) {
158 return ReceptionStatus.COMPLETE;
  /external/chromium_org/content/browser/service_worker/
service_worker_register_job.cc 42 phase_ == INITIAL || phase_ == COMPLETE || phase_ == ABORT)
139 case COMPLETE:
140 DCHECK(phase_ != INITIAL && phase_ != COMPLETE) << phase_;
157 Complete(status);
176 Complete(SERVICE_WORKER_OK);
207 Complete(status);
224 Complete(status);
253 Complete(status);
260 // version and complete the job, throwing away the new version
294 Complete(status)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 247 ret.mState = State.COMPLETE;
444 // Complete or failed cannot be cancelled
445 if (mState == State.COMPLETE || mState == State.FAILED) {
864 * Note: If REQUEST, this exchange is complete, but the session remains
    [all...]

Completed in 1121 milliseconds

1 2 3 4 5