HomeSort by relevance Sort by last modified time
    Searched defs:Dictionary (Results 1 - 25 of 28) sorted by null

1 2

  /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/libchrome/base/mac/
foundation_util.h 230 CF_TO_NS_MUTABLE_CAST_DECL(Dictionary);
354 // Utility function to pull out a value from a dictionary, check its type, and
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 277 std::vector<Unit> Dictionary;
279 if (!ParseDictionaryFile(FileToString(Flags.dict), &Dictionary))
281 if (Flags.verbosity > 0 && !Dictionary.empty())
282 Printf("Dictionary: %zd entries\n", Dictionary.size());
287 for (auto &U: Dictionary)
FuzzerMutate.cpp 26 std::vector<Unit> Dictionary;
42 if (Dictionary.empty()) {
45 Dictionary.push_back(Unit(Word, Word + Size));
116 auto &D = MDImpl->Dictionary;
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 67 Dictionary,
87 " -d{N}: set dictionary - [0, 29], default: 23 (8MB)\n" +
171 Int32 dictionary = 1 << 21;
172 if (parser[(int)Key.Dictionary].ThereIs)
175 if (!GetNumber((string)parser[(int)Key.Dictionary].PostStrings[0], out dicLog))
177 dictionary = (Int32)1 << dicLog;
192 return LzmaBench.LzmaBenchmark(numIterations, (UInt32)dictionary);
243 dictionary = 1 << 23;
285 (Int32)(dictionary),
314 if (trainFileSize > dictionary)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 30 * Abstract base class for a dictionary that can do a fuzzy search for words based on a set of key
33 public abstract class Dictionary {
37 // The following types do not actually come from real dictionary instances, so we create
58 // The following types of dictionary have actual functional instances. We don't need final
59 // phony dictionary instances for them.
62 // User dictionary, the system-managed one.
64 // User history dictionary internal to LatinIME.
67 // The locale for this dictionary. May be null if unknown (phony dictionary for example).
71 * Set out of the dictionary types listed above that are based on data specific to the user
    [all...]
  /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...]
dictionary.h 24 #include "dictionary/interface/dictionary_header_structure_policy.h"
25 #include "dictionary/interface/dictionary_structure_with_buffer_policy.h"
26 #include "dictionary/interface/ngram_listener.h"
27 #include "dictionary/property/historical_info.h"
28 #include "dictionary/property/word_property.h"
41 class Dictionary {
65 Dictionary(JNIEnv *env, DictionaryStructureWithBufferPolicy::StructurePolicyPtr
109 // Method to iterate all words in the dictionary.
111 // starts iterating the dictionary.
120 DISALLOW_IMPLICIT_CONSTRUCTORS(Dictionary);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 41 UInt32 Dictionary;
53 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
  /external/v8/src/
objects.h 80 // - Dictionary
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 

Completed in 502 milliseconds

1 2