HomeSort by relevance Sort by last modified time
    Searched full:dictionary (Results 76 - 100 of 2984) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
dict_file_writing_utils.cpp 17 #include "suggest/policyimpl/dictionary/utils/dict_file_writing_utils.h"
22 #include "suggest/policyimpl/dictionary/header/header_policy.h"
23 #include "suggest/policyimpl/dictionary/dynamic_patricia_trie_writing_utils.h"
24 #include "suggest/policyimpl/dictionary/utils/buffer_with_extendable_buffer.h"
25 #include "suggest/policyimpl/dictionary/utils/format_utils.h"
37 // Only version 3 dictionary is supported for now.
67 AKLOGE("Dictionary file %s cannnot be opened.", tmpFileName);
71 // Write the dictionary header.
74 AKLOGE("Dictionary header cannnot be written. size: %d", dictHeader->getTailPosition());
78 // Write the dictionary body
    [all...]
  /external/chromium/chrome/browser/
spellcheck_host_impl.h 20 // * Adding a word to the custom dictionary;
21 // * Storing the custom dictionary to the file, and read it back
23 // * Downloading a dictionary and map it for the renderer, and;
26 // To download a dictionary and initialize it without blocking the UI thread,
70 // Figure out the location for the dictionary. This is only non-trivial for
72 // The default place whether the spellcheck dictionary can reside is
78 // Load and parse the custom words dictionary and open the bdic file.
90 // Write a custom dictionary addition to disk.
94 // spellcheck dictionary; saves the dictionary to |data_|
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
language_dictionary_overlay_word_list.js 10 * Creates a new dictionary word list item.
11 * @param {string} dictionaryWord The dictionary word.
13 * adding a dictionary word.
26 * Decorates an HTML element as a dictionary word list item.
47 wordEl.classList.add('language-dictionary-overlay-word-list-item');
51 wordField.classList.add('language-dictionary-overlay-word-list-item');
66 * Adds a word to the dictionary.
78 * A list of words in the dictionary.
93 * The list of all words in the dictionary. Used to generate a filtered word
109 * Adds a dictionary word
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 31 assertRoundTrip("dictionary".getBytes("UTF-8"));
34 private static void assertRoundTrip(byte[] dictionary) throws Exception {
39 // Compress the bytes, using the passed-in dictionary (or no dictionary).
40 byte[] deflatedBytes = deflate(expectedBytes, dictionary);
49 // If we used a dictionary to compress, check that we're asked for that same dictionary.
50 if (dictionary != null) {
53 // 2. ...because you need a dictionary.
55 // 3. ...and that dictionary has the same Adler32 as the dictionary we used
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 43 * This class loads a dictionary and provides a list of suggestions for a given sequence of
71 private final ConcurrentHashMap<String, Dictionary> mDictionaries =
74 private Dictionary mMainDictionary;
92 mOnlyDictionarySetForDebug.add(Dictionary.TYPE_PERSONALIZATION);
93 mOnlyDictionarySetForDebug.add(Dictionary.TYPE_PERSONALIZATION_PREDICTION_IN_JAVA);
99 final Dictionary mainDict = DictionaryFactory.createDictionaryForTest(dictionaryList,
103 addOrReplaceDictionaryInternal(Dictionary.TYPE_MAIN, mainDict);
111 private void addOrReplaceDictionaryInternal(final String key, final Dictionary dict) {
113 Log.w(TAG, "Ignore add " + key + " dictionary for debug.");
120 final ConcurrentHashMap<String, Dictionary> dictionaries
262 final Dictionary dictionary = mDictionaries.get(key); local
368 final Dictionary dictionary = mDictionaries.get(key); local
    [all...]
  /external/chromium/chrome/browser/importer/
firefox_proxy_settings.cc 164 DictionaryValue dictionary; local
165 if (!ParsePrefFile(pref_file, &dictionary))
169 if (!dictionary.GetInteger(kNetworkProxyTypeKey, &proxy_type))
174 if (!dictionary.GetStringASCII(kAutoconfigURL,
182 if (!dictionary.GetStringASCII(kHTTPProxyKey, &(settings->http_proxy_)))
184 if (!dictionary.GetInteger(kHTTPProxyPortKey,
188 if (!dictionary.GetStringASCII(kSSLProxyKey, &(settings->ssl_proxy_)))
190 if (!dictionary.GetInteger(kSSLProxyPortKey, &(settings->ssl_proxy_port_)))
192 if (!dictionary.GetStringASCII(kFTPProxyKey, &(settings->ftp_proxy_)))
194 if (!dictionary.GetInteger(kFTPProxyPortKey, &(settings->ftp_proxy_port_))
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
hunspell_engine.h 37 // Initializes the Hunspell dictionary, or does nothing if |hunspell_| is
44 // The hunspell dictionary in use.
51 // dictionary from the browser when the render view asks us to check the
55 // This flags is true if we have requested dictionary.
  /external/chromium_org/third_party/icu/source/data/xml/brkitr/
root.xml 27 <icu:dictionary type="Thai" icu:dependency="thaidict.ctd"/>
28 <icu:dictionary type="Hani" icu:dependency="cjdict.ctd"/>
29 <icu:dictionary type="Hira" icu:dependency="cjdict.ctd"/>
30 <icu:dictionary type="Kata" icu:dependency="cjdict.ctd"/>
  /external/chromium_org/tools/json_schema_compiler/dart_test/
empty_type.idl 8 dictionary EmptyType {
events.idl 7 dictionary EventArgumentElement {
11 dictionary EventArgument {
50 // Documentation for an event with a non-optional dictionary argument.
53 // Documentation for an event with a optional dictionary argument.
  /external/e2fsprogs/lib/et/test_cases/
continuation.et 4 "New password was found in a dictionary of possible passwords and\n\
  /external/proguard/examples/dictionaries/
compact.txt 2 # This obfuscation dictionary contains strings that are already present
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AutoCorrectionUtils.java 20 import com.android.inputmethod.latin.Dictionary;
44 final ConcurrentHashMap<String, Dictionary> dictionaries = suggest.getUnigramDictionaries();
47 final Dictionary dictionary = dictionaries.get(key); local
48 // It's unclear how realistically 'dictionary' can be null, but the monkey is somehow
50 // no main dictionary and the monkey manages to type a whole word before the thread
51 // that reads the dictionary is started or something?
55 if (null == dictionary) continue;
56 if (dictionary.isValidWord(word)
57 || (ignoreCase && dictionary.isValidWord(lowerCasedWord)))
71 final Dictionary dictionary = dictionaries.get(key); local
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/
compact.txt 2 # This obfuscation dictionary contains strings that are already present
  /external/chromium/sdch/open-vcdiff/
README 15 vcdiff encode -dictionary file.dict < target_file > delta_file
16 vcdiff decode -dictionary file.dict < delta_file > target_file
19 To call the encoder from C++ code, assuming that dictionary, target, and delta
23 open_vcdiff::VCDiffEncoder encoder(dictionary.data(), dictionary.size());
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/chromium_org/chrome/browser/extensions/api/signedin_devices/
signedin_devices_api.cc 24 // Gets the dictionary that stores the id mapping. The dictionary is stored
34 // Looks like this is the first call to get the dictionary. Let us create
35 // a dictionary and set it in to |extension_prefs|.
36 scoped_ptr<DictionaryValue> dictionary(new DictionaryValue());
37 out_value = dictionary.get();
41 dictionary.release());
id_mapping_helper.h 25 // Gets public id from GUID, given a dictionary that has the mapping.
31 // Gets the GUID from public id given a dictionary that has the mapping.
38 // from scratch an empty dictionary must be passed. The dictionary will be
41 // The dictionary would have the public id as the key and the
  /external/chromium_org/sdch/open-vcdiff/
README 15 vcdiff encode -dictionary file.dict < target_file > delta_file
16 vcdiff decode -dictionary file.dict < delta_file > target_file
19 To call the encoder from C++ code, assuming that dictionary, target, and delta
23 open_vcdiff::VCDiffEncoder encoder(dictionary.data(), dictionary.size());
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/chromium_org/third_party/icu/source/tools/genctd/
genctd.1.in 10 \- Compiles word list into ICU compact trie dictionary
32 .IR " dictionary\-file"
36 .I dictionary-file
37 and creates a compact trie dictionary file. Normally this data file has the
76 .BI " dictionary\-file"
83 .IR dictionary-file
87 .IR dictionary-file
  /external/open-vcdiff/
README 15 vcdiff encode -dictionary file.dict < target_file > delta_file
16 vcdiff decode -dictionary file.dict < delta_file > target_file
19 To call the encoder from C++ code, assuming that dictionary, target, and delta
23 open_vcdiff::VCDiffEncoder encoder(dictionary.data(), dictionary.size());
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryPackConstants.java 20 * A class to group constants for dictionary pack usage.
23 * possible, as it's used to separate cleanly the keyboard code from the dictionary pack code; this
28 * The root domain for the dictionary pack, upon which authorities and actions will append
40 * The action of the intent for publishing that new dictionary data is available.
49 * The action of the intent sent by the dictionary pack to ask for a client to make
51 * dictionary pack does not know about.
61 * The action of the intent to tell the dictionary provider to update now.
  /external/chromium/chrome/browser/net/
sdch_dictionary_fetcher.h 5 // Support modularity by calling to load a new SDCH filter dictionary.
33 // This method gets the requested dictionary, and then calls back into the
34 // SdchManager class with the dictionary's text.
41 // page subresources (or tabs opened in parallel) all suggest the dictionary.
66 // Always spread out the dictionary fetches, so that they don't steal
74 // dictionary from an URL several times), current implementations seem to have
75 // that 1-1 relationship (i.e., each URL points at a single dictionary, and
76 // the dictionary content does not change over time, and hence is not worth
80 // dictionary at most once from a given URL (so that it doesn't waste
82 // The following set lists all the dictionary URLs that we've tried to load
    [all...]
  /external/chromium_org/chrome/browser/net/
sdch_dictionary_fetcher.h 5 // Support modularity by calling to load a new SDCH filter dictionary.
40 // This method gets the requested dictionary, and then calls back into the
41 // SdchManager class with the dictionary's text.
48 // page subresources (or tabs opened in parallel) all suggest the dictionary.
68 // Always spread out the dictionary fetches, so that they don't steal
76 // dictionary from an URL several times), current implementations seem to have
77 // that 1-1 relationship (i.e., each URL points at a single dictionary, and
78 // the dictionary content does not change over time, and hence is not worth
82 // dictionary at most once from a given URL (so that it doesn't waste
84 // The following set lists all the dictionary URLs that we've tried to load
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
PersonalizationDictionary.java 19 import com.android.inputmethod.latin.Dictionary;
29 * This class is a dictionary for the personalized language model that uses binary dictionary.
36 /** Locale for which this user history dictionary is storing words */
42 super(context, getFilenameWithLocale(NAME, locale), Dictionary.TYPE_PERSONALIZATION,
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_DicTraverseSession.cpp 27 class Dictionary;
35 jlong dictionary, jintArray previousWord, jint previousWordLength) {
37 Dictionary *dict = reinterpret_cast<Dictionary *>(dictionary);

Completed in 950 milliseconds

1 2 34 5 6 7 8 91011>>