/external/python/cpython2/Lib/idlelib/ |
D | AutoCompleteWindow.py | 34 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 …]
|
D | config-extensions.def | 39 force-open-completions=<Control-Key-space> 42 try-open-completions=<KeyRelease-period> <KeyRelease-slash> <KeyRelease-backslash>
|
D | README.txt | 33 AutoCompleteWindow.py # Display completions.
|
/external/python/cpython3/Lib/idlelib/ |
D | autocomplete_w.py | 39 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 …]
|
D | config-keys.def | 60 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/ |
D | gflags_completions.cc | 132 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 …]
|
D | gflags_completions.h.in | 33 // 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/ |
D | test_code_completion.py | 7 completions = [str(c) for c in cr.results] 10 assert c in completions
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | msg_zerocopy.c | 95 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/ |
D | completion_queue_test.cc | 285 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()
|
D | completion_queue_threading_test.cc | 80 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/ |
D | configure.ac | 121 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/ |
D | Makefile | 6 BASHCOMPLETIONDIR ?= $(PREFIX)/share/bash-completion/completions
|
/external/selinux/python/semanage/ |
D | Makefile | 10 BASHCOMPLETIONDIR ?= $(PREFIX)/share/bash-completion/completions
|
/external/u-boot/doc/ |
D | README.commands | 70 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/ |
D | Makefile | 19 BASH_COMPDIR?=$(DATADIR)/bash-completion/completions
|
/external/selinux/python/sepolicy/ |
D | Makefile | 8 BASHCOMPLETIONDIR ?= $(PREFIX)/share/bash-completion/completions
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowInputMethodManager.java | 125 protected void displayCompletions(View view, CompletionInfo[] completions) {} in displayCompletions() argument
|
/external/parameter-framework/upstream/tools/bash_completion/ |
D | CMakeLists.txt | 30 DESTINATION share/bash-completion/completions/
|
/external/python/cpython3/Doc/tutorial/ |
D | interactive.rst | 24 the expression up to the final ``'.'`` and then suggest completions from
|
/external/python/cpython2/Doc/tutorial/ |
D | interactive.rst | 106 :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/ |
D | 3.5.0b4.rst | 74 completions for an empty word. Initial patch by Martin Sekera.
|
/external/clang/docs/ |
D | ExternalClangExamples.rst | 33 a persistent in-memory database of references, symbolnames, completions
|
/external/mesa3d/docs/specs/ |
D | MESA_swap_frame_usage.spec | 61 completions, as a significant amount of time may pass between the
|
/external/clang/test/Index/ |
D | complete-kvc.m | 1 // Test for code completions related to Key-Value Coding and Key-Value Observing.
|