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

123456

/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
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_tcs.h77 virtual vec4_instruction *emit_urb_write_opcode(bool complete) { return NULL; } argument
H A Dbrw_vec4_vs_visitor.cpp87 vec4_vs_visitor::emit_urb_write_opcode(bool complete) argument
90 if (complete) {
96 inst->urb_write_flags = complete ?
H A Dtest_vec4_copy_propagation.cpp83 virtual vec4_instruction *emit_urb_write_opcode(bool complete) argument
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFA.java47 public boolean complete; field in class:NFA
/external/python/cpython2/Lib/
H A Drlcompleter.py12 readline.parse_and_bind("tab: complete")
56 readline.set_completer(Completer(my_namespace).complete)
71 def complete(self, text, state): member in class:Completer
172 readline.set_completer(Completer().complete)
/external/python/cpython3/Lib/
H A Drlcompleter.py12 readline.parse_and_bind("tab: complete")
51 readline.set_completer(Completer(my_namespace).complete)
66 def complete(self, text, state): member in class:Completer
200 readline.set_completer(Completer().complete)
/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;
/external/mesa3d/src/mesa/main/
H A Ddlist.h59 bool complete; /**< Is the atlas ready to use? */ member in struct:gl_bitmap_atlas
/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/turbine/java/com/google/turbine/binder/env/
H A DLazyEnv.java72 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. */
/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/apps/boot/tests/
H A Dese_operations_wrapper.cpp34 static uint32_t EseHwReceive(struct EseInterface *ese, uint8_t *data, uint32_t len, int complete) { argument
35 return EseOperationsWrapperData::ops_interface->EseHwReceive(ese, data, len, complete);
38 static uint32_t EseHwTransmit(struct EseInterface *ese, const uint8_t *data, uint32_t len, int complete) { argument
39 return EseOperationsWrapperData::ops_interface->EseHwTransmit(ese, data, len, complete);
51 static int EsePoll(struct EseInterface *ese, uint8_t poll_for, float timeout, int complete) { argument
52 return EseOperationsWrapperData::ops_interface->EsePoll(ese, poll_for, timeout, complete);
/external/libese/libese-teq1/tests/
H A Dese_operations_wrapper.cpp35 static uint32_t EseHwReceive(struct EseInterface *ese, uint8_t *data, uint32_t len, int complete) { argument
36 return EseOperationsWrapperData::ops_interface->EseHwReceive(ese, data, len, complete);
39 static uint32_t EseHwTransmit(struct EseInterface *ese, const uint8_t *data, uint32_t len, int complete) { argument
40 return EseOperationsWrapperData::ops_interface->EseHwTransmit(ese, data, len, complete);
52 static int EsePoll(struct EseInterface *ese, uint8_t poll_for, float timeout, int complete) { argument
53 return EseOperationsWrapperData::ops_interface->EsePoll(ese, poll_for, timeout, complete);

Completed in 630 milliseconds

123456