HomeSort by relevance Sort by last modified time
    Searched full:dictionary (Results 1 - 25 of 3430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Fuzzer/test/
dict1.txt 0 # Dictionary for SimpleDictionaryTest
  /external/robolectric/.idea/dictionaries/
pivotal.xml 2 <dictionary name="pivotal">
8 </dictionary>
  /external/opencv3/samples/android/face-detection/
.project 12 <dictionary>
15 </dictionary>
16 <dictionary>
19 </dictionary>
20 <dictionary>
23 </dictionary>
24 <dictionary>
27 </dictionary>
28 <dictionary>
31 </dictionary>
    [all...]
  /external/opencv3/samples/android/tutorial-2-mixedprocessing/
.project 12 <dictionary>
15 </dictionary>
16 <dictionary>
19 </dictionary>
20 <dictionary>
23 </dictionary>
24 <dictionary>
27 </dictionary>
28 <dictionary>
31 </dictionary>
    [all...]
  /external/libbrillo/brillo/
variant_dictionary_unittest.cc 15 VariantDictionary dictionary; local
16 dictionary.emplace("a", 1);
17 dictionary.emplace("b", "string");
20 EXPECT_EQ(1, GetVariantValueOrDefault<int>(dictionary, "a"));
21 EXPECT_EQ("string", GetVariantValueOrDefault<const char*>(dictionary, "b"));
24 EXPECT_EQ("", GetVariantValueOrDefault<std::string>(dictionary, "missing"));
25 EXPECT_EQ(0, GetVariantValueOrDefault<int>(dictionary, "missing"));
variant_dictionary.h 18 // GetVariantValueOrDefault tries to retrieve the named key from the dictionary
22 const T GetVariantValueOrDefault(const VariantDictionary& dictionary,
24 VariantDictionary::const_iterator it = dictionary.find(key);
25 if (it == dictionary.end()) {
  /external/libchrome/sandbox/mac/
xpc_stubs.sig 12 // Dictionary manipulation.
14 const char* xpc_dictionary_get_string(xpc_object_t dictionary, const char* key);
15 uint64_t xpc_dictionary_get_uint64(xpc_object_t dictionary, const char* key);
16 void xpc_dictionary_set_uint64(xpc_object_t dictionary, const char* key, uint64_t value);
17 int64_t xpc_dictionary_get_int64(xpc_object_t dictionary, const char* key);
18 void xpc_dictionary_set_int64(xpc_object_t dictionary, const char* key, int64_t value);
19 bool xpc_dictionary_get_bool(xpc_object_t dictionary, const char* key);
  /packages/inputmethods/LatinIME/native/jni/
NativeFileList.mk 23 $(addprefix dictionary/header/, \
26 dictionary/property/ngram_context.cpp \
27 dictionary/structure/dictionary_structure_with_buffer_policy_factory.cpp \
28 $(addprefix dictionary/structure/pt_common/, \
37 $(addprefix dictionary/structure/v2/, \
41 $(addprefix dictionary/structure/v4/, \
50 $(addprefix dictionary/structure/v4/content/, \
57 $(addprefix dictionary/utils/, \
74 $(addprefix suggest/core/dictionary/, \
75 dictionary.cpp
    [all...]
com_android_inputmethod_latin_BinaryDictionary.cpp 25 #include "dictionary/property/unigram_property.h"
26 #include "dictionary/property/ngram_context.h"
27 #include "dictionary/property/word_property.h"
28 #include "dictionary/structure/dictionary_structure_with_buffer_policy_factory.h"
31 #include "suggest/core/dictionary/dictionary.h"
65 Dictionary *const dictionary = local
66 new Dictionary(env, std::move(dictionaryStructureWithBufferPolicy));
68 return reinterpret_cast<jlong>(dictionary);
94 Dictionary *const dictionary = local
101 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
112 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
119 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
129 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
137 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
171 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
187 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
265 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
275 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
287 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
304 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
334 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
363 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
388 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
401 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
421 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
439 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
458 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
513 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
529 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
547 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
    [all...]
  /external/clang/test/PCH/
objc_container.h 19 NSMutableDictionary *dictionary; local
22 oldObject = dictionary[key];
24 dictionary[key] = newObject;
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
RTCICEServer+JSON.m 21 + (RTCICEServer *)serverFromJSONDictionary:(NSDictionary *)dictionary {
22 NSString *url = dictionary[kRTCICEServerUrlKey];
23 NSString *username = dictionary[kRTCICEServerUsernameKey];
24 NSString *credential = dictionary[kRTCICEServerCredentialKey];
32 + (NSArray *)serversFromCEODJSONDictionary:(NSDictionary *)dictionary {
33 NSString *username = dictionary[kRTCICEServerUsernameKey];
34 NSString *password = dictionary[kRTCICEServerPasswordKey];
35 NSArray *uris = dictionary[kRTCICEServerUrisKey];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.cpp 17 #define LOG_TAG "LatinIME: dictionary.cpp"
19 #include "suggest/core/dictionary/dictionary.h"
22 #include "dictionary/interface/dictionary_header_structure_policy.h"
23 #include "dictionary/property/ngram_context.h"
24 #include "suggest/core/dictionary/dictionary_utils.h"
37 const int Dictionary::HEADER_ATTRIBUTE_BUFFER_SIZE = 32;
39 Dictionary::Dictionary(JNIEnv *env, DictionaryStructureWithBufferPolicy::StructurePolicyPtr
47 void Dictionary::getSuggestions(ProximityInfo *proximityInfo, DicTraverseSession *traverseSession
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryFactory.java 32 * Factory for dictionary instances.
38 * Initializes a main dictionary collection from a dictionary pack, with explicit flags.
40 * This searches for a content provider providing a dictionary pack for the specified
41 * locale. If none is found, it falls back to the built-in dictionary - if any.
43 * @param locale the locale for which to create the dictionary
49 Log.e(TAG, "No locale defined for dictionary");
50 return new DictionaryCollection(Dictionary.TYPE_MAIN, locale,
54 final LinkedList<Dictionary> dictList = new LinkedList<>();
61 false /* useFullEditDistance */, locale, Dictionary.TYPE_MAIN)
    [all...]
DictionaryPackInstallBroadcastReceiver.java 32 * Receives broadcasts pertaining to dictionary management and takes the appropriate action.
35 * - Package installed/added. When a dictionary provider application is added or removed, we
37 * - New dictionary broadcast. The dictionary provider broadcasts new dictionary availability. When
39 * - Unknown client. If the dictionary provider is in urgent need of data about some client that
40 * it does not know, it sends this broadcast. When we receive this, we need to tell the dictionary
41 * provider about ourselves. This happens when the settings for the dictionary pack are accessed,
51 // This happens when the dictionary pack says it can't find a record for our client,
52 // which happens when the dictionary pack settings are called before the keyboar
    [all...]
DictionaryFacilitatorImpl.java 68 // dictionary.
80 DICT_TYPE_TO_CLASS.put(Dictionary.TYPE_USER_HISTORY, UserHistoryDictionary.class);
81 DICT_TYPE_TO_CLASS.put(Dictionary.TYPE_USER, UserBinaryDictionary.class);
82 DICT_TYPE_TO_CLASS.put(Dictionary.TYPE_CONTACTS, ContactsBinaryDictionary.class);
128 * The locale associated with the dictionary group.
133 * The user account associated with the dictionary group.
137 @Nullable private Dictionary mMainDict;
154 @Nullable final Dictionary mainDict,
159 // The main dictionary can be asynchronously loaded.
172 public void setMainDict(final Dictionary mainDict)
594 final ExpandableBinaryDictionary dictionary = mDictionaryGroup.getSubDict(dictName); local
627 final Dictionary dictionary = mDictionaryGroup.getDict(dictType); local
668 final Dictionary dictionary = mDictionaryGroup.getDict(dictType); local
686 final Dictionary dictionary = mDictionaryGroup.getDict(dictType); local
697 final ExpandableBinaryDictionary dictionary = mDictionaryGroup.getSubDict(dictName); local
725 final ExpandableBinaryDictionary dictionary = mDictionaryGroup.getSubDict(dictType); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Dictionary.java 29 * The <code>Dictionary</code> class is the abstract parent of any
31 * Every key and every value is an object. In any one <tt>Dictionary</tt>
33 * <tt>Dictionary</tt> and a key, the associated element can be looked up.
50 class Dictionary<K,V> {
55 public Dictionary() {
59 * Returns the number of entries (distinct keys) in this dictionary.
61 * @return the number of keys in this dictionary.
66 * Tests if this dictionary maps no keys to value. The general contract
68 * if this dictionary contains no entries.
70 * @return <code>true</code> if this dictionary maps no keys to values
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
buildbucket_job_status.py 45 def _ConvertTimes(dictionary):
52 dictionary: A dictionary with the original data.
55 A copy of the original dictionary with appropriate replacements.
57 result = dictionary.copy()
70 def _ParseJsonKeys(dictionary):
75 in the topmost level, i.e. only string values in the given dictionary and
79 dictionary: A dictionary with the original data.
82 A copy of the original dictionary with appropriate replacements
    [all...]
  /tools/test/connectivity/acts/framework/acts/
dict_object.py 22 A DictObject provides object-oriented access semantics to a dictionary,
25 as a dictionary/de-serialized from a dictionary.
29 """Constructor for a dictionary-as-object representation of kwargs
41 """Returns a key from the superclass dictionary as an attribute
47 Dictionary item stored at "name"
74 def from_dict(cls, dictionary):
75 """Factory method for constructing a DictObject from a dictionary
78 dictionary: Dictionary used to construct the DictObjec
    [all...]
  /external/clang/test/CodeGenObjC/
sel-as-builtin-type.m 11 +(id) dictionary;
16 I2 *a0 = [I2 dictionary];
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.h 24 #include "dictionary/header/header_policy.h"
25 #include "dictionary/interface/dictionary_structure_with_buffer_policy.h"
26 #include "dictionary/structure/v2/bigram/bigram_list_policy.h"
27 #include "dictionary/structure/v2/shortcut/shortcut_list_policy.h"
28 #include "dictionary/structure/v2/ver2_patricia_trie_node_reader.h"
29 #include "dictionary/structure/v2/ver2_pt_node_array_reader.h"
30 #include "dictionary/utils/format_utils.h"
31 #include "dictionary/utils/mmapped_buffer.h"
85 // This method should not be called for non-updatable dictionary.
86 AKLOGI("Warning: addUnigramEntry() is called for non-updatable dictionary.")
    [all...]
  /external/icu/icu4c/source/data/xml/brkitr/
root.xml 29 <icu:dictionary type="Hani" icu:dependency="cjdict.dict"/>
30 <icu:dictionary type="Hira" icu:dependency="cjdict.dict"/>
31 <icu:dictionary type="Kana" icu:dependency="cjdict.dict"/>
32 <icu:dictionary type="Khmr" icu:dependency="khmerdict.dict"/>
33 <icu:dictionary type="Laoo" icu:dependency="laodict.dict"/>
34 <icu:dictionary type="Mymr" icu:dependency="burmesedict.dict"/>
35 <icu:dictionary type="Thai" icu:dependency="thaidict.dict"/>
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_node_reader.cpp 21 * dictionary/structure/v4/ver4_patricia_trie_node_reader.cpp
24 #include "dictionary/structure/backward/v402/ver4_patricia_trie_node_reader.h"
26 #include "dictionary/header/header_policy.h"
27 #include "dictionary/structure/pt_common/dynamic_pt_reading_utils.h"
28 #include "dictionary/structure/pt_common/patricia_trie_reading_utils.h"
29 #include "dictionary/structure/backward/v402/content/probability_dict_content.h"
30 #include "dictionary/structure/backward/v402/content/probability_entry.h"
31 #include "dictionary/structure/backward/v402/ver4_patricia_trie_reading_utils.h"
32 #include "dictionary/utils/buffer_with_extendable_buffer.h"
33 #include "dictionary/utils/forgetting_curve_utils.h
    [all...]
ver4_pt_node_array_reader.cpp 21 * dictionary/structure/v4/ver4_pt_node_array_reader.cpp
24 #include "dictionary/structure/backward/v402/ver4_pt_node_array_reader.h"
26 #include "dictionary/structure/pt_common/dynamic_pt_reading_utils.h"
27 #include "dictionary/structure/pt_common/patricia_trie_reading_utils.h"
28 #include "dictionary/utils/buffer_with_extendable_buffer.h"
37 // Reading invalid position because of a bug or a broken dictionary.
38 AKLOGE("Reading PtNode array info from invalid dictionary position: %d, dict size: %d",
66 // Reading invalid position because of bug or broken dictionary.
67 AKLOGE("Reading forward link from invalid dictionary position: %d, dict size: %d",
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
ver4_patricia_trie_policy.h 23 #include "dictionary/header/header_policy.h"
24 #include "dictionary/interface/dictionary_structure_with_buffer_policy.h"
25 #include "dictionary/structure/pt_common/dynamic_pt_updating_helper.h"
26 #include "dictionary/structure/v4/shortcut/ver4_shortcut_list_policy.h"
27 #include "dictionary/structure/v4/ver4_dict_buffers.h"
28 #include "dictionary/structure/v4/ver4_patricia_trie_node_reader.h"
29 #include "dictionary/structure/v4/ver4_patricia_trie_node_writer.h"
30 #include "dictionary/structure/v4/ver4_patricia_trie_writing_helper.h"
31 #include "dictionary/structure/v4/ver4_pt_node_array_reader.h"
32 #include "dictionary/utils/buffer_with_extendable_buffer.h
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
dic_traverse_session.cpp 20 #include "dictionary/interface/dictionary_header_structure_policy.h"
21 #include "dictionary/interface/dictionary_structure_with_buffer_policy.h"
22 #include "dictionary/property/ngram_context.h"
23 #include "suggest/core/dictionary/dictionary.h"
28 // (e.g. main dictionary) from small dictionaries (e.g. contacts...)
32 void DicTraverseSession::init(const Dictionary *const dictionary,
34 mDictionary = dictionary;

Completed in 883 milliseconds

1 2 3 4 5 6 7 8 91011>>