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

1 2 3 4 5 6 7 8 91011>>

  /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/third_party/WebKit/Source/core/animation/
Animation.idl 35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
EffectInput.h 14 class Dictionary;
20 static PassRefPtrWillBeRawPtr<AnimationEffect> convert(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaConstraintsImpl.h 38 class Dictionary;
44 WebMediaConstraints create(const Dictionary&, ExceptionState&);
NavigatorMediaStream.h 29 class Dictionary;
38 static void webkitGetUserMedia(Navigator&, const Dictionary&, NavigatorUserMediaSuccessCallback*, NavigatorUserMediaErrorCallback*, ExceptionState&);
NavigatorMediaStream.idl 23 [RaisesException] void webkitGetUserMedia(Dictionary options,
RTCSessionDescription.idl 33 Constructor(optional Dictionary descriptionInitDict),
RTCIceCandidate.h 40 class Dictionary;
46 static RTCIceCandidate* create(const Dictionary&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
DictionaryHelperForModules.cpp 70 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&, Dictionary::ConversionContext&, const String& key, Member<Gamepad>& value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.h 43 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&, bool extractable, const Vector<String>& keyUsages)
    [all...]
NormalizeAlgorithm.h 42 class Dictionary;
49 // Converts a javascript Dictionary to a WebCryptoAlgorithm object.
60 bool normalizeAlgorithm(const Dictionary&, WebCryptoOperation, WebCryptoAlgorithm&, AlgorithmError*) WARN_UNUSED_RETURN;
SubtleCrypto.idl 43 [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 algorithm, ArrayBufferView data)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionOptions.h 33 class Dictionary;
37 static PositionOptions* create(const Dictionary&);
45 explicit PositionOptions(const Dictionary&);
Geolocation.idl 31 // FIXME: should be: PositionOptions options: need PositionOptions.idl and dictionary http:/crbug.com/321462
34 optional Dictionary options);
36 // FIXME: should be: PositionOptions options: need PositionOptions.idl and dictionary http:/crbug.com/321462
39 optional Dictionary options);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DirectoryEntrySync.idl 35 [RaisesException] FileEntrySync getFile([TreatUndefinedAs=NullString] DOMString? path, Dictionary flags);
36 [RaisesException] DirectoryEntrySync getDirectory([TreatUndefinedAs=NullString] DOMString? path, Dictionary flags);
DirectoryEntry.idl 35 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);
FileSystemFlags.h 34 #include "bindings/core/v8/Dictionary.h"
39 explicit FileSystemFlags(const Dictionary& options)
  /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...]
DictionaryHelperForCore.cpp 51 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, v8::Local<v8::Value>& value)
53 return dictionary.get(key, value);
57 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, Dictionary& value)
59 return dictionary.get(key, value);
63 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, bool& value)
66 if (!dictionary.get(key, v8Value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RequestInit.h 8 #include "bindings/core/v8/Dictionary.h"
22 explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&);
26 Dictionary headersDictionary;
  /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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestInterfaceConstructor2.idl 42 Constructor(Dictionary dictionaryArg),
49 [Default=Undefined] optional Dictionary defaultUndefinedOptionalDictionaryArg,
  /external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
CredentialsContainer.h 14 class Dictionary;
24 ScriptPromise request(ScriptState*, const Dictionary&);

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>