HomeSort by relevance Sort by last modified time
    Searched full:completions (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/webkit/WebCore/inspector/front-end/
TextPrompt.js 29 WebInspector.TextPrompt = function(element, completions, stopCharacters)
32 this.completions = completions;
187 this.completions(wordPrefixRange, auto, this._completionsReady.bind(this, selection, auto, wordPrefixRange));
190 _completionsReady: function(selection, auto, originalWordPrefixRange, completions)
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
    [all...]
DatabaseQueryView.js 45 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " ");
62 completions: function(wordRange, bestMatchOnly, completionsReadyCallback)
  /external/qemu/
readline.h 29 char *completions[READLINE_MAX_COMPLETIONS]; member in struct:ReadLineState
readline.c 267 rs->completions[rs->nb_completions++] = qemu_strdup(str);
294 len = strlen(rs->completions[0]);
296 readline_insert_char(rs, rs->completions[0][i]);
299 if (len > 0 && rs->completions[0][len - 1] != '/')
306 len = strlen(rs->completions[i]);
313 if (rs->completions[i][j] != rs->completions[0][j])
322 readline_insert_char(rs, rs->completions[0][i]);
332 monitor_printf(rs->mon, "%-*s", max_width, rs->completions[i]);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSession.java 77 * input method about the completions it has available. This can be used
81 * @param completions Array of text completions that are available, starting with
82 * the best. If this array is null, any existing completions will be
85 public void displayCompletions(CompletionInfo[] completions);
  /external/kernel-headers/original/linux/
completion.h 29 * completions - so we use the _ONSTACK() variant for those that
rwsem.h 82 * proper abstraction for this case is completions. ]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
switch-001.js 6 * A simple switch test with no abrupt completions.
switch-002.js 6 * A simple switch test with no abrupt completions.
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodSession.aidl 42 void displayCompletions(in CompletionInfo[] completions);
  /external/v8/src/
d8-readline.cc 108 Handle<Array> completions = local
110 current_completions = Persistent<Array>::New(completions);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SuggestTests.java 36 * Tests for simple completions of one character.
45 * Tests for simple completions of two characters.
115 * Tests to make sure that zero frequency words are not suggested as completions.
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 273 * This tells us about completions that the editor has determined based
275 * to show the completions ourself, since the editor can not be seen
278 @Override public void onDisplayCompletions(CompletionInfo[] completions) {
280 mCompletions = completions;
281 if (completions == null) {
287 for (int i=0; i<(completions != null ? completions.length : 0); i++) {
288 CompletionInfo ci = completions[i];
549 public void setSuggestions(List<String> suggestions, boolean completions,
557 mCandidateView.setSuggestions(suggestions, completions, typedWordValid)
    [all...]
CandidateView.java 239 public void setSuggestions(List<String> suggestions, boolean completions,
  /external/blktrace/
blktrace_api.h 17 BLK_TC_COMPLETE = 1 << 7, /* completions */
  /external/grub/stage2/
cmdline.c 54 " lists possible command completions. Anywhere else TAB lists the possible\n"
55 " completions of a device/filename.%s ]\n",
disk_io.c 1305 * This lists the possible completions of a device string, filename, or
1322 /* Print the completions of builtin commands. */
1370 /* disk completions */
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 143 public void displayCompletions(CompletionInfo[] completions) {
145 DO_DISPLAY_COMPLETIONS, completions));
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 731 * is All or Web, use the web search suggestions as completions.
740 CompletionInfo[] completions = webSuggestionsToCompletions(cursor);
741 if (DBG) Log.d(TAG, "displayCompletions(" + Arrays.toString(completions) + ")");
742 imm.displayCompletions(mQueryTextView, completions);
747 ArrayList<CompletionInfo> completions = new ArrayList<CompletionInfo>(count); local
753 completions.add(new CompletionInfo(i, i, text1));
756 return completions.toArray(new CompletionInfo[completions.size()]);
  /external/chromium/net/disk_cache/
disk_cache_test_util.h 54 // Simple callback to process IO completions from the cache. It allows tests
  /external/e2fsprogs/ext2ed/
main.c 453 * completions we already returned to readline.
456 * are no more completions. This function will be called by readline
459 * While scanning for possible completions, we use the same priority
511 /* No more completions */
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]
CandidateView.java 316 public void setSuggestions(List<CharSequence> suggestions, boolean completions,
327 mShowingCompletions = completions;
393 // If there are completions from the application, we don't change the state to
  /external/bluetooth/glib/
NEWS.pre-1-3 23 * Generic functions for TAB completions
210 * Generic functions for TAB completions.
  /frameworks/base/core/java/android/text/
InputType.java 127 * expect for the editor to supply its own completions/candidates from
153 * dictionary-based completions or corrections. It overrides the

Completed in 597 milliseconds

1 2 3 4