Home
last modified time | relevance | path

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

/external/webkit/WebCore/inspector/front-end/
DTextPrompt.js29 WebInspector.TextPrompt = function(element, completions, stopCharacters) argument
32 this.completions = completions;
154 …this.completions(wordPrefixRange, auto, this._completionsReady.bind(this, selection, auto, wordPre…
157 _completionsReady: function(selection, auto, originalWordPrefixRange, completions) argument
159 if (!completions || !completions.length)
171 if (completions.length === 1 || selection.isCollapsed || auto) {
172 var completionText = completions[0];
177 for (var i = 0; i < completions.length; ++i) {
178 if (completions[i] === currentText)
182 if (foundIndex === null || (foundIndex + 1) >= completions.length)
[all …]
DDatabaseQueryView.js44 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " ");
61 completions: function(wordRange, bestMatchOnly, completionsReadyCallback) method in WebInspector.DatabaseQueryView
DConsoleView.js47 …this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " .=:[(…
196 completions: function(wordRange, bestMatchOnly, completionsReadyCallback) method in WebInspector.ConsoleView
/external/qemu/
Dreadline.c266 rs->completions[rs->nb_completions++] = qemu_strdup(str); in readline_add_completion()
293 len = strlen(rs->completions[0]); in readline_completion()
295 readline_insert_char(rs, rs->completions[0][i]); in readline_completion()
298 if (len > 0 && rs->completions[0][len - 1] != '/') in readline_completion()
305 len = strlen(rs->completions[i]); in readline_completion()
312 if (rs->completions[i][j] != rs->completions[0][j]) in readline_completion()
321 readline_insert_char(rs, rs->completions[0][i]); in readline_completion()
331 monitor_printf(rs->mon, "%-*s", max_width, rs->completions[i]); in readline_completion()
Dreadline.h29 char *completions[READLINE_MAX_COMPLETIONS]; member
/external/webkit/V8Binding/v8/src/
Dd8-readline.cc108 Handle<Array> completions = in CompletionGenerator() local
110 current_completions = Persistent<Array>::New(completions); in CompletionGenerator()
/external/bluetooth/glib/
DNEWS.pre-1-323 * Generic functions for TAB completions
210 * Generic functions for TAB completions.
/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/bluetooth/glib/docs/reference/
DChangeLog2080 * glib/tmpl/completions.sgml: Document
3597 More markup fixes and completions.
/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.
/external/webkit/WebCore/
DChangeLog5209 Inspector: Console should show completions for the command line APIs
5214 completions when available.
16625 (WebInspector.Console.prototype.completions):
DChangeLog-2008-08-101016 (WebInspector.Console.prototype.completions): Use rangeOfWord.
28193 (WebInspector.DatabaseQueryView.prototype.completions): Split up "CREATE TABLE "
34336 it matches completions case-sensitively. This is used in the up-coming
40238 (WebInspector.ConsolePanel.completions): Add a comment about the _backwardsRange call.
40608 (WebInspector.ConsolePanel.completions): Generate a list of possible
40609 completions based on the prefix and the previous expression ranges.
DChangeLog-2009-06-16114 (WebInspector.Console.prototype.completions):
61513 (WebInspector.Console.prototype.completions):
76272 (WebInspector.Console.prototype.completions): Skip properties that
96056 (WebInspector.Console.prototype.completions): If the expressionString
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-1023166 Stop using completions in the execution engine.
31419 completions like "break" and "continue."