Searched refs:complete (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
H A DDataMore.java19 private boolean complete; field in class:DataMore
26 public DataMore(String id, int age, boolean complete) { argument
28 this.complete = complete;
32 return complete;
35 public void setComplete(boolean complete) { argument
36 this.complete = complete;
41 return "DataMore [complete=" + complete
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
H A DTemporalAction.java23 /** Base class for actions that transition over time using the percent complete.
28 private boolean reverse, began, complete; field in class:TemporalAction
43 if (complete) return true;
52 complete = time >= duration;
54 if (complete)
61 if (complete) end();
62 return complete;
90 complete = false;
H A DParallelAction.java28 private boolean complete; field in class:ParallelAction
64 if (complete) return true;
65 complete = true;
72 if (currentAction.getActor() != null && !currentAction.act(delta)) complete = false;
75 return complete;
82 complete = false;
/external/junit/src/org/junit/internal/runners/statements/
H A DExpectException.java20 boolean complete = false;
23 complete = true;
34 if (complete)
/external/selinux/policycoreutils/setsebool/
H A Dsetsebool-bash-completion.sh57 complete -F _setsebool setsebool
58 complete -F _getsebool getsebool
/external/apache-http/src/org/apache/http/impl/auth/
H A DBasicScheme.java69 /** 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/
H A DStatusSummary.java11 public int complete = 0; field in class:StatusSummary
22 summary.complete = getField(group, completeCountField);
59 return complete;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFA.java47 public boolean complete; field in class:NFA
/external/autotest/frontend/migrations/
H A D022_implement_sync_count.py17 # fill in execution_subdir field for running/complete entries
25 SELECT hqe.id, hqe.job_id, hqe.status, hqe.complete, hosts.hostname
28 WHERE hqe.status IN ('Starting', 'Running') OR complete""")
29 for id, job_id, status, complete, hostname in hqes:
/external/parameter-framework/asio/include/asio/detail/
H A Dtask_io_service_operation.hpp31 void complete(task_io_service& owner, function in class:asio::detail::ASIO_INHERIT_TRACKED_HANDLER
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dtask_io_service_operation.hpp31 void complete(task_io_service& owner, function in class:asio::detail::ASIO_INHERIT_TRACKED_HANDLER
/external/autotest/client/site_tests/network_ModemManagerSMSSignal/
H A Dnetwork_ModemManagerSMSSignal.py38 def SmsReceived(self, index, complete):
41 if complete == False:
42 raise error.TestFail("Message not complete")
46 def SmsCompleted(self, index, complete):
49 if complete == False:
50 raise error.TestFail("Message not complete")
84 def SmsReceived(self, index, complete):
88 if complete != self.second:
97 def SmsCompleted(self, index, complete):
101 if complete
[all...]
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.h37 void complete() { function in class:SkOpEdgeBuilder
39 fCurrentContour->complete();
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dbase_cli.py93 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/clang/test/Sema/
H A Dconditional-expr.c70 int (*complete)[12];
71 sizeof(*(test0 ? incomplete : complete)); // expected-warning {{expression result unused}}
72 sizeof(*(test0 ? complete : incomplete)); // expected-warning {{expression result unused}}
/external/jetty/src/java/org/eclipse/jetty/continuation/
H A DContinuationFilter.java49 * {@link Continuation#complete()} is called.</p>
112 boolean complete=false;
113 while (!complete)
129 complete=fc==null || (fc).exit();
H A DContinuation.java93 * 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()}
229 * {@link #complete()} (potentiall
308 void complete(); method in interface:Continuation
[all...]
/external/llvm/include/llvm/LineEditor/
H A DLineEditor.h81 /// which takes arguments of type StringRef (the string to complete) and
90 /// StringRef (the string to complete) and size_t (the zero-based cursor
101 /// \param Buffer The string to complete
118 virtual CompletionAction complete(StringRef Buffer, size_t Pos) const = 0;
123 CompletionAction complete(StringRef Buffer, size_t Pos) const override;
132 CompletionAction complete(StringRef Buffer, size_t Pos) const override {
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractFuture.java57 * listener is added after the Future is complete, it will be executed
260 * Blocks until the task is complete or the timeout expires. Throws a
276 * Blocks until {@link #complete(Object, Throwable, int)} has been
341 return complete(v, null, COMPLETED);
348 return complete(null, t, COMPLETED);
355 return complete(null, null, interrupt ? INTERRUPTED : CANCELLED);
370 private boolean complete(@Nullable V v, @Nullable Throwable t, method in class:AbstractFuture.Sync
/external/jetty/src/java/org/eclipse/jetty/http/
H A DGenerator.java44 void complete() throws IOException; method in interface:Generator
/external/v8/tools/
H A Dbash-completion.sh59 complete -F _v8_flag -f d8
/external/autotest/client/cros/
H A Dsemiauto_framework.py96 complete = lambda: self._tab.EvaluateJavaScript('window.__ready') == 1
97 utils.poll_for_condition(condition=complete, timeout=timeout,
/external/autotest/client/site_tests/firmware_TouchMTB/tools/
H A Dmachine_replay.sh66 python main.py -m complete --skip_html -i 3 --replay $round_dir
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/swf/
H A Dtest_layer2_actors.py45 self.decider.complete()
63 self.worker.complete(result='Done!')
/external/junit/src/org/junit/experimental/theories/
H A DTheories.java116 protected void runWithCompleteAssignment(final Assignments complete) argument
138 reportParameterizedError(e, complete
148 return methodCompletesWithParameters(method, complete, test);
154 complete.getConstructorArguments(nullsOk()));
160 final FrameworkMethod method, final Assignments complete, final Object freshInstance) {
165 final Object[] values= complete.getMethodArguments(
159 methodCompletesWithParameters( final FrameworkMethod method, final Assignments complete, final Object freshInstance) argument

Completed in 1749 milliseconds

1234567891011>>