HomeSort by relevance Sort by last modified time
    Searched refs:completions (Results 1 - 25 of 45) 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/python/cpython2/Lib/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/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...]
  /external/selinux/policycoreutils/setsebool/
Makefile 7 BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
  /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);
  /tools/test/connectivity/acts/tests/google/bt/pts/
cmd_input.py 372 completions = list(gatt_test_database.GATT_SERVER_DB_MAPPING.keys(
375 completions = [
379 return completions
384 completions = list(GattServerResponses.keys())[:]
386 completions = [
389 return completions
395 completions = list(GattServerResponses.keys())[:]
397 completions = [
400 return completions
406 completions = list(GattServerResponses.keys())[:
    [all...]
  /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 453 * @param completions list of completions shown in the IME, can be null or empty to clear them
455 public void displayCompletions(List<String> completions) {
457 if (null != completions) {
458 for (String completion : completions) {
469 * @param completions list of completions shown in the IME, can be null or empty to clear them
471 public void displayCompletions(CompletionInfo[] completions) {
472 mInputMethodManager.displayCompletions(mSearchTextEditor, completions);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.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...]
SearchSupportFragment.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...]
  /external/mesa3d/docs/specs/
MESA_swap_frame_usage.spec 61 completions, as a significant amount of time may pass between the
  /frameworks/base/core/java/android/os/
BatteryStats.java 3710 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats(); local
5207 final ArrayMap<String, SparseIntArray> completions = u.getJobCompletionStats(); local
    [all...]
  /external/blktrace/btreplay/doc/
btreplay.tex 168 thread simply waits for AIO completions, freeing up resources for the

Completed in 1082 milliseconds

1 2