Searched defs:Dictionary (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/gin/
H A Ddictionary.cc9 Dictionary::Dictionary(v8::Isolate* isolate) function in class:gin::Dictionary
13 Dictionary::Dictionary(v8::Isolate* isolate, function in class:gin::Dictionary
19 Dictionary::~Dictionary() {
22 Dictionary Dictionary::CreateEmpty(v8::Isolate* isolate) {
23 Dictionary dictionary(isolate);
28 v8::Handle<v8::Value> Converter<Dictionary>
[all...]
H A Ddictionary.h13 // Dictionary is useful when writing bindings for a function that either
15 // arbitrary JavaScript object as a result. For example, Dictionary is useful
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 { class in namespace:gin
27 explicit Dictionary(v8::Isolate* isolate);
28 Dictionary(v8::Isolate* isolate, v8::Handle<v8::Object> object);
29 ~Dictionary();
31 static Dictionary CreateEmpt
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key ) argument
105 public static void put<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key, TValue value ) argument
122 // disambiguates for Dictionary, which implements both IDictionary<T,K> and IDictionary
124 public static HashSet<TKey> keySet<TKey, TValue>( this Dictionary<TKey, TValue> map ) argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDictionary.cpp27 #include "bindings/v8/Dictionary.h"
60 Dictionary::Dictionary() function in class:WebCore::Dictionary
65 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolate) function in class:WebCore::Dictionary
72 Dictionary::~Dictionary()
76 Dictionary& Dictionary::operator=(const Dictionary
[all...]
H A DDictionary.h62 class Dictionary { class in namespace:WebCore
65 Dictionary();
66 Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate*);
67 ~Dictionary();
69 Dictionary& operator=(const Dictionary&);
100 bool get(const String&, Dictionary&) const;
166 bool convert(ConversionContext&, const String&, Dictionary&) const;
190 struct NativeValueTraits<Dictionary> {
191 static inline Dictionary nativeValu
[all...]
/external/chromium_org/tools/json_schema_compiler/test/
H A Dtest_util.cc46 scoped_ptr<base::DictionaryValue> Dictionary( function in namespace:json_schema_compiler::test_util
52 scoped_ptr<base::DictionaryValue> Dictionary( function in namespace:json_schema_compiler::test_util
55 scoped_ptr<base::DictionaryValue> dict = Dictionary(ak, av);
59 scoped_ptr<base::DictionaryValue> Dictionary( function in namespace:json_schema_compiler::test_util
63 scoped_ptr<base::DictionaryValue> dict = Dictionary(ak, av, bk, bv);
/external/chromium_org/base/mac/
H A Dfoundation_util.h220 CF_TO_NS_MUTABLE_CAST_DECL(Dictionary); variable
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface.h18 class Dictionary;
280 bool initialize{{cpp_class}}({{cpp_class}}Init&, const Dictionary&, ExceptionState&, const v8::FunctionCallbackInfo<v8::Value>& info, const String& = ""); variable
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema.py132 class Dictionary(object): class in inherits:object
134 Given an IDL Dictionary node, converts into a Python dictionary that the JSON
358 if node.cls == 'Dictionary':
359 self.types.append(Dictionary(node).process(self.callbacks))
/external/lldb/tools/lldb-perf/lib/
H A DResults.h24 class Dictionary;
36 Dictionary, member in class:lldb_perf::Results::Result::Type
68 Dictionary *
71 if (m_type == Type::Dictionary)
72 return (Dictionary *)this;
156 class Dictionary : public Result class in class:lldb_perf::Results
159 Dictionary () : function in class:lldb_perf::Results::Dictionary
160 Result (Type::Dictionary, NULL, NULL)
164 Dictionary (const char *name, const char *description) : function in class:lldb_perf::Results::Dictionary
165 Result (Type::Dictionary, nam
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DZipRegistry.h30 UInt32 Dictionary; member in struct:NCompression::CFormatOptions
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
/external/chromium_org/net/base/
H A Dsdch_manager.cc39 SdchManager::Dictionary::Dictionary(const std::string& dictionary_text, function in class:net::SdchManager::Dictionary
56 SdchManager::Dictionary::~Dictionary() {
59 bool SdchManager::Dictionary::CanAdvertise(const GURL& target_url) {
61 Avail-Dictionary header are modeled after the rules for cookie scoping. The
93 bool SdchManager::Dictionary::CanSet(const std::string& domain,
125 if (!Dictionary::DomainMatch(dictionary_url, domain)) {
152 bool SdchManager::Dictionary::CanUse(const GURL& referring_url) {
196 bool SdchManager::Dictionary
[all...]
H A Dsdch_manager.h87 // Dictionary selection for use problems.
95 // Dictionary saving problems.
105 // Dictionary loading problems.
123 // Dictionary manager issues.
127 META_REFRESH_RECOVERY = 70, // Dictionary not found.
168 // There is one instance of |Dictionary| for each memory-cached SDCH
170 class NET_EXPORT_PRIVATE Dictionary : public base::RefCounted<Dictionary> { class in class:net::SdchManager
176 friend class base::RefCounted<Dictionary>;
183 Dictionary(cons
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DJSONValues.h158 typedef HashMap<String, RefPtr<JSONValue> > Dictionary; typedef in class:WebCore::JSONObjectBase
161 typedef Dictionary::iterator iterator;
162 typedef Dictionary::const_iterator const_iterator;
209 Dictionary m_data;
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableDictionary.cpp106 CFCMutableDictionary::Dictionary(bool can_create) function in class:CFCMutableDictionary
120 CFMutableDictionaryRef dict = Dictionary(can_create);
133 CFMutableDictionaryRef dict = Dictionary(can_create);
146 CFMutableDictionaryRef dict = Dictionary(can_create);
163 CFMutableDictionaryRef dict = Dictionary(can_create);
180 CFMutableDictionaryRef dict = Dictionary(can_create);
197 CFMutableDictionaryRef dict = Dictionary(can_create);
214 CFMutableDictionaryRef dict = Dictionary(can_create);
231 CFMutableDictionaryRef dict = Dictionary(can_create);
248 CFMutableDictionaryRef dict = Dictionary(can_creat
[all...]
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs67 Dictionary, enumerator in enum:SevenZip.LzmaAlone.Key
172 if (parser[(int)Key.Dictionary].ThereIs)
175 if (!GetNumber((string)parser[(int)Key.Dictionary].PostStrings[0], out dicLog))
/external/chromium_org/v8/src/
H A Dobjects.cc5621 template<typename Dictionary>
5622 static void FreezeDictionary(Dictionary* dictionary) {
13561 void Dictionary<Derived, Shape, Key>::Print(FILE* out) {
13582 void Dictionary<Derived, Shape, Key>::CopyValuesTo(FixedArray* elements) {
13588 Object* k = Dictionary::KeyAt(i);
13589 if (Dictionary::IsKey(k)) {
14004 // Copy the keys from arguments first, because Dictionary::CopyKeysTo
14599 template class Dictionary<NameDictionary, NameDictionaryShape, Handle<Name> >;
14601 template class Dictionary<SeededNumberDictionary,
14605 template class Dictionary<UnseededNumberDictionar
15771 CopyKeysTo( FixedArray* storage, PropertyAttributes filter, typename Dictionary<Derived, Shape, Key>::SortMode sort_mode) argument
15831 CopyKeysTo( FixedArray* storage, int index, PropertyAttributes filter, typename Dictionary<Derived, Shape, Key>::SortMode sort_mode) argument
[all...]
H A Dobjects.h68 // - Dictionary
975 V(Dictionary) \
2028 // properties is a FixedArray in the fast case and a Dictionary in the
3962 class Dictionary: public HashTable<Derived, Shape, Key> { class in class:v8::internal::ConstantPoolArray
3967 static inline Dictionary* cast(Object* obj) {
3968 return reinterpret_cast<Dictionary*>(obj);
4101 class NameDictionary: public Dictionary<NameDictionary,
4104 typedef Dictionary<
4155 : public Dictionary<SeededNumberDictionary,
4206 : public Dictionary<UnseededNumberDictionar
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 2257 milliseconds