Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dd8-readline.cc151 Handle<Array> completions; in CompletionGenerator() local
157 completions = Shell::GetCompletions(isolate, in CompletionGenerator()
160 current_completions.Reset(isolate, completions); in CompletionGenerator()
163 completions = Local<Array>::New(isolate, current_completions); in CompletionGenerator()
165 if (current_index < completions->Length()) { in CompletionGenerator()
167 Handle<Value> str_obj = completions->Get(index); in CompletionGenerator()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSuggestBox.js321 _canShowBox: function(completions, canShowForSingleItem, userEnteredText) argument
323 if (!completions || !completions.length)
326 if (completions.length > 1)
330 return canShowForSingleItem && completions[0] !== userEnteredText;
348 …updateSuggestions: function(anchorBox, completions, selectedIndex, canShowForSingleItem, userEnter… argument
350 if (this._canShowBox(completions, canShowForSingleItem, userEnteredText)) {
351 this._updateItems(completions, selectedIndex, userEnteredText);
DTextPrompt.js37 WebInspector.TextPrompt = function(completions, stopCharacters) argument
44 this._loadCompletions = completions;
436 _buildCommonPrefix: function(completions, wordPrefixLength) argument
438 var commonPrefix = completions[0];
439 for (var i = 0; i < completions.length; ++i) {
440 var completion = completions[i];
459 …_completionsReady: function(selection, originalWordPrefixRange, reverse, completions, selectedInde… argument
461 if (!this._waitingForCompletions || !completions.length) {
482 …updateSuggestions(this._boxForAnchorAtStart(selection, fullWordRange), completions, selectedIndex,…
488 this._commonPrefix = this._buildCommonPrefix(completions, wordPrefixLength);
[all …]
DDatabaseQueryView.js47 this.prompt = new WebInspector.TextPromptWithHistory(this.completions.bind(this), " ");
70 completions: function(proxyElement, wordRange, force, completionsReadyCallback) method in WebInspector.DatabaseQueryView
/external/open-vcdiff/gflags/src/
Dgflags_completions.cc134 vector<string> *completions);
151 vector<string> *completions);
264 vector<string> completions; in PrintFlagCompletionInfo() local
269 &completions); in PrintFlagCompletionInfo()
272 completions.push_back("~"); in PrintFlagCompletionInfo()
277 for (vector<string>::const_iterator it = completions.begin(); in PrintFlagCompletionInfo()
278 it != completions.end(); in PrintFlagCompletionInfo()
536 vector<string> *completions) { in FinalizeCompletionOutput() argument
629 completions); // produced completions in FinalizeCompletionOutput()
635 completions->push_back("~ (Remaining flags hidden) ~"); in FinalizeCompletionOutput()
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
Dcomplete-ant-cmd.pl40 my @completions;
58 my ($word, @completions) = @_;
59 grep( /^\Q$word\E/, @completions );
/external/qemu/
Dreadline.c267 rs->completions[rs->nb_completions++] = qemu_strdup(str); in readline_add_completion()
294 len = strlen(rs->completions[0]); in readline_completion()
296 readline_insert_char(rs, rs->completions[0][i]); in readline_completion()
299 if (len > 0 && rs->completions[0][len - 1] != '/') in readline_completion()
306 len = strlen(rs->completions[i]); in readline_completion()
313 if (rs->completions[i][j] != rs->completions[0][j]) in readline_completion()
322 readline_insert_char(rs, rs->completions[0][i]); in readline_completion()
332 monitor_printf(rs->mon, "%-*s", max_width, rs->completions[i]); in readline_completion()
Dreadline.h29 char *completions[READLINE_MAX_COMPLETIONS]; member
/external/chromium_org/tools/cr/
Dcr-bash-helpers.sh43 local completions="$(env COMP_CWORD=${COMP_CWORD} COMP_WORD=${cur} $cr_exec)"
44 COMPREPLY=( $(compgen -W "${completions}" -- ${cur}) )
/external/clang/bindings/python/tests/cindex/
Dtest_code_completion.py7 completions = [str(c) for c in cr.results]
10 assert c in completions
/external/open-vcdiff/gflags/src/gflags/
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/v8/src/
Dd8-readline.cc140 Handle<Array> completions = in CompletionGenerator() local
142 current_completions = Persistent<Array>::New(completions); in CompletionGenerator()
/external/clang/docs/
DExternalClangExamples.rst33 a persistent in-memory database of references, symbolnames, completions
/external/mesa3d/docs/
DMESA_swap_frame_usage.spec61 completions, as a significant amount of time may pass between the
/external/chromium_org/third_party/mesa/src/docs/
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.
/external/grub/docs/
Dinternals.texi208 True when the @code{dir} function should print the possible completions
Dgrub.info3995 True when the `dir' function should print the possible completions
/external/blktrace/btreplay/doc/
Dbtreplay.tex168 thread simply waits for AIO completions, freeing up resources for the
/external/grub/
DChangeLog6929 At first, just get completions, and, if there is more than one
6930 completions, then print the list of the completions.
7425 Print completions only if COMPLETION is non-zero.
7527 completions, instead of just searching for a eqaul character.