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

1 2

  /external/chromium_org/tools/cr/
cr-bash-helpers.sh 47 local completions="$(env COMP_CWORD=${COMP_CWORD} \
50 COMPREPLY=( $(compgen -W "${completions}" -- ${cur}) )
  /external/chromium_org/v8/src/
d8-readline.cc 124 Handle<Array> completions; local
130 completions = Shell::GetCompletions(isolate,
133 current_completions.Reset(isolate, completions);
136 completions = Local<Array>::New(isolate, current_completions);
138 if (current_index < completions->Length()) {
140 Handle<Value> str_obj = completions->Get(index);
  /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/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/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SuggestBox.js 297 * @param {!Array.<string>} completions
301 _canShowBox: function(completions, canShowForSingleItem, userEnteredText)
303 if (!completions || !completions.length)
306 if (completions.length > 1)
310 return canShowForSingleItem && completions[0] !== userEnteredText;
325 * @param {!Array.<string>} completions
330 updateSuggestions: function(anchorBox, completions, selectedIndex, canShowForSingleItem, userEnteredText)
332 if (this._canShowBox(completions, canShowForSingleItem, userEnteredText)) {
333 this._updateItems(completions, userEnteredText)
    [all...]
TextPrompt.js 34 * @param {function(!Element, !Range, boolean, function(!Array.<string>, number=))} completions
37 WebInspector.TextPrompt = function(completions, stopCharacters)
44 this._loadCompletions = completions;
417 * @param {!Array.<string>} completions
420 _buildCommonPrefix: function(completions, wordPrefixLength)
422 var commonPrefix = completions[0];
423 for (var i = 0; i < completions.length; ++i) {
424 var completion = completions[i];
440 * @param {!Array.<string>} completions
443 _completionsReady: function(selection, originalWordPrefixRange, reverse, completions, selectedIndex
    [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 311 * 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);
  /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/lldb/tools/driver/
IOChannel.cpp 105 SBStringList completions; local
113 completions);
123 el_insertstr (m_edit_line, completions.GetStringAtIndex(0));
128 const char *completion_str = completions.GetStringAtIndex(0);
137 const char *comment = "\nAvailable completions:";
145 completion_str = completions.GetStringAtIndex(i);
163 completion_str = completions.GetStringAtIndex(cur_pos);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DatabaseQueryView.js 47 this._prompt = new WebInspector.TextPromptWithHistory(this.completions.bind(this), " ");
70 completions: function(proxyElement, wordRange, force, completionsReadyCallback)
  /external/chromium_org/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 187 * {@link #onDisplayCompletions(CompletionInfo[])} to show completions
469 public void displayCompletions(CompletionInfo[] completions) {
473 mCurCompletions = completions;
474 onDisplayCompletions(completions);
773 CompletionInfo[] completions = mCurCompletions; local
786 if (completions != null) {
787 mCurCompletions = completions;
788 onDisplayCompletions(completions);
    [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 586 * list of completions is dismissed.
587 * @param dismissListener Listener to invoke when completions are dismissed
1126 CompletionInfo[] completions = new CompletionInfo[count]; local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchBar.java 405 * @param completions list of completions shown in the IME, can be null or empty to clear them
407 public void displayCompletions(List<String> completions) {
409 if (null != completions) {
410 for (String completion : completions) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 508 * Display the completions shown by the IME. An application may provide
509 * a list of query completions that the system will show in the IME.
511 * @param completions A list of completions to show in the IME. Setting to
514 public void displayCompletions(List<String> completions) {
515 mSearchBar.displayCompletions(completions);
SearchSupportFragment.java 510 * Display the completions shown by the IME. An application may provide
511 * a list of query completions that the system will show in the IME.
513 * @param completions A list of completions to show in the IME. Setting to
516 public void displayCompletions(List<String> completions) {
517 mSearchBar.displayCompletions(completions);
  /external/chromium_org/third_party/mesa/src/docs/
MESA_swap_frame_usage.spec 61 completions, as a significant amount of time may pass between the
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 61 completions, as a significant amount of time may pass between the

Completed in 1171 milliseconds

1 2