HomeSort by relevance Sort by last modified time
    Searched refs:completions (Results 1 - 25 of 43) 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...]
  /tools/test/connectivity/acts/tests/google/bt/pts/
cmd_input.py 340 completions = list(
343 completions = [
347 return completions
352 completions = list(GattServerResponses.keys())[:]
354 completions = [
357 return completions
363 completions = list(GattServerResponses.keys())[:]
365 completions = [
368 return completions
374 completions = list(GattServerResponses.keys())[:
    [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.
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodSession.aidl 44 void displayCompletions(in CompletionInfo[] completions);
  /external/selinux/policycoreutils/setsebool/
Makefile 7 BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
  /external/selinux/python/semanage/
Makefile 10 BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
  /external/selinux/python/sepolicy/
Makefile 12 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()]);
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 158 public void displayCompletions(CompletionInfo[] completions) {
160 DO_DISPLAY_COMPLETIONS, completions));
InputMethodService.java 200 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
521 public void displayCompletions(CompletionInfo[] completions) {
525 mCurCompletions = completions;
526 onDisplayCompletions(completions);
930 CompletionInfo[] completions = mCurCompletions; local
    [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 698 * list of completions is dismissed.
699 * @param dismissListener Listener to invoke when completions are dismissed
1238 CompletionInfo[] completions = new CompletionInfo[count]; local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchBar.java 451 * @param completions list of completions shown in the IME, can be null or empty to clear them
453 public void displayCompletions(List<String> completions) {
455 if (null != completions) {
456 for (String completion : completions) {
467 * @param completions list of completions shown in the IME, can be null or empty to clear them
469 public void displayCompletions(CompletionInfo[] completions) {
470 mInputMethodManager.displayCompletions(mSearchTextEditor, completions);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 556 * Displays the completions shown by the IME. An application may provide
557 * a list of query completions that the system will show in the IME.
559 * @param completions A list of completions to show in the IME. Setting to
562 public void displayCompletions(List<String> completions) {
563 mSearchBar.displayCompletions(completions);
567 * Displays the completions shown by the IME. An application may provide
568 * a list of query completions that the system will show in the IME.
570 * @param completions A list of completions to show in the IME. Setting t
    [all...]
SearchSupportFragment.java 559 * Displays the completions shown by the IME. An application may provide
560 * a list of query completions that the system will show in the IME.
562 * @param completions A list of completions to show in the IME. Setting to
565 public void displayCompletions(List<String> completions) {
566 mSearchBar.displayCompletions(completions);
570 * Displays the completions shown by the IME. An application may provide
571 * a list of query completions that the system will show in the IME.
573 * @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 1223 milliseconds

1 2