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

1234567

/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 DElementAnimation.idl32 [RuntimeEnabled=WebAnimationsAPI] void animate(sequence<Dictionary> keyframes, optional double duration);
H A DElementAnimation.h34 #include "bindings/v8/Dictionary.h"
44 static void animate(Element*, Vector<Dictionary> keyframesDictionaryVector, double duration = 0);
47 static void startAnimation(Element*, Vector<Dictionary> keyframesDictionaryVector, double duration = 0);
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DNavigatorWebMIDI.idl32 [RuntimeEnabled=WebMIDI] MIDIAccessPromise requestMIDIAccess(optional Dictionary options);
H A DMIDIOptions.h34 #include "bindings/v8/Dictionary.h"
39 explicit MIDIOptions(const Dictionary& options)
H A DNavigatorWebMIDI.h48 static PassRefPtr<MIDIAccessPromise> requestMIDIAccess(Navigator*, const Dictionary&);
49 PassRefPtr<MIDIAccessPromise> requestMIDIAccess(const Dictionary&);
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.idl34 [RaisesException] Promise encrypt(Dictionary algorithm, Key key, ArrayBufferView data);
35 [RaisesException] Promise decrypt(Dictionary algorithm, Key key, ArrayBufferView data);
36 [RaisesException] Promise sign(Dictionary algorithm, Key key, ArrayBufferView data);
37 [RaisesException, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, Key key, ArrayBufferView signature, ArrayBufferView data);
38 [RaisesException] Promise digest(Dictionary algorithm, ArrayBufferView data);
40 [RaisesException] Promise generateKey(Dictionary algorithm, boolean extractable, DOMString[] keyUsages);
41 [RaisesException] Promise importKey(DOMString format, ArrayBufferView keyData, Dictionary? algorithm, boolean extractable, DOMString[] keyUsages);
44 [RaisesException] Promise wrapKey(DOMString format, Key key, Key wrappingKey, Dictionary wrapAlgorithm);
45 [RaisesException] Promise unwrapKey(DOMString format, ArrayBufferView wrappedKey, Key unwrappingKey, Dictionary unwrapAlgorithm, Dictionary
[all...]
H A DSubtleCrypto.h42 class Dictionary;
50 ScriptPromise encrypt(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
51 ScriptPromise decrypt(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
52 ScriptPromise sign(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
54 ScriptPromise verifySignature(const Dictionary&, Key*, ArrayBufferView* signature, ArrayBufferView* data, ExceptionState&);
55 ScriptPromise digest(const Dictionary&, ArrayBufferView* data, ExceptionState&);
57 ScriptPromise generateKey(const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
58 ScriptPromise importKey(const String&, ArrayBufferView*, const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
61 ScriptPromise wrapKey(const String&, Key*, Key*, const Dictionary&, ExceptionState&);
62 ScriptPromise unwrapKey(const String&, ArrayBufferView*, Key*, const Dictionary
[all...]
H A DNormalizeAlgorithm.h41 class Dictionary;
61 bool normalizeAlgorithm(const Dictionary&, AlgorithmOperation, blink::WebCryptoAlgorithm&, ExceptionState&) WARN_UNUSED_RETURN;
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestInterfaceConstructor.idl38 Dictionary dictionaryArg,
40 optional Dictionary optionalDictionaryArg,
H A DTestInterfaceConstructor2.idl45 [Default=Undefined] optional Dictionary defaultUndefinedOptionalDictionaryArg),
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMutationObserver.idl34 [RaisesException] void observe(Node target, Dictionary options);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DNavigatorMediaStream.h28 class Dictionary;
36 static void webkitGetUserMedia(Navigator*, const Dictionary&, PassOwnPtr<NavigatorUserMediaSuccessCallback>, PassOwnPtr<NavigatorUserMediaErrorCallback>, ExceptionState&);
H A DNavigatorMediaStream.idl21 [RuntimeEnabled=MediaStream, RaisesException] void webkitGetUserMedia(Dictionary options,
H A DRTCIceCandidate.idl32 Constructor(Dictionary dictionary),
H A DMediaConstraintsImpl.h40 class Dictionary;
47 static PassRefPtr<MediaConstraintsImpl> create(const Dictionary&, ExceptionState&);
58 bool initialize(const Dictionary&);
H A DRTCIceCandidate.h43 class Dictionary;
48 static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&);
H A DRTCSessionDescription.h42 class Dictionary;
47 static PassRefPtr<RTCSessionDescription> create(const Dictionary&, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
H A DTextDecoder.idl34 Constructor([Default=NullString] optional DOMString label, optional Dictionary options),
38 [RaisesException] DOMString decode(optional ArrayBufferView input, optional Dictionary options);
H A DTextDecoder.h34 #include "bindings/v8/Dictionary.h"
47 static PassRefPtr<TextDecoder> create(const String& label, const Dictionary&, ExceptionState&);
52 String decode(ArrayBufferView*, const Dictionary&, ExceptionState&);
53 String decode(ExceptionState& exceptionState) { return decode(0, Dictionary(), exceptionState); }
H A DTextEncoder.h43 class Dictionary;
53 PassRefPtr<Uint8Array> encode(const String&, const Dictionary&);
H A DTextEncoder.idl38 Uint8Array encode([Default=NullString] optional DOMString input, optional Dictionary options);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryEntrySync.idl35 [RaisesException] FileEntrySync getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, Dictionary flags);
36 [RaisesException] DirectoryEntrySync getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, Dictionary flags);
H A DFileSystemFlags.h34 #include "bindings/v8/Dictionary.h"
39 explicit FileSystemFlags(const Dictionary& options)

Completed in 1391 milliseconds

1234567