HomeSort by relevance Sort by last modified time
    Searched defs:complete (Results 1 - 25 of 476) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/suite/audio_quality/lib/src/task/
TaskInput.cpp 83 TaskGeneric::ExecutionResult TaskInput::complete() function in class:TaskInput
TaskOutput.cpp 84 TaskGeneric::ExecutionResult TaskOutput::complete() function in class:TaskOutput
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/
type_printers.py 93 def complete(self, text, word): member in class:_EnableOrDisableCommand
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/
type_printers.py 93 def complete(self, text, word): member in class:_EnableOrDisableCommand
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rlcompleter.py 12 readline.parse_and_bind("tab: complete")
56 readline.set_completer(Completer(my_namespace).complete)
71 def complete(self, text, state): member in class:Completer
166 readline.set_completer(Completer().complete)
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
type_printers.py 93 def complete(self, text, word): member in class:_EnableOrDisableCommand
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/lib/python2.7/
rlcompleter.py 12 readline.parse_and_bind("tab: complete")
56 readline.set_completer(Completer(my_namespace).complete)
71 def complete(self, text, state): member in class:Completer
166 readline.set_completer(Completer().complete)
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
type_printers.py 93 def complete(self, text, word): member in class:_EnableOrDisableCommand
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/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py 12 readline.parse_and_bind("tab: complete")
56 readline.set_completer(Completer(my_namespace).complete)
71 def complete(self, text, state): member in class:Completer
166 readline.set_completer(Completer().complete)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py 12 readline.parse_and_bind("tab: complete")
56 readline.set_completer(Completer(my_namespace).complete)
71 def complete(self, text, state): member in class:Completer
166 readline.set_completer(Completer().complete)
  /cts/tests/tests/app/src/android/app/cts/
ApplyOverrideConfigurationActivity.java 56 mOnConfigurationChangedFuture.complete(new Configuration(newConfig));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFA.java 47 public boolean complete; field in class:NFA
  /external/chromium-trace/catapult/firefighter/update/common/buildbot/
build.py 49 def complete(self): member in class:Build
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
base_cli.py 93 def complete(self, text, state): member in class:_SmartCompleter
99 return rlcompleter.Completer.complete(self, text, state)
114 readline.parse_and_bind('tab: complete')
115 readline.set_completer(_SmartCompleter(new_locals).complete)
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
task_io_service_operation.hpp 31 void complete(task_io_service& owner, function in class:asio::detail::ASIO_INHERIT_TRACKED_HANDLER
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
DataMore.java 19 private boolean complete; field in class:DataMore
26 public DataMore(String id, int age, boolean complete) {
28 this.complete = complete;
32 return complete;
35 public void setComplete(boolean complete) {
36 this.complete = complete;
41 return "DataMore [complete=" + complete + ", toString()=" + super.toString() + "]"
    [all...]
  /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/skia/src/pathops/
SkOpEdgeBuilder.h 37 void complete() { function in class:SkOpEdgeBuilder
39 fCurrentContour->complete();
  /frameworks/base/core/java/android/os/
SynchronousResultReceiver.java 54 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
  /system/weaved/buffet/
binder_command_proxy.cc 124 android::binder::Status BinderCommandProxy::complete( function in class:buffet::BinderCommandProxy
133 status = ToStatus(command->Complete(*dict, &error), &error);
  /external/jetty/src/java/org/eclipse/jetty/continuation/
Continuation.java 91 * <h3>Suspend/Complete Usage</h3>
93 * The suspend/complete style is used when an asynchronous handler is used to
123 * continuation.complete()
128 * If a continuation is suspended, but neither {@link #complete()} or {@link #resume()} is
136 * may write a response and call {@link #complete()}. If {@link #complete()} is not called,
181 * <li>a call to {@link #complete()}.</li>
186 * is expected. If a call to {@link #complete()} is expected, then the
216 * <li>a call to {@link #complete()}.</li>
220 * Typically suspend with a response argument is uses when a call to {@link #complete()}
308 void complete(); method in interface:Continuation
    [all...]

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>