HomeSort by relevance Sort by last modified time
    Searched refs:Dictionary (Results 176 - 200 of 277) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 54 * Frequency for contacts information into the dictionary
59 /** The maximum number of contacts that this dictionary supports. */
64 /** The number of contacts in the most recent dictionary rebuild. */
67 /** The hash code of ArrayList of contacts names in the most recent dictionary rebuild. */
79 super(context, getDictName(name, locale, dictFile), locale, Dictionary.TYPE_CONTACTS,
216 * Adds the words in a name (e.g., firstname/lastname) to the binary dictionary along with their
276 // to include all of them anyways and the cost of rebuilding the dictionary is too high.
UserBinaryDictionary.java 40 * An expandable dictionary that stores the words in the user dictionary provider into a binary
41 * dictionary file to use it from native code.
46 // The user dictionary provider uses an empty string to mean "all languages".
50 // Shortcut frequency is 0~15, with 15 = whitelist. We don't want user dictionary entries
72 super(context, getDictName(name, locale, dictFile), locale, Dictionary.TYPE_USER, dictFile);
76 // If we don't have a locale, insert into the "all locales" user dictionary.
194 Log.e(TAG, "SQLiteException in the remote User dictionary process.", e);
199 Log.e(TAG, "SQLiteException in the remote User dictionary process.", e);
216 * Adds a word to the user dictionary and makes it persistent
    [all...]
BinaryDictionary.java 46 * Implements a static, compacted, binary dictionary of standard words.
49 public final class BinaryDictionary extends Dictionary {
109 * Constructs binary dictionary using existing dictionary file.
111 * @param offset the offset of the dictionary data within the file.
114 * @param dictType the dictionary type, as a human-readable string
115 * @param isUpdatable whether to open the dictionary file in writable mode.
131 * Constructs binary dictionary on memory.
134 * @param dictType the dictionary type, as a human-readable string
135 * @param formatVersion the format version of the dictionary
    [all...]
Suggest.java 34 * This class loads a dictionary and provides a list of suggestions for a given sequence of
160 // If we don't have a main dictionary, we never want to auto-correct. The reason for
163 // types in English with no dictionary and has a "Will" in their contact list, "will"
177 Dictionary.DICTIONARY_USER_TYPED,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
traverse_math.js 32 * Dictionary of all LaTeX elements in the page if there are any.
39 * Dictionary of all MathJaxs elements in the page if there are any.
46 * Dictionary of all MathJaxs elements that have not yet been translated at
148 * dictionary of MathJax elements.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 2 * Note to JL: Replaced Hashset with Dictionary.
74 protected Dictionary<string, string> uniqueRules = new Dictionary<string, string>();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 74 protected Dictionary<string, bool> uniqueRules = new Dictionary<string, bool>();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/
util.js 61 * @return {object} Dictionary containing name value pairs for URL
  /external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
mathjax.js 49 * @param {Object.<string, *>} args Dictionary of arguments.
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/life/
example.js 57 * @param {Object} attrs Dictionary of attributes to set on the module.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.idl 201 [CallWith=ScriptState, CustomElementCallbacks, RaisesException, MeasureAs=DocumentRegisterElement] CustomElementConstructor registerElement(DOMString name, optional Dictionary options);
  /external/chromium_org/tools/json_schema_compiler/
idl_schema.py 123 dictionary that the JSON schema compiler expects to see.
134 class Dictionary(object):
136 Given an IDL Dictionary node, converts into a Python dictionary that the JSON
163 Given an IDL dictionary or interface member, converts into a name/value pair
164 where the value is a Python dictionary that the JSON schema compiler expects
221 Given a TYPEREF property representing the type of dictionary member or
222 function parameter, converts into a Python dictionary that the JSON schema
299 Given an IDL Enum node, converts into a Python dictionary that the JSON
337 dictionary that the JSON schema compiler expects to see
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
image_parsers.js 196 * @param {Object} metadata Dictionary to store the parser metadata.
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 267 class Dictionary;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 345 treeToUniqueIDMap = new Dictionary<object, int>();
  /external/chromium_org/chrome/browser/resources/net_internals/
main.js 6 * Dictionary of constants (Initialized soon after loading by data from browser,
26 * Dictionary of all constants, used for saving log files.
257 * and parses it into a dictionary.
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
CustomElementConstructorBuilder.cpp 36 #include "bindings/core/v8/Dictionary.h"
57 CustomElementConstructorBuilder::CustomElementConstructorBuilder(ScriptState* scriptState, const Dictionary* options)
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestDictionary.cpp 10 #include "bindings/core/v8/Dictionary.h"
25 // FIXME: Do not use Dictionary and DictionaryHelper
27 Dictionary dictionary(v8Value, isolate);
29 // Dictionary/DictionaryHelper to something that uses ExceptionState.
32 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "booleanMember", booleanMember)) {
39 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "doubleOrNullMember", doubleOrNullMember)) {
46 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "elementOrNullMember", elementOrNullMember)) {
53 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "enumMember", enumMember)) {
65 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "longMember", longMember))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 34 #include "bindings/core/v8/Dictionary.h"
333 Dictionary dictionary(options, isolate);
335 ScriptValue constructor = document->registerElement(ScriptState::current(isolate), name, dictionary, exceptionState, CustomElement::EmbedderNames);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 36 import com.android.inputmethod.latin.Dictionary;
111 // Remove locale from the cache when the dictionary facilitator for the locale is
130 // Whether to use the contacts dictionary
203 * Returns an empty SuggestionsInfo with flags signaling the word is not in the dictionary.
213 * Returns an empty suggestionInfo with flags signaling the word is in the dictionary.
287 Log.i(TAG, "Interrupted during waiting for loading main dictionary.", e);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.cpp 586 Dictionary options(info[1], info.GetIsolate());
734 bool initialize{{cpp_class}}({{cpp_class}}Init& eventInit, const Dictionary& options, ExceptionState& exceptionState, const v8::FunctionCallbackInfo<v8::Value>& info, const String& forEventName)
736 Dictionary::ConversionContext conversionContext(forEventName.isEmpty() ? String("{{interface_name}}") : forEventName, "", exceptionState);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 198 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const Dictionary& options, ExceptionState& exceptionState)
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
first_run.js 73 // Dictionary keeping all available tutorial steps by their names.
  /external/chromium_org/chrome/test/chromedriver/js/
call_function.js 24 * Dictionary key to use for holding an element ID.
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/cube/
example.js 57 * @param {Object} attrs Dictionary of attributes to set on the module.

Completed in 866 milliseconds

1 2 3 4 5 6 78 91011>>