Home
last modified time | relevance | path

Searched refs:completions (Results 1 – 25 of 41) sorted by relevance

12

/external/python/cpython2/Lib/idlelib/
DAutoCompleteWindow.py34 self.completions = None
73 i = 0; j = len(self.completions)
76 if self.completions[m] >= s:
80 return min(i, len(self.completions)-1)
87 if self.completions[first][:len(s)] != s:
92 j = len(self.completions)
95 if self.completions[m][:len(s)] != s:
102 return self.completions[first]
105 first_comp = self.completions[first]
106 last_comp = self.completions[last]
[all …]
Dconfig-extensions.def39 force-open-completions=<Control-Key-space>
42 try-open-completions=<KeyRelease-period> <KeyRelease-slash> <KeyRelease-backslash>
DREADME.txt33 AutoCompleteWindow.py # Display completions.
/external/python/cpython3/Lib/idlelib/
Dautocomplete_w.py39 self.completions = None
78 i = 0; j = len(self.completions)
81 if self.completions[m] >= s:
85 return min(i, len(self.completions)-1)
92 if self.completions[first][:len(s)] != s:
97 j = len(self.completions)
100 if self.completions[m][:len(s)] != s:
107 return self.completions[first]
110 first_comp = self.completions[first]
111 last_comp = self.completions[last]
[all …]
Dconfig-keys.def60 force-open-completions= <Control-Key-space>
119 force-open-completions= <Control-Key-space>
178 force-open-completions= <Control-Key-space>
237 force-open-completions= <Control-Key-space>
297 force-open-completions= <Control-Key-space>
/external/gflags/src/
Dgflags_completions.cc132 vector<string> *completions);
149 vector<string> *completions);
267 vector<string> completions; in PrintFlagCompletionInfo() local
272 &completions); in PrintFlagCompletionInfo()
275 completions.push_back("~"); in PrintFlagCompletionInfo()
277 DVLOG(1) << "Finalized with " << completions.size() in PrintFlagCompletionInfo()
280 for (vector<string>::const_iterator it = completions.begin(); in PrintFlagCompletionInfo()
281 it != completions.end(); in PrintFlagCompletionInfo()
537 vector<string> *completions) { in FinalizeCompletionOutput() argument
629 completions); // produced completions in FinalizeCompletionOutput()
[all …]
Dgflags_completions.h.in33 // Implement helpful bash-style command line flag completions
47 // ** Overview of Bash completions:
48 // Bash can be told to programatically determine completions for the
58 // ** Strategy taken for command line completions:
85 // ** How to have bash accept completions from a binary:
105 // supported commands, you can still get completions by prefixing the
/external/clang/bindings/python/tests/cindex/
Dtest_code_completion.py7 completions = [str(c) for c in cr.results]
10 assert c in completions
/external/linux-kselftest/tools/testing/selftests/net/
Dmsg_zerocopy.c95 static long packets, bytes, completions, expected_completions; variable
383 completions += do_process_zerocopy_cookies(ck); in do_recvmsg_completion()
456 completions += range; in do_recv_completion()
471 while (completions < expected_completions && in do_recv_remaining_completions()
477 if (completions < expected_completions) in do_recv_remaining_completions()
479 completions, expected_completions); in do_recv_remaining_completions()
567 packets, bytes >> 20, completions, in do_tx()
/external/grpc-grpc/test/core/surface/
Dcompletion_queue_test.cc285 grpc_cq_completion completions[GPR_ARRAY_SIZE(tags)]; in test_pluck() local
311 nullptr, &completions[i]); in test_pluck()
323 nullptr, &completions[i]); in test_pluck()
363 grpc_cq_completion completions[GPR_ARRAY_SIZE(tags)]; in test_callback() local
425 nullptr, &completions[i]); in test_callback()
Dcompletion_queue_threading_test.cc80 grpc_cq_completion completions[GPR_ARRAY_SIZE(tags)]; in test_too_many_plucks() local
112 nullptr, &completions[i]); in test_too_many_plucks()
/external/kmod/
Dconfigure.ac121 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
126 with_bashcompletiondir=${datadir}/bash-completion/completions
301 Bash completions dir: ${with_bashcompletiondir}
/external/selinux/policycoreutils/setsebool/
DMakefile6 BASHCOMPLETIONDIR ?= $(PREFIX)/share/bash-completion/completions
/external/selinux/python/semanage/
DMakefile10 BASHCOMPLETIONDIR ?= $(PREFIX)/share/bash-completion/completions
/external/u-boot/doc/
DREADME.commands70 maxv: Maximum number of possible completions that may be returned by
76 The function returns the number of possible completions (without the terminating
/external/iproute2/
DMakefile19 BASH_COMPDIR?=$(DATADIR)/bash-completion/completions
/external/selinux/python/sepolicy/
DMakefile8 BASHCOMPLETIONDIR ?= $(PREFIX)/share/bash-completion/completions
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowInputMethodManager.java125 protected void displayCompletions(View view, CompletionInfo[] completions) {} in displayCompletions() argument
/external/parameter-framework/upstream/tools/bash_completion/
DCMakeLists.txt30 DESTINATION share/bash-completion/completions/
/external/python/cpython3/Doc/tutorial/
Dinteractive.rst24 the expression up to the final ``'.'`` and then suggest completions from
/external/python/cpython2/Doc/tutorial/
Dinteractive.rst106 :kbd:`Tab` key twice suggests completions; it looks at Python statement names,
109 final ``'.'`` and then suggest completions from the attributes of the resulting
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b4.rst74 completions for an empty word. Initial patch by Martin Sekera.
/external/clang/docs/
DExternalClangExamples.rst33 a persistent in-memory database of references, symbolnames, completions
/external/mesa3d/docs/specs/
DMESA_swap_frame_usage.spec61 completions, as a significant amount of time may pass between the
/external/clang/test/Index/
Dcomplete-kvc.m1 // Test for code completions related to Key-Value Coding and Key-Value Observing.

12