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

12 3 4 5 6 7 8 91011>>

  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
ConfigCompletorTest.java 47 mConfigCompletor.complete(buffer, buffer.length(), mCandidates);
56 mConfigCompletor.complete(buffer, buffer.length(), mCandidates);
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 69 /** Whether the basic authentication process is complete */
70 private boolean complete; field in class:BasicScheme
77 this.complete = false;
101 this.complete = true;
111 return this.complete;
  /external/autotest/frontend/client/src/autotest/common/
StatusSummary.java 11 public int complete = 0; field in class:StatusSummary
22 summary.complete = getField(group, completeCountField);
59 return complete;
  /external/mesa3d/src/mesa/main/
dlist.h 59 bool complete; /**< Is the atlas ready to use? */ member in struct:gl_bitmap_atlas
  /external/python/cpython2/Lib/idlelib/idle_test/
test_autocomplete.py 11 def complete(): member in class:AutoCompleteWindow
94 # If autocomplete window is open, complete() method is called
  /external/python/cpython3/Lib/idlelib/idle_test/
test_autocomplete.py 15 def complete(): member in class:AutoCompleteWindow
103 # If autocomplete window is open, complete() method is called
  /external/skia/src/pathops/
SkOpEdgeBuilder.h 36 void complete() { function in class:SkOpEdgeBuilder
40 contour->complete();
  /external/skqp/src/pathops/
SkOpEdgeBuilder.h 36 void complete() { function in class:SkOpEdgeBuilder
40 contour->complete();
  /external/turbine/java/com/google/turbine/binder/env/
LazyEnv.java 72 v = completer.complete(rec, sym);
83 V complete(Env<S, T> env, S k); method in interface:LazyEnv.Completer
86 /** Indicates that a completer tried to complete itself, possibly transitively. */
  /frameworks/base/core/java/android/os/
SynchronousResultReceiver.java 64 mFuture.complete(new Result(resultCode, resultData));
  /hardware/intel/common/wrs_omxil_core/utils/inc/
workqueue.h 85 pthread_cond_t complete; member in class:WorkQueue::FlushBarrier
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
frame_filters.py 187 # If we only have one completion, complete it and return it.
236 def complete(self, text, word): member in class:EnableFrameFilter
270 def complete(self, text, word): member in class:DisableFrameFilter
355 def complete(self, text, word): member in class:SetFrameFilterPriority
435 def complete(self, text, word): member in class:ShowFrameFilterPriority
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
frame_filters.py 187 # If we only have one completion, complete it and return it.
236 def complete(self, text, word): member in class:EnableFrameFilter
270 def complete(self, text, word): member in class:DisableFrameFilter
355 def complete(self, text, word): member in class:SetFrameFilterPriority
435 def complete(self, text, word): member in class:ShowFrameFilterPriority
  /external/jline/src/src/main/java/jline/
SimpleCompletor.java 64 * Complete candidates using the contents of the specified Reader.
71 * Complete candidates using the whitespearated values in
96 public int complete(final String buffer, final int cursor, final List clist) { method in class:SimpleCompletor
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ff_gs_emit.c 172 bool complete = false; local
178 complete = true;
185 * vertex, then we mark it as complete, and either end the thread or
190 if (!complete)
208 } while (!complete);
432 * ensure that all writes are complete by sending the final
  /external/python/cpython2/Lib/idlelib/
AutoCompleteWindow.py 149 def show_window(self, comp_lists, index, complete, mode, userWantsWin):
151 If complete is True, complete the text, and if there is exactly one
158 if complete:
375 def complete(self): member in class:AutoCompleteWindow
  /external/python/cpython2/Tools/scripts/
pindent.py 71 # The following wishes need a more complete tokenization of the source:
236 def complete(self): member in class:PythonIndenter
325 # end def complete
336 pi.complete()
355 pi.complete()
438 -c : complete a correctly indented program (add #end directives)
472 action = 'complete'
  /external/python/cpython3/Lib/idlelib/
autocomplete_w.py 151 def show_window(self, comp_lists, index, complete, mode, userWantsWin):
153 If complete is True, complete the text, and if there is exactly one
160 if complete:
385 def complete(self): member in class:AutoCompleteWindow
  /external/python/cpython3/Tools/scripts/
pindent.py 71 # The following wishes need a more complete tokenization of the source:
234 def complete(self): member in class:PythonIndenter
323 # end def complete
334 pi.complete()
353 pi.complete()
436 -c : complete a correctly indented program (add #end directives)
470 action = 'complete'
  /external/syslinux/gpxe/src/include/gpxe/
ib_mi.h 62 void ( * complete ) ( struct ib_device *ibdev, member in struct:ib_mad_transaction_operations
  /external/webrtc/webrtc/tools/rtcbot/
test.js 55 functions[i](complete.bind(this, i));
57 function complete(index, value) { function in function:wait
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PhonebookPullRequest.java 38 public boolean complete = false; field in class:PhonebookPullRequest
89 Log.d(TAG, "Sync complete: add=" + mEntries.size());
94 complete = true;
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
VvmNetworkRequest.java 92 * {@link CompletableFuture#get()} will block until {@link CompletableFuture# complete(Object) }
111 future.complete(new NetworkWrapper(network, this));
117 future.complete(null);
  /packages/services/Car/evs/app/
ConfigManager.cpp 54 bool complete = true; local
79 complete &= readChildNodeAsFloat("car", car, "width", &mCarWidth);
80 complete &= readChildNodeAsFloat("car", car, "wheelBase", &mWheelBase);
81 complete &= readChildNodeAsFloat("car", car, "frontExtent", &mFrontExtent);
82 complete &= readChildNodeAsFloat("car", car, "rearExtent", &mRearExtent);
95 complete &= readChildNodeAsFloat("display", displayNode, "frontRange", &mFrontRangeInCarSpace);
96 complete &= readChildNodeAsFloat("display", displayNode, "rearRange", &mRearRangeInCarSpace);
109 complete &= readChildNodeAsFloat("graphic", graphicNode, "frontPixel", &mCarGraphicFrontPixel);
110 complete &= readChildNodeAsFloat("display", graphicNode, "rearPixel", &mCarGraphicRearPixel);
187 return complete;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
AutoCompleteWindow.py 149 def show_window(self, comp_lists, index, complete, mode, userWantsWin):
151 If complete is True, complete the text, and if there is exactly one
158 if complete:
373 def complete(self): member in class:AutoCompleteWindow

Completed in 566 milliseconds

12 3 4 5 6 7 8 91011>>