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

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
Dictionary.h 56 class Dictionary {
58 Dictionary();
59 Dictionary(const v8::Local<v8::Value>& options, v8::Isolate*);
60 ~Dictionary();
62 Dictionary& operator=(const Dictionary&);
91 bool get(const String&, Dictionary&) const;
Dictionary.cpp 27 #include "bindings/v8/Dictionary.h"
61 Dictionary::Dictionary()
66 Dictionary::Dictionary(const v8::Local<v8::Value>& options, v8::Isolate* isolate)
73 Dictionary::~Dictionary()
77 Dictionary& Dictionary::operator=(const Dictionary& optionsObject
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
test_util.cc 46 scoped_ptr<base::DictionaryValue> Dictionary(
52 scoped_ptr<base::DictionaryValue> Dictionary(
55 scoped_ptr<base::DictionaryValue> dict = Dictionary(ak, av);
59 scoped_ptr<base::DictionaryValue> Dictionary(
63 scoped_ptr<base::DictionaryValue> dict = Dictionary(ak, av, bk, bv);
  /libcore/luni/src/main/java/java/util/
Dictionary.java 24 * Dictionary is an abstract class which is the superclass of all classes that
30 public abstract class Dictionary<K, V> {
34 public Dictionary() {
38 * Returns an enumeration on the elements of this dictionary.
40 * @return an enumeration of the values of this dictionary.
59 * Returns true if this dictionary has no key/value pairs.
61 * @return {@code true} if this dictionary has no key/value pairs,
68 * Returns an enumeration on the keys of this dictionary.
70 * @return an enumeration of the keys of this dictionary.
78 * Associate {@code key} with {@code value} in this dictionary. If {@cod
    [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"
24 #include "suggest/core/dictionary/bigram_dictionary.h"
36 const int Dictionary::HEADER_ATTRIBUTE_BUFFER_SIZE = 32;
38 Dictionary::Dictionary(JNIEnv *env,
47 Dictionary::~Dictionary() {
54 int Dictionary::getSuggestions(ProximityInfo *proximityInfo, DicTraverseSession *traverseSession
    [all...]
dictionary.h 34 class Dictionary {
56 Dictionary(JNIEnv *env,
93 virtual ~Dictionary();
96 DISALLOW_IMPLICIT_CONSTRUCTORS(Dictionary);
  /external/chromium/base/mac/
mac_util.h 165 CF_TO_NS_MUTABLE_CAST_DECL(Dictionary);
  /external/chromium_org/base/mac/
foundation_util.h 216 CF_TO_NS_MUTABLE_CAST_DECL(Dictionary);
333 // Utility function to pull out a value from a dictionary, check its type, and
  /external/chromium_org/tools/json_schema_compiler/
idl_schema.py 120 dictionary that the JSON schema compiler expects to see.
130 class Dictionary(object):
132 Given an IDL Dictionary node, converts into a Python dictionary that the JSON
156 Given an IDL dictionary or interface member, converts into a name/value pair
157 where the value is a Python dictionary that the JSON schema compiler expects
209 Given a TYPEREF property representing the type of dictionary member or
210 function parameter, converts into a Python dictionary that the JSON schema
280 Given an IDL Enum node, converts into a Python dictionary that the JSON
309 dictionary that the JSON schema compiler expects to see
    [all...]
  /external/chromium/net/base/
sdch_manager.cc 29 SdchManager::Dictionary::Dictionary(const std::string& dictionary_text,
46 SdchManager::Dictionary::~Dictionary() {
49 bool SdchManager::Dictionary::CanAdvertise(const GURL& target_url) {
52 /* The specific rules of when a dictionary should be advertised in an
53 Avail-Dictionary header are modeled after the rules for cookie scoping. The
55 dictionary may be advertised in the Avail-Dictionaries header exactly when
58 the dictionary.
59 2. If the dictionary has a Port attribute, the request port is one of th
454 Dictionary* dictionary = local
    [all...]
sdch_manager.h 12 // can find a dictionary (based on a server specification of a hash), store a
13 // dictionary, and make judgements about what URLs can use, set, etc. a
14 // dictionary.
17 // (containing metadata) as well as a VCDIFF dictionary (for use by a VCDIFF
39 // A browser may register a fetcher that is used by the dictionary managers to
47 // The Schedule() method is called when there is a need to get a dictionary
81 // Dictionary selection for use problems.
89 // Dictionary saving problems.
99 // Dictionary loading problems.
117 // Dictionary manager issues
    [all...]
  /external/chromium_org/net/base/
sdch_manager.cc 32 SdchManager::Dictionary::Dictionary(const std::string& dictionary_text,
49 SdchManager::Dictionary::~Dictionary() {
52 bool SdchManager::Dictionary::CanAdvertise(const GURL& target_url) {
55 /* The specific rules of when a dictionary should be advertised in an
56 Avail-Dictionary header are modeled after the rules for cookie scoping. The
58 dictionary may be advertised in the Avail-Dictionaries header exactly when
61 the dictionary.
62 2. If the dictionary has a Port attribute, the request port is one of th
466 Dictionary* dictionary = local
    [all...]
sdch_manager.h 12 // can find a dictionary (based on a server specification of a hash), store a
13 // dictionary, and make judgements about what URLs can use, set, etc. a
14 // dictionary.
17 // (containing metadata) as well as a VCDIFF dictionary (for use by a VCDIFF
40 // A browser may register a fetcher that is used by the dictionary managers to
48 // The Schedule() method is called when there is a need to get a dictionary
82 // Dictionary selection for use problems.
90 // Dictionary saving problems.
100 // Dictionary loading problems.
118 // Dictionary manager issues
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 30 UInt32 Dictionary;
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
  /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 25 * Abstract base class for a dictionary that can do a fuzzy search for words based on a set of key
28 public abstract class Dictionary {
31 // The following types do not actually come from real dictionary instances, so we create
34 public static final Dictionary DICTIONARY_USER_TYPED = new PhonyDictionary(TYPE_USER_TYPED);
37 public static final Dictionary DICTIONARY_APPLICATION_DEFINED =
41 public static final Dictionary DICTIONARY_HARDCODED =
46 public static final Dictionary DICTIONARY_RESUMED =
49 // The following types of dictionary have actual functional instances. We don't need final
50 // phony dictionary instances for them.
53 // User dictionary, the system-managed one
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
JSONValues.h 157 typedef HashMap<String, RefPtr<JSONValue> > Dictionary;
160 typedef Dictionary::iterator iterator;
161 typedef Dictionary::const_iterator const_iterator;
208 Dictionary m_data;
  /external/v8/src/
objects.h 76 // - Dictionary
    [all...]
  /external/chromium_org/v8/src/
objects.h 88 // - Dictionary
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 2911 milliseconds

1 2