Searched defs:complete (Results 1 - 25 of 121) sorted by relevance

12345

/external/jline/src/src/main/java/jline/
H A DCandidateCycleCompletionHandler.java24 public boolean complete(final ConsoleReader reader, final List candidates, method in class:CandidateCycleCompletionHandler
H A DCompletionHandler.java18 boolean complete(ConsoleReader reader, List candidates, int position) method in interface:CompletionHandler
H A DCompletor.java22 * user: thus, the complete method should sort the
31 int complete(String buffer, int cursor, List candidates); method in interface:Completor
H A DNullCompletor.java24 public int complete(final String buffer, int cursor, List candidates) { method in class:NullCompletor
H A DMultiCompletor.java46 public int complete(final String buffer, final int pos, final List cand) { method in class:MultiCompletor
53 positions[i] = completors[i].complete(buffer, pos, copies[i]);
H A DCandidateListCompletionHandler.java16 * by outputting the complete list of possibilities to the console. This
40 public boolean complete(final ConsoleReader reader, final List candidates, method in class:CandidateListCompletionHandler
H A DFileNameCompletor.java25 * but it cannot complete to other users' homes, since java does
38 public int complete(final String buf, final int cursor, method in class:FileNameCompletor
H A DSimpleCompletor.java96 public int complete(final String buffer, final int cursor, final List clist) { method in class:SimpleCompletor
/external/syslinux/gpxe/src/include/gpxe/
H A Dib_mcast.h32 void ( * complete ) ( struct ib_device *ibdev, struct ib_queue_pair *qp, member in struct:ib_mc_membership
H A Dib_pathrec.h26 void ( * complete ) ( struct ib_device *ibdev, member in struct:ib_path_operations
H A Dib_mi.h62 void ( * complete ) ( struct ib_device *ibdev, member in struct:ib_mad_transaction_operations
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFA.java47 public boolean complete; field in class:NFA
/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/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;
H A DDigestScheme.java100 /** 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/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/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/libese/libese-hw/nxp/pn80t/
H A Dcommon.c115 int complete) {
126 * In practice, if complete=true, then no transmission
129 if (ese->ops->hw_receive(ese, &byte, 1, complete) != 1) {
114 nxp_pn80t_poll(struct EseInterface *ese, uint8_t poll_for, float timeout, int complete) argument
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.h36 void complete() { function in class:SkOpEdgeBuilder
40 contour->complete();
/external/clang/utils/
H A Dclang-completion-mode.el43 ;; Clang's code completion is based on parsing the complete source
138 (defun clang-complete ()
175 (defun clang-complete-self-insert (arg)
179 (clang-complete))
227 (define-key clang-completion-mode-map char 'clang-complete-self-insert))
/external/apache-harmony/jdwp/
H A DAndroid_debug_config.mk107 define wait-for-boot-complete
108 $(hide) echo "Wait for boot complete ..."
113 $(hide) echo "Boot complete"
131 $$(call wait-for-boot-complete)
/external/junit/src/main/java/org/junit/experimental/theories/
H A DTheories.java64 * The support for Theories has been absorbed from the Popper project, and more complete documentation can be found
216 protected void runWithCompleteAssignment(final Assignments complete) argument
237 reportParameterizedError(e, complete
247 return methodCompletesWithParameters(method, complete, test);
252 Object[] params = complete.getConstructorArguments();
264 final FrameworkMethod method, final Assignments complete, final Object freshInstance) {
268 final Object[] values = complete.getMethodArguments();
263 methodCompletesWithParameters( final FrameworkMethod method, final Assignments complete, final Object freshInstance) argument
/external/libedit/examples/
H A Dtc1.c72 static unsigned char complete(EditLine *, int);
93 complete(EditLine *el, int ch __attribute__((__unused__))) function
163 el_set(el, EL_ADDFN, "ed-complete", "Complete argument", complete);
166 el_set(el, EL_BIND, "^I", "ed-complete", NULL);
/external/libese/libese-hw/
H A Dese_hw_echo.c68 uint32_t len, int complete) {
82 if (complete) {
91 uint32_t len, int complete) {
99 es->recvd = complete;
100 if (complete) {
113 int complete) {
123 if (!complete) {
67 echo_receive(struct EseInterface *ese, uint8_t *buf, uint32_t len, int complete) argument
90 echo_transmit(struct EseInterface *ese, const uint8_t *buf, uint32_t len, int complete) argument
112 echo_poll(struct EseInterface *ese, uint8_t poll_for, float timeout, int complete) argument

Completed in 2362 milliseconds

12345