/aosp12/frameworks/ex/common/java/com/android/common/ |
H A D | Search.java | 64 public static Cursor getSuggestions(Context context, SearchableInfo searchable, String query) { in getSuggestions() method in Search 65 return getSuggestions(context, searchable, query, -1); in getSuggestions() 77 public static Cursor getSuggestions(Context context, SearchableInfo searchable, in getSuggestions() method in Search
|
/aosp12/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
H A D | EventLogLogger.java | 70 String suggestions = getSuggestions(suggestionCursor); in logSuggestionClick() 88 String suggestions = getSuggestions(suggestionCursor); in logExit() 96 private String getSuggestions(SuggestionCursor cursor) { in getSuggestions() method in EventLogLogger
|
H A D | SuggestionsProvider.java | 31 Suggestions getSuggestions(String query, Source source); in getSuggestions() method
|
H A D | SuggestionCursorProvider.java | 38 C getSuggestions(String query, int queryLimit); in getSuggestions() method
|
/aosp12/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
H A D | DelayingSuggestionsAdapter.java | 98 if (mPendingSuggestions != getSuggestions()) { in setPendingSuggestions() 138 public Suggestions getSuggestions() { in getSuggestions() method in DelayingSuggestionsAdapter 139 return mDelayedAdapter.getSuggestions(); in getSuggestions()
|
H A D | SearchActivityView.java | 193 public Suggestions getSuggestions() { in getSuggestions() method in SearchActivityView 194 return mSuggestionsAdapter.getSuggestions(); in getSuggestions() 198 return mSuggestionsAdapter.getSuggestions().getResult(); in getCurrentSuggestions() 342 Suggestions suggestions = mSuggestionsAdapter.getSuggestions(); in updateInputMethodSuggestions()
|
H A D | SuggestionsAdapter.java | 57 Suggestions getSuggestions(); in getSuggestions() method
|
/aosp12/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/ |
H A D | SourceLatency.java | 142 cursor = getSuggestions(searchable, query); in checkSourceInternal() 160 public Cursor getSuggestions(SearchableInfo searchable, String query) { in getSuggestions() method in SourceLatency 161 return getSuggestions(searchable, query, -1); in getSuggestions() 164 public Cursor getSuggestions(SearchableInfo searchable, String query, int limit) { in getSuggestions() method in SourceLatency 237 cursor = getSuggestions(mSearchable, mQuery); in run()
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
H A D | DictionaryCollection.java | 62 public ArrayList<SuggestedWordInfo> getSuggestions(final ComposedData composedData, in getSuggestions() method in DictionaryCollection 71 ArrayList<SuggestedWordInfo> suggestions = dictionaries.get(0).getSuggestions(composedData, in getSuggestions() 77 final ArrayList<SuggestedWordInfo> sugg = dictionaries.get(i).getSuggestions( in getSuggestions()
|
H A D | ReadOnlyBinaryDictionary.java | 53 public ArrayList<SuggestedWordInfo> getSuggestions(final ComposedData composedData, in getSuggestions() method in ReadOnlyBinaryDictionary 60 return mBinaryDictionary.getSuggestions(composedData, ngramContext, in getSuggestions()
|
H A D | Dictionary.java | 99 abstract public ArrayList<SuggestedWordInfo> getSuggestions(final ComposedData composedData, in getSuggestions() method in Dictionary 203 public ArrayList<SuggestedWordInfo> getSuggestions(final ComposedData composedData, in getSuggestions() method in Dictionary.PhonyDictionary
|
/aosp12/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/spellcheck/ |
H A D | AndroidSpellCheckerServiceTest.java | 37 final String[] suggestions = span.getSuggestions(); in testSpellchecker() 71 final String[] suggestions = span.getSuggestions(); in testSpellcheckWithPeriods()
|
/aosp12/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/service/ |
H A D | LeanbackImeService.java | 84 mKeyboardController.updateSuggestions(mSuggestionsFactory.getSuggestions()); 132 mKeyboardController.updateSuggestions(mSuggestionsFactory.getSuggestions()); in onStartInputView() 225 mKeyboardController.updateSuggestions(mSuggestionsFactory.getSuggestions()); in onDisplayCompletions() 337 mKeyboardController.updateSuggestions(mSuggestionsFactory.getSuggestions()); in handleTextEntry()
|
/aosp12/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
H A D | RichInputConnectionAndTextRangeTests.java | 324 assertEquals(suggestions[0].getSuggestions(), SUGGESTIONS1); in helpTestGetSuggestionSpansAtWord() 336 assertEquals(suggestions[0].getSuggestions(), SUGGESTIONS1); in helpTestGetSuggestionSpansAtWord() 337 assertEquals(suggestions[1].getSuggestions(), SUGGESTIONS2); in helpTestGetSuggestionSpansAtWord() 349 assertEquals(suggestions[0].getSuggestions(), SUGGESTIONS1); in helpTestGetSuggestionSpansAtWord() 361 assertEquals(suggestions[0].getSuggestions(), SUGGESTIONS1); in helpTestGetSuggestionSpansAtWord() 373 assertEquals(suggestions[0].getSuggestions(), SUGGESTIONS1); in helpTestGetSuggestionSpansAtWord()
|
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ |
H A D | SuggestionFeatureProvider.java | 47 public List<Suggestion> getSuggestions(Context context) { in getSuggestions() method in SuggestionFeatureProvider 49 final List<Suggestion> list = parser.getSuggestions(); in getSuggestions()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/ |
H A D | SuggestionController.java | 102 public List<Suggestion> getSuggestions() { in getSuggestions() method in SuggestionController 107 return mRemoteService.getSuggestions(); in getSuggestions()
|
H A D | SuggestionLoader.java | 52 final List<Suggestion> data = mSuggestionController.getSuggestions(); in loadInBackground()
|
H A D | SuggestionLoaderCompat.java | 46 final List<Suggestion> data = mSuggestionController.getSuggestions(); in loadInBackground()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/contextualcards/legacysuggestion/ |
H A D | LegacySuggestionContextualCardControllerTest.java | 92 when(mSuggestionController.getSuggestions()).thenReturn(null); in onServiceConnected_shouldLoadSuggestion() 98 verify(mSuggestionController).getSuggestions(); in onServiceConnected_shouldLoadSuggestion()
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | SearchManager.java | 880 public Cursor getSuggestions(SearchableInfo searchable, String query) { in getSuggestions() method in SearchManager 881 return getSuggestions(searchable, query, -1); in getSuggestions() 896 public Cursor getSuggestions(SearchableInfo searchable, String query, int limit) { in getSuggestions() method in SearchManager
|
/aosp12/frameworks/base/core/java/android/service/settings/suggestions/ |
H A D | ISuggestionService.aidl | 13 List<Suggestion> getSuggestions() = 1; in getSuggestions() method
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/ |
H A D | suggest_interface.h | 29 virtual void getSuggestions(ProximityInfo *pInfo, void *traverseSession, int *inputXs,
|
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/suggestions/ |
H A D | ShadowSuggestionController.java | 57 public List<Suggestion> getSuggestions() { in getSuggestions() method in ShadowSuggestionController
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
H A D | dictionary.cpp | 47 void Dictionary::getSuggestions(ProximityInfo *proximityInfo, DicTraverseSession *traverseSession, in getSuggestions() function in latinime::Dictionary 55 suggest->getSuggestions(proximityInfo, traverseSession, xcoordinates, in getSuggestions()
|
/aosp12/frameworks/base/core/java/android/view/textservice/ |
H A D | SpellCheckerSession.java | 192 public void getSuggestions(TextInfo textInfo, int suggestionsLimit) { in getSuggestions() method in SpellCheckerSession 193 getSuggestions(new TextInfo[] {textInfo}, suggestionsLimit, false); in getSuggestions() 204 public void getSuggestions( in getSuggestions() method in SpellCheckerSession
|