Searched refs:completions (Results 1 - 15 of 15) sorted by relevance
/third_party/rust/crates/clap/clap_complete/tests/ |
H A D | dynamic.rs | 20 let completions = clap_complete::dynamic::bash::complete( in suggest_subcommand_subset() 29 let completions = completions in suggest_subcommand_subset() 34 assert_eq!(completions, ["hello-moon", "hello-world", "help"]); in suggest_subcommand_subset() 66 let completions = clap_complete::dynamic::bash::complete( in suggest_long_flag_subset() 75 let completions = completions in suggest_long_flag_subset() 80 assert_eq!(completions, ["--hello-world", "--hello-moon", "--help"]); in suggest_long_flag_subset() 101 let completions = clap_complete::dynamic::bash::complete( in suggest_possible_value_subset() 110 let completions in suggest_possible_value_subset() [all...] |
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_queue.c | 200 struct vk_sync *completions[static PVR_JOB_TYPE_MAX]) in pvr_process_graphics_cmd() 266 if (completions[PVR_JOB_TYPE_GEOM]) in pvr_process_graphics_cmd() 267 vk_sync_destroy(&device->vk, completions[PVR_JOB_TYPE_GEOM]); in pvr_process_graphics_cmd() 269 completions[PVR_JOB_TYPE_GEOM] = sync_geom; in pvr_process_graphics_cmd() 271 if (completions[PVR_JOB_TYPE_FRAG]) in pvr_process_graphics_cmd() 272 vk_sync_destroy(&device->vk, completions[PVR_JOB_TYPE_FRAG]); in pvr_process_graphics_cmd() 274 completions[PVR_JOB_TYPE_FRAG] = sync_frag; in pvr_process_graphics_cmd() 288 struct vk_sync *completions[static PVR_JOB_TYPE_MAX]) in pvr_process_compute_cmd() 314 if (completions[PVR_JOB_TYPE_COMPUTE]) in pvr_process_compute_cmd() 315 vk_sync_destroy(&device->vk, completions[PVR_JOB_TYPE_COMPUT in pvr_process_compute_cmd() [all...] |
/third_party/python/Lib/idlelib/ |
H A D | autocomplete_w.py | 40 # The list of completions 41 self.completions = None 42 # A list with more completions, or None 79 """Find the first index in self.completions where completions[i] is 82 i = 0; j = len(self.completions) 85 if self.completions[m] >= s: 89 return min(i, len(self.completions)-1) 92 """Assuming that s is the prefix of a string in self.completions, 97 if self.completions[firs [all...] |
/third_party/node/test/parallel/ |
H A D | test-repl-tab-complete-crash.js | 17 testMe.complete('arguments.', common.mustCall((err, completions) => { 19 assert.deepStrictEqual(completions, [[], 'arguments.']); 25 testMe.complete('undef.', common.mustCall((err, completions) => { 27 assert.deepStrictEqual(completions, [[], 'undef.']);
|
H A D | test-repl-history-navigation.js | 70 let completions = 0; 492 // Check that the completer ignores completions that are outdated. 496 if (completions++ === 0) {
|
/third_party/rust/crates/clap/clap_complete/examples/ |
H A D | dynamic.rs | 25 if let Ok(completions) = in main() 28 completions.complete(&mut command()); in main()
|
/third_party/rust/crates/clap/clap_complete/src/ |
H A D | dynamic.rs | 15 /// Register shell completions for this program 100 let completions = complete( in try_complete() 110 for (i, completion) in completions.iter().enumerate() { in try_complete() 212 /// List completions after successive tabs 216 /// List completions if the word is not unmodified 249 .help("List completions after successive tabs"), in to_possible_value() 267 .help("List completions if the word is not unmodified"), in to_possible_value() 369 let mut completions = Vec::new(); in complete_arg() variables 377 completions.extend( in complete_arg() 387 completions in complete_arg() 492 let mut completions = Vec::new(); complete_path() variables [all...] |
/third_party/node/lib/internal/readline/ |
H A D | interface.js | 670 [kTabCompleter](lastKeypressWasTab, { 0: completions, 1: completeOn }) { 673 if (!completions || completions.length === 0) { 679 ArrayPrototypeFilter(completions, (e) => e !== ''), 704 // Apply/show completions. 705 const completionsWidth = ArrayPrototypeMap(completions, (e) => 716 for (let i = 0; i < completions.length; i++) { 717 const completion = completions[i];
|
/third_party/node/deps/v8/tools/ |
H A D | bash-completion.sh | 93 for GDB_COMP in "/usr/share/bash-completion/completions/gdb"; do 123 "$v8_source/tools/dev/gm.py" --print-completions
|
/third_party/node/lib/internal/repl/ |
H A D | utils.js | 251 const completions = ArrayPrototypeFilter(rawCompletions, Boolean); 252 const prefix = commonPrefix(completions); 327 // for input that has no completions.
|
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | [all...] |
H A D | tsserver.js | [all...] |
H A D | typescript.js | [all...] |
H A D | typescriptServices.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |
Completed in 126 milliseconds