HomeSort by relevance Sort by last modified time
    Searched defs:complete (Results 76 - 100 of 627) sorted by null

1 2 34 5 6 7 8 91011>>

  /system/core/liblog/include/log/
log_event_list.h 66 uint16_t complete; member in struct:__anon2795
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionMonitor.java 40 * - will trigger ActionExecutedListener once local processing complete and
42 * worker response) is complete
118 protected static final int STATE_COMPLETE = 8; // Action complete
197 * Return flag to indicate if action is complete
200 boolean complete = false;
202 complete = (mState == STATE_COMPLETE);
204 return complete;
286 * Mark action complete
294 private final void complete(final Action action, method in class:ActionMonitor
331 * Mark action complete
    [all...]
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
AutomaticActivity.java 64 void complete() {}; method in class:AutomaticActivity.FinalCallback
217 c.complete();
  /frameworks/support/compat/src/main/java/androidx/core/app/
JobIntentService.java 89 * complete}
265 public void complete() { method in class:JobIntentService.JobServiceEngineImpl.WrapperWorkItem
352 void complete(); method in interface:JobIntentService.GenericWorkItem
374 public void complete() { method in class:JobIntentService.CompatWorkItem
394 work.complete();
547 * here. Upon returning, that work will be considered complete and either the next
  /bionic/tests/
time_test.cpp 568 volatile bool complete; member in struct:TimerDeleteData
576 tdd->complete = true;
588 tdd.complete = false;
599 while (!tdd.complete && (time(NULL) - cur_time) < 5);
600 ASSERT_TRUE(tdd.complete);
  /cts/tests/openglperf2/src/android/opengl2/cts/primitive/
GLPrimitiveActivity.java 93 private void complete() { method in class:GLPrimitiveActivity
126 complete(); method
157 complete(); method
163 complete(); method
  /cts/tests/tests/print/src/android/print/cts/
PrintDocumentInfoTest.java 112 printJob.complete();
310 printJob.complete();
PrintDocumentAdapterContractTest.java     [all...]
  /device/google/contexthub/firmware/os/algos/calibration/accelerometer/
accel_cal.c 208 int complete = 0; local
214 complete = 1;
218 return complete;
225 return complete;
236 int complete = 0.0f; local
258 return complete;
276 complete = 1;
282 return complete;
288 int complete = 0; local
351 complete = 0
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 100 /** Whether the digest authentication process is complete */
101 private boolean complete; field in class:DigestScheme
117 this.complete = false;
163 this.complete = true;
177 return this.complete;
  /external/elfutils/libdwfl/
relocate.c 590 size_t complete = 0; local
609 ++complete;
639 ++complete;
653 if (!partial || complete == nrels)
659 else if (complete != 0)
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CalendarICU.java 87 protected void complete() {} method in class:CalendarICU
  /external/jline/src/src/main/java/jline/
ArgumentCompletor.java 135 public int complete(final String buffer, final int cursor, method in class:ArgumentCompletor
164 if (sub.complete(arg, arg.length(), subCandidates) == -1) {
173 int ret = comp.complete(list.getCursorArgument(), argpos, candidates);
233 * @param buffer the complete command buffer
306 * @param buffer the complete command buffer
  /external/mesa3d/src/mesa/main/
texstate.c 551 /* If we've reached this point, we didn't find a complete texture of the
556 * texture is not complete, as defined in section 8.17, (0, 0, 0, 1)
616 bool complete; local
654 complete = false;
667 complete = true;
672 if (!complete)
  /external/tensorflow/tensorflow/core/kernels/
map_stage_op.cc 287 // Update with given data and insert complete entries
307 bool complete = local
312 if (complete) {
  /external/turbine/java/com/google/turbine/binder/
Binder.java 174 public SourceHeaderBoundClass complete(
225 public Const.Value complete(Env<FieldSymbol, Const.Value> env1, FieldSymbol k) { method
  /external/webp/include/webp/
demux.h 82 WEBP_DEMUX_PARSED_HEADER = 1, // Header parsing complete,
150 int complete; // true if 'fragment' contains a full frame. partial images member in struct:WebPIterator
165 // Call WebPDemuxReleaseIterator() when use of the iterator is complete.
203 // Call WebPDemuxReleaseChunkIterator() when use of the iterator is complete.
  /external/webp/src/webp/
demux.h 82 WEBP_DEMUX_PARSED_HEADER = 1, // Header parsing complete,
150 int complete; // true if 'fragment' contains a full frame. partial images member in struct:WebPIterator
165 // Call WebPDemuxReleaseIterator() when use of the iterator is complete.
203 // Call WebPDemuxReleaseChunkIterator() when use of the iterator is complete.
  /frameworks/base/core/java/android/printservice/
PrintJob.java 134 * @see #complete()
166 * @see #complete()
258 public boolean complete() { method in class:PrintJob
  /libcore/ojluni/src/main/java/java/util/concurrent/
CountedCompleter.java 97 * {@link #complete}, {@link ForkJoinTask#cancel},
117 * to complete for some elements than others, either because of
253 * tryComplete(); // normally complete whether or not found
335 * tryComplete}, or (2) by any of its subtasks when they complete and
459 * method {@link #complete} is invoked. By default, this method
571 * and then similarly tries to complete this task's completer,
572 * if one exists, else marks this task as complete.
593 * otherwise, similarly tries to complete this task's completer, if
594 * one exists, else marks this task as complete. This method may be
615 * complete and further triggers {@link #tryComplete} on thi
631 public void complete(T rawResult) { method in class:CountedCompleter
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/beam/
BluetoothOppHandover.java 94 void complete() { method in class:BluetoothOppHandover
126 complete(); method
  /packages/services/BuiltInPrintService/src/com/android/bips/
LocalPrintJob.java 85 * @param callback Callback to be issued when job processing is complete
283 mPrintJob.complete();
  /libcore/jsr166-tests/src/test/java/jsr166/
CompletableFutureTest.java 218 * complete completes normally, as indicated by methods isDone,
226 assertTrue(f.complete(v1));
227 assertFalse(f.complete(v1));
264 assertTrue(f.complete(one));
291 assertTrue(f.complete(v1));
311 assertFalse(f.complete(v1));
330 assertTrue(f.complete(v1));
347 assertTrue(f.complete("foo"));
534 assertTrue(f.complete(inc(x)));
845 if (!createIncomplete) assertTrue(f.complete(v1))
3063 fs[i].complete(one); method
3080 fs[i].complete(one); method
3099 fs[i].complete(i); method
3136 fs[i].complete(i); method
3151 fs[i].complete(i); method
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsRecorder.java 164 * Load complete history represented by {@link FileRotator}. Caches
228 final NetworkStatsCollection complete = mComplete != null ? mComplete.get() : null; local
278 // also record against complete dataset when present
279 if (complete != null) {
280 complete.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
358 final NetworkStatsCollection complete = mComplete != null ? mComplete.get() : null; local
359 if (complete != null) {
360 complete.removeUids(uids);
479 pw.println("Complete history:");
  /external/apache-http/android/src/android/net/http/
Connection.java 203 req.complete();
442 req.complete();

Completed in 841 milliseconds

1 2 34 5 6 7 8 91011>>