/external/webkit/WebCore/inspector/front-end/ |
D | TextPrompt.js | 29 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 …]
|
D | DatabaseQueryView.js | 45 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " "); 62 completions: function(wordRange, bestMatchOnly, completionsReadyCallback) method in WebInspector.DatabaseQueryView
|
D | ConsoleView.js | 50 …this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), Express… 316 completions: function(wordRange, bestMatchOnly, completionsReadyCallback) method in WebInspector.ConsoleView
|
/external/qemu/ |
D | readline.c | 267 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()
|
D | readline.h | 29 char *completions[READLINE_MAX_COMPLETIONS]; member
|
/external/v8/src/ |
D | d8-readline.cc | 108 Handle<Array> completions = in CompletionGenerator() local 110 current_completions = Persistent<Array>::New(completions); in CompletionGenerator()
|
/external/bluetooth/glib/ |
D | NEWS.pre-1-3 | 23 * Generic functions for TAB completions 210 * Generic functions for TAB completions.
|
/external/grub/docs/ |
D | internals.texi | 208 True when the @code{dir} function should print the possible completions
|
D | grub.info | 3995 True when the `dir' function should print the possible completions
|
/external/blktrace/btreplay/doc/ |
D | btreplay.tex | 168 thread simply waits for AIO completions, freeing up resources for the
|
/external/bluetooth/glib/docs/reference/ |
D | ChangeLog | 2080 * glib/tmpl/completions.sgml: Document 3597 More markup fixes and completions.
|
/external/grub/ |
D | ChangeLog | 6929 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/ |
D | ChangeLog-2010-01-29 | 6791 (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 …]
|
D | ChangeLog-2008-08-10 | 1016 (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.
|
D | ChangeLog-2009-06-16 | 114 (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/ |
D | ChangeLog-2008-08-10 | 23166 Stop using completions in the execution engine. 31419 completions like "break" and "continue."
|