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;
187 …this.completions(wordPrefixRange, auto, this._completionsReady.bind(this, selection, auto, wordPre…
190 _completionsReady: function(selection, auto, originalWordPrefixRange, completions) argument
192 if (!completions || !completions.length)
204 if (completions.length === 1 || selection.isCollapsed || auto) {
205 var completionText = completions[0];
210 for (var i = 0; i < completions.length; ++i)
211 if (completions[i] === currentText)
214 if (foundIndex === null || (foundIndex + 1) >= completions.length)
[all …]
DDatabaseQueryView.js45 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " ");
62 completions: function(wordRange, bestMatchOnly, completionsReadyCallback) method in WebInspector.DatabaseQueryView
DConsoleView.js50 …this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), Express…
316 completions: function(wordRange, bestMatchOnly, completionsReadyCallback) method in WebInspector.ConsoleView
/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/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/
DChangeLog-2010-01-296791 (WebInspector.ConsoleView.prototype.completions):
8213 (WebInspector.ConsoleView.prototype.completions):
11701 Use Object.getOwnPropertyNames instead of for-in to provide completions, since
44111 Web Inspector: Add more stop characters into console completions.
44116 (WebInspector.ConsoleView.prototype.completions):
46468 (WebInspector.ConsoleView.prototype.completions):
56566 Web Inspector: completions are always evaluated against
56572 (WebInspector.ConsoleView.prototype.completions):
57627 (WebInspector.ConsoleView.prototype.completions): there is InjectedScript.getCompletionsi
57628 that accepts an expression and returns possible completions. This way we don't need to wrap
[all …]
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."