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

  /external/chromium_org/gin/
dictionary.cc 5 #include "gin/dictionary.h"
9 Dictionary::Dictionary(v8::Isolate* isolate)
13 Dictionary::Dictionary(v8::Isolate* isolate,
19 Dictionary::~Dictionary() {
22 Dictionary Dictionary::CreateEmpty(v8::Isolate* isolate) {
23 Dictionary dictionary(isolate)
    [all...]
dictionary.h 13 // Dictionary is useful when writing bindings for a function that either
15 // arbitrary JavaScript object as a result. For example, Dictionary is useful
16 // when you might use the |dictionary| type in WebIDL:
20 // WARNING: You cannot retain a Dictionary object in the heap. The underlying
21 // storage for Dictionary is tied to the closest enclosing
22 // v8::HandleScope. Generally speaking, you should store a Dictionary
25 class GIN_EXPORT Dictionary {
27 explicit Dictionary(v8::Isolate* isolate);
28 Dictionary(v8::Isolate* isolate, v8::Handle<v8::Object> object);
29 ~Dictionary();
    [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);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
Dictionary.cpp 27 #include "bindings/core/v8/Dictionary.h"
62 Dictionary::Dictionary()
67 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolate)
74 Dictionary::~Dictionary()
78 Dictionary& Dictionary::operator=(const Dictionary& optionsObject
    [all...]
Dictionary.h 49 class Dictionary {
52 Dictionary();
53 Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate*);
54 ~Dictionary();
56 Dictionary& operator=(const Dictionary&);
61 static Dictionary createEmpty(v8::Isolate*);
66 bool get(const String&, Dictionary&) const;
73 bool set(const String&, const Dictionary&);
124 bool convert(ConversionContext&, const String&, Dictionary&) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 18 class Dictionary;
289 bool initialize{{cpp_class}}({{cpp_class}}Init&, const Dictionary&, ExceptionState&, const v8::FunctionCallbackInfo<v8::Value>& info, const String& = "");
  /external/chromium_org/base/mac/
foundation_util.h 220 CF_TO_NS_MUTABLE_CAST_DECL(Dictionary);
343 // Utility function to pull out a value from a dictionary, check its type, and
  /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/net/base/
sdch_manager.cc 65 SdchManager::Dictionary::Dictionary(const std::string& dictionary_text,
82 SdchManager::Dictionary::~Dictionary() {
85 bool SdchManager::Dictionary::CanAdvertise(const GURL& target_url) {
86 /* The specific rules of when a dictionary should be advertised in an
87 Avail-Dictionary header are modeled after the rules for cookie scoping. The
89 dictionary may be advertised in the Avail-Dictionaries header exactly when
92 the dictionary.
93 2. If the dictionary has a Port attribute, the request port is one of th
605 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
50 // dictionary. |dictionary_text| contains the body of the dictionary
59 // The Schedule() method is called when there is a need to get a dictionary
64 // The Cancel() method is called to cancel all pending dictionary fetches.
100 // Dictionary selection for use problems
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Results.h 24 class Dictionary;
36 Dictionary,
68 Dictionary *
71 if (m_type == Type::Dictionary)
72 return (Dictionary *)this;
156 class Dictionary : public Result
159 Dictionary () :
160 Result (Type::Dictionary, NULL, NULL)
164 Dictionary (const char *name, const char *description) :
165 Result (Type::Dictionary, name, description
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
JSONValues.h 164 typedef HashMap<String, RefPtr<JSONValue> > Dictionary;
167 typedef Dictionary::iterator iterator;
168 typedef Dictionary::const_iterator const_iterator;
217 Dictionary m_data;
  /external/lldb/source/Host/macosx/cfcpp/
CFCMutableDictionary.cpp 106 CFCMutableDictionary::Dictionary(bool can_create)
120 CFMutableDictionaryRef dict = Dictionary(can_create);
123 // Let the dictionary own the CFNumber
133 CFMutableDictionaryRef dict = Dictionary(can_create);
136 // Let the dictionary own the CFNumber
146 CFMutableDictionaryRef dict = Dictionary(can_create);
152 // Let the dictionary own the CFNumber
163 CFMutableDictionaryRef dict = Dictionary(can_create);
169 // Let the dictionary own the CFNumber
180 CFMutableDictionaryRef dict = Dictionary(can_create)
    [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...]
  /external/chromium_org/v8/src/
objects.h 74 // - Dictionary
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 1565 milliseconds