Searched refs:Dictionary (Results 1 - 25 of 190) sorted by relevance

12345678

/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/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimation.idl35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
H A DEffectInput.h14 class Dictionary;
20 static PassRefPtrWillBeRawPtr<AnimationEffect> convert(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
H A DDictionaryHelperForModules.cpp70 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MIDIPort>& value);
71 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<SpeechRecognitionResultList>& value);
72 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Gamepad>& value);
73 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MediaStream>& value);
74 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Headers>& value);
76 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MIDIPort>& value);
77 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<SpeechRecognitionResultList>& value);
78 template bool DictionaryHelper::convert(const Dictionary
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.h43 class Dictionary;
53 ScriptPromise encrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
54 ScriptPromise decrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
55 ScriptPromise sign(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
57 ScriptPromise verifySignature(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece& signature, const ArrayPiece& data);
58 ScriptPromise digest(ScriptState*, const Dictionary&, const ArrayPiece& data);
60 ScriptPromise generateKey(ScriptState*, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
61 ScriptPromise importKey(ScriptState*, const String&, const ArrayPiece&, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
62 ScriptPromise importKey(ScriptState*, const String&, const Dictionary&, const Dictionary
[all...]
H A DNormalizeAlgorithm.h42 class Dictionary;
49 // Converts a javascript Dictionary to a WebCryptoAlgorithm object.
60 bool normalizeAlgorithm(const Dictionary&, WebCryptoOperation, WebCryptoAlgorithm&, AlgorithmError*) WARN_UNUSED_RETURN;
H A DSubtleCrypto.idl43 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
44 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
46 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
47 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
49 [CallWith=ScriptState] Promise sign(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
50 [CallWith=ScriptState] Promise sign(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
52 // FIXME: should be: Promise verify(Dictionary algorithm, CryptoKey key, CryptoOperationData signature, CryptoOperationData data);
53 [CallWith=ScriptState, Custom, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, CryptoKey key, object signature, object data);
55 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBuffer data);
56 [CallWith=ScriptState] Promise digest(Dictionary algorith
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaConstraintsImpl.h38 class Dictionary;
44 WebMediaConstraints create(const Dictionary&, ExceptionState&);
H A DNavigatorMediaStream.h29 class Dictionary;
38 static void webkitGetUserMedia(Navigator&, const Dictionary&, NavigatorUserMediaSuccessCallback*, NavigatorUserMediaErrorCallback*, ExceptionState&);
H A DNavigatorMediaStream.idl23 [RaisesException] void webkitGetUserMedia(Dictionary options,
H A DRTCSessionDescription.idl33 Constructor(optional Dictionary descriptionInitDict),
H A DRTCIceCandidate.idl33 Constructor(Dictionary dictionary),
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DPositionOptions.h33 class Dictionary;
37 static PositionOptions* create(const Dictionary&);
45 explicit PositionOptions(const Dictionary&);
H A DGeolocation.idl34 optional Dictionary options);
39 optional Dictionary options);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDictionary.cpp27 #include "bindings/core/v8/Dictionary.h"
62 Dictionary::Dictionary() function in class:blink::Dictionary
67 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolate) function in class:blink::Dictionary
74 Dictionary::~Dictionary()
78 Dictionary& Dictionary::operator=(const Dictionary
[all...]
H A DDictionary.h49 class Dictionary { class in namespace:blink
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
[all...]
H A DDictionaryHelperForCore.cpp51 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, v8::Local<v8::Value>& value)
57 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, Dictionary& value)
63 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, bool& value)
77 bool DictionaryHelper::convert(const Dictionary& dictionary, Dictionary::ConversionContext& context, const String& key, bool& value)
79 Dictionary::ConversionContextScope scope(context);
85 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, int32_t& value)
99 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, double& value, bool& hasValue)
116 bool DictionaryHelper::get(const Dictionary
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryEntrySync.idl35 [RaisesException] FileEntrySync getFile([TreatUndefinedAs=NullString] DOMString? path, Dictionary flags);
36 [RaisesException] DirectoryEntrySync getDirectory([TreatUndefinedAs=NullString] DOMString? path, Dictionary flags);
H A DDirectoryEntry.idl35 void getFile([TreatUndefinedAs=NullString] DOMString? path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
36 void getDirectory([TreatUndefinedAs=NullString] DOMString? path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
H A DTestInterfaceConstructor2.idl42 Constructor(Dictionary dictionaryArg),
49 [Default=Undefined] optional Dictionary defaultUndefinedOptionalDictionaryArg,
H A DTestInterfaceConstructor.idl38 Dictionary dictionaryArg,
40 sequence<Dictionary> sequenceDictionaryArg,
41 optional Dictionary optionalDictionaryArg,
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DRequestInit.h8 #include "bindings/core/v8/Dictionary.h"
22 explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&);
26 Dictionary headersDictionary;
/external/lldb/tools/lldb-perf/lib/
H A DGauge.cpp19 std::unique_ptr<Results::Dictionary> value_dict_ap (new Results::Dictionary ());
33 std::unique_ptr<Results::Dictionary> value_dict_ap (new Results::Dictionary ());
47 std::unique_ptr<Results::Dictionary> value_dict_ap (new Results::Dictionary ());
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...]

Completed in 576 milliseconds

12345678