/packages/inputmethods/LatinIME/native/jni/src/suggest/core/ |
suggest.h | 21 #include "suggest/core/suggest_interface.h" 22 #include "suggest/core/policy/suggest_policy.h" 42 class Suggest : public SuggestInterface { 44 AK_FORCE_INLINE Suggest(const SuggestPolicy *const suggestPolicy) 48 AK_FORCE_INLINE virtual ~Suggest() {} 55 DISALLOW_IMPLICIT_CONSTRUCTORS(Suggest);
|
suggest.cpp | 17 #include "suggest/core/suggest.h" 19 #include "suggest/core/dicnode/dic_node.h" 20 #include "suggest/core/dicnode/dic_node_priority_queue.h" 21 #include "suggest/core/dicnode/dic_node_vector.h" 22 #include "suggest/core/dictionary/binary_dictionary_shortcut_iterator.h" 23 #include "suggest/core/dictionary/dictionary.h" 24 #include "suggest/core/dictionary/digraph_utils.h" 25 #include "suggest/core/dictionary/shortcut_utils.h" 26 #include "suggest/core/layout/proximity_info.h [all...] |
/external/chromium_org/chrome/browser/extensions/api/discovery/ |
discovery_api.cc | 24 scoped_ptr<discovery::Suggest::Params> params( 25 discovery::Suggest::Params::Create(*args_));
|
discovery_api_unittest.cc | 26 // Converts suggest details used as parameter into a JSON string. 36 // Converts the parameters to the API Suggest method to JSON (without score). 46 // Converts the parameters to the API Suggest method to JSON. 98 TEST_F(ExtensionDiscoveryTest, Suggest) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
MainLogBuffer.java | 23 import com.android.inputmethod.latin.Suggest; 78 // TODO: Remove dependence on Suggest, and pass in Dictionary as a parameter to an appropriate 80 private final Suggest mSuggest; 92 final Suggest suggest) { 96 mSuggest = suggest;
|
ResearchLogger.java | 59 import com.android.inputmethod.latin.Suggest; 176 private Suggest mSuggest; 216 final Suggest suggest) { 666 public void initSuggest(final Suggest suggest) { 667 mSuggest = suggest; 668 // MainLogBuffer now has an out-of-date Suggest object. Close down MainLogBuffer and create [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
AutoCorrectionUtils.java | 22 import com.android.inputmethod.latin.Suggest; 39 public static boolean isValidWord(final Suggest suggest, final String word, 44 final ConcurrentHashMap<String, Dictionary> dictionaries = suggest.getUnigramDictionaries(); 45 final String lowerCasedWord = word.toLowerCase(suggest.mLocale);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
dictionary.cpp | 19 #include "suggest/core/dictionary/dictionary.h" 24 #include "suggest/core/dictionary/bigram_dictionary.h" 25 #include "suggest/core/policy/dictionary_header_structure_policy.h" 26 #include "suggest/core/policy/dictionary_structure_with_buffer_policy.h" 27 #include "suggest/core/session/dic_traverse_session.h" 28 #include "suggest/core/suggest.h" 29 #include "suggest/core/suggest_options.h" 30 #include "suggest/policyimpl/gesture/gesture_suggest_policy_factory.h" 31 #include "suggest/policyimpl/typing/typing_suggest_policy_factory.h [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
Suggest.java | 46 public final class Suggest { 47 public static final String TAG = Suggest.class.getSimpleName(); 84 public Suggest(final Context context, final Locale locale, 98 Suggest(final AssetFileAddress[] dictionaryList, final Locale locale) {
|
LatinIME.java | 77 import com.android.inputmethod.latin.Suggest.OnGetSuggestedWordsCallback; 119 Suggest.SuggestInitializationListener { 170 private Suggest mSuggest; 628 final Suggest newSuggest = new Suggest(this /* Context */, subtypeLocale, 656 final Suggest oldSuggest = mSuggest; 671 final Suggest suggest = mSuggest; local 673 (null != suggest && mSettings.getCurrent().mUseContactsDict); 713 final Suggest suggest = mSuggest; local 894 final Suggest suggest = mSuggest; local 2545 final Suggest suggest = mSuggest; local 2772 final Suggest suggest = mSuggest; local [all...] |
ExpandableDictionary.java | 371 if (suggestions.size() >= Suggest.MAX_SUGGESTIONS) return false; 381 if (suggestions.size() > Suggest.MAX_SUGGESTIONS) return false; [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
SuggestedWordsTests.java | 84 Suggest.getTransformedSuggestedWordInfo(suggestedWordInfo,
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/ |
file_manager_ui.js | 66 * Suggest apps dialog.
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
suggest_apps_dialog.js | 43 * @param {Object} state Static state of suggest app dialog. 50 this.frame_.id = 'suggest-app-dialog'; 120 // User cancelled the suggest app dialog. No message should be shown. 186 * Shows suggest-apps dialog by file extension and mime. 202 * Shows suggest-apps dialog by the filename. 217 * Internal methdo to shows a dialog. This should be called only from 'Suggest.
|