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

1 2

  /external/clang/bindings/python/tests/cindex/
test_code_completion.py 7 completions = [str(c) for c in cr.results]
10 assert c in completions
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 40 my @completions;
58 my ($word, @completions) = @_;
59 grep( /^\Q$word\E/, @completions );
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
AutoCompleteWindow.py 33 # The list of completions
34 self.completions = None
35 # A list with more completions, or None
70 """Find the first index in self.completions where completions[i] is
73 i = 0; j = len(self.completions)
76 if self.completions[m] >= s:
80 return min(i, len(self.completions)-1)
83 """Assuming that s is the prefix of a string in self.completions,
87 if self.completions[first][:len(s)] != s
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
AutoCompleteWindow.py 33 # The list of completions
34 self.completions = None
35 # A list with more completions, or None
70 """Find the first index in self.completions where completions[i] is
73 i = 0; j = len(self.completions)
76 if self.completions[m] >= s:
80 return min(i, len(self.completions)-1)
83 """Assuming that s is the prefix of a string in self.completions,
87 if self.completions[first][:len(s)] != s
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 33 # The list of completions
34 self.completions = None
35 # A list with more completions, or None
70 """Find the first index in self.completions where completions[i] is
73 i = 0; j = len(self.completions)
76 if self.completions[m] >= s:
80 return min(i, len(self.completions)-1)
83 """Assuming that s is the prefix of a string in self.completions,
87 if self.completions[first][:len(s)] != s
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 33 # The list of completions
34 self.completions = None
35 # A list with more completions, or None
70 """Find the first index in self.completions where completions[i] is
73 i = 0; j = len(self.completions)
76 if self.completions[m] >= s:
80 return min(i, len(self.completions)-1)
83 """Assuming that s is the prefix of a string in self.completions,
87 if self.completions[first][:len(s)] != s
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSession.java 86 * input method about the completions it has available. This can be used
90 * @param completions Array of text completions that are available, starting with
91 * the best. If this array is null, any existing completions will be
94 public void displayCompletions(CompletionInfo[] completions);
InputMethodManager.java 326 * The completions that were last provided by the served view.
858 public void displayCompletions(View view, CompletionInfo[] completions) {
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodSession.aidl 44 void displayCompletions(in CompletionInfo[] completions);
  /external/selinux/policycoreutils/semanage/
Makefile 10 BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
  /external/selinux/policycoreutils/setsebool/
Makefile 7 BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 294 * This tells us about completions that the editor has determined based
296 * to show the completions ourself, since the editor can not be seen
299 @Override public void onDisplayCompletions(CompletionInfo[] completions) {
301 mCompletions = completions;
302 if (completions == null) {
308 for (int i = 0; i < completions.length; i++) {
309 CompletionInfo ci = completions[i];
570 public void setSuggestions(List<String> suggestions, boolean completions,
578 mCandidateView.setSuggestions(suggestions, completions, typedWordValid);
CandidateView.java 239 public void setSuggestions(List<String> suggestions, boolean completions,
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 336 * is All or Web, use the web search suggestions as completions.
344 CompletionInfo[] completions = webSuggestionsToCompletions(suggestions);
345 if (DBG) Log.d(TAG, "displayCompletions(" + Arrays.toString(completions) + ")");
346 imm.displayCompletions(mQueryTextView, completions);
353 ArrayList<CompletionInfo> completions = new ArrayList<CompletionInfo>(count); local
357 completions.add(new CompletionInfo(i, i, text1));
359 return completions.toArray(new CompletionInfo[completions.size()]);
  /external/v8/test/webkit/fast/js/kde/
completion.js 39 // value completions take precedence
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 158 public void displayCompletions(CompletionInfo[] completions) {
160 DO_DISPLAY_COMPLETIONS, completions));
InputMethodService.java 199 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
490 public void displayCompletions(CompletionInfo[] completions) {
494 mCurCompletions = completions;
495 onDisplayCompletions(completions);
901 CompletionInfo[] completions = mCurCompletions; local
    [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 696 * list of completions is dismissed.
697 * @param dismissListener Listener to invoke when completions are dismissed
1236 CompletionInfo[] completions = new CompletionInfo[count]; local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchBar.java 430 * @param completions list of completions shown in the IME, can be null or empty to clear them
432 public void displayCompletions(List<String> completions) {
434 if (null != completions) {
435 for (String completion : completions) {
446 * @param completions list of completions shown in the IME, can be null or empty to clear them
448 public void displayCompletions(CompletionInfo[] completions) {
449 mInputMethodManager.displayCompletions(mSearchTextEditor, completions);
  /external/selinux/policycoreutils/sepolicy/
Makefile 12 BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 517 * Displays the completions shown by the IME. An application may provide
518 * a list of query completions that the system will show in the IME.
520 * @param completions A list of completions to show in the IME. Setting to
523 public void displayCompletions(List<String> completions) {
524 mSearchBar.displayCompletions(completions);
528 * Displays the completions shown by the IME. An application may provide
529 * a list of query completions that the system will show in the IME.
531 * @param completions A list of completions to show in the IME. Setting t
    [all...]
SearchSupportFragment.java 519 * Displays the completions shown by the IME. An application may provide
520 * a list of query completions that the system will show in the IME.
522 * @param completions A list of completions to show in the IME. Setting to
525 public void displayCompletions(List<String> completions) {
526 mSearchBar.displayCompletions(completions);
530 * Displays the completions shown by the IME. An application may provide
531 * a list of query completions that the system will show in the IME.
533 * @param completions A list of completions to show in the IME. Setting t
    [all...]
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 61 completions, as a significant amount of time may pass between the
  /external/blktrace/btreplay/doc/
btreplay.tex 168 thread simply waits for AIO completions, freeing up resources for the
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 486 milliseconds

1 2