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

1 2 3 4 5

  /external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
SoftTextDialogInputListener.java 40 public static int COMPLETE = 0;
  /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
49 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 242 COMPLETE, /* The post dial string playback is complete */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/arpa/
ftp.h 41 #define COMPLETE 2 /* positive completion */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
ftp.h 41 #define COMPLETE 2 /* positive completion */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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 208 item->SetState(DownloadItem::COMPLETE);
270 item->SetState(DownloadItem::COMPLETE);
311 item->SetState(DownloadItem::COMPLETE);
360 item2->SetState(DownloadItem::COMPLETE);
381 item2->SetState(DownloadItem::COMPLETE);
403 item1->SetState(DownloadItem::COMPLETE);
404 item3->SetState(DownloadItem::COMPLETE);
459 item->SetState(DownloadItem::COMPLETE);
461 items[i]->SetState(DownloadItem::COMPLETE);
494 item->SetState(DownloadItem::COMPLETE);
    [all...]
download_target_determiner.cc 131 // return QUIT_DOLOOP. In this case, an inner DoLoop() may complete the target
134 if (result == COMPLETE)
200 return COMPLETE;
426 return COMPLETE;
437 return COMPLETE;
443 return COMPLETE;
456 return COMPLETE;
478 return COMPLETE;
642 // complete or the download item is destroyed. The callback is always invoked
download_item_model_unittest.cc 301 { 0, 0, false, true, false, "Opening when complete" },
302 { 1, 0, false, true, false, "Opening when complete" },
303 { 0, 2, false, true, false, "Opening when complete" },
304 { 1, 2, false, true, false, "Opening when complete" },
379 { DownloadItem::COMPLETE, false, false, false, false},
380 { DownloadItem::COMPLETE, false, true , false, false},
381 { DownloadItem::COMPLETE, false, false, true , true },
382 { DownloadItem::COMPLETE, false, true , true , true },
download_target_determiner.h 66 // determination is complete or after |download| is destroyed.
83 // handler returns COMPLETE.
109 // Target determination is complete.
110 COMPLETE
132 // COMPLETE. Note that as a result, this object might be deleted. So |this|
141 // - STATE_NONE : If the download is not in progress, returns COMPLETE.
209 // target determination is complete. The determination assumes that the
212 // - STATE_NONE: Returns COMPLETE.
230 // target determination is complete.
download_ui_controller.cc 147 // Can't be complete. That would imply that we didn't receive an
149 DCHECK_NE(content::DownloadItem::COMPLETE, item->GetState());
  /external/chromium/chrome/browser/download/
save_item.cc 51 // complete.
67 // Small downloads might be complete before method has a chance to run.
88 state_ = COMPLETE;
96 case COMPLETE:
download_item_model.cc 79 case DownloadItem::COMPLETE:
123 case DownloadItem::COMPLETE:
save_item.h 23 COMPLETE,
45 // Rough percent complete, -1 means we don't know (since we didn't receive a
  /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
  /external/chromium_org/v8/src/
incremental-marking.h 46 COMPLETE
74 inline bool IsComplete() { return state() == COMPLETE; }
120 if (state_ == COMPLETE) {
  /external/v8/src/
incremental-marking.h 46 COMPLETE
72 inline bool IsComplete() { return state() == COMPLETE; }
117 if (state_ == COMPLETE) {
  /packages/apps/Settings/tests/src/com/android/settings/bluetooth/
Utf8ByteLengthFilterTest.java 35 level = TestLevel.COMPLETE,
41 level = TestLevel.COMPLETE,
  /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));

Completed in 475 milliseconds

1 2 3 4 5