/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/ |
ElementAnimation.idl | 32 [RuntimeEnabled=WebAnimationsAPI] void animate(sequence<Dictionary> keyframes, optional double duration);
|
ElementAnimation.h | 34 #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/mediastream/ |
NavigatorMediaStream.h | 28 class Dictionary; 36 static void webkitGetUserMedia(Navigator*, const Dictionary&, PassOwnPtr<NavigatorUserMediaSuccessCallback>, PassOwnPtr<NavigatorUserMediaErrorCallback>, ExceptionState&);
|
NavigatorMediaStream.idl | 21 [RuntimeEnabled=MediaStream, RaisesException] void webkitGetUserMedia(Dictionary options,
|
MediaConstraintsImpl.h | 40 class Dictionary; 47 static PassRefPtr<MediaConstraintsImpl> create(const Dictionary&, ExceptionState&); 58 bool initialize(const Dictionary&);
|
RTCIceCandidate.h | 43 class Dictionary; 48 static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&);
|
RTCIceCandidate.idl | 32 Constructor(Dictionary dictionary),
|
RTCSessionDescription.h | 42 class Dictionary; 47 static PassRefPtr<RTCSessionDescription> create(const Dictionary&, ExceptionState&);
|
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
NavigatorWebMIDI.idl | 32 [RuntimeEnabled=WebMIDI] MIDIAccessPromise requestMIDIAccess(optional Dictionary options);
|
MIDIOptions.h | 34 #include "bindings/v8/Dictionary.h" 39 explicit MIDIOptions(const Dictionary& options)
|
NavigatorWebMIDI.h | 48 static PassRefPtr<MIDIAccessPromise> requestMIDIAccess(Navigator*, const Dictionary&); 49 PassRefPtr<MIDIAccessPromise> requestMIDIAccess(const Dictionary&);
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
SubtleCrypto.idl | 34 [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? unwrappedKeyAlgorithm, boolean extractable, DOMString[] keyUsages) [all...] |
SubtleCrypto.h | 42 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&, const Dictionary&, bool, const Vector<String>&, ExceptionState&) [all...] |
NormalizeAlgorithm.h | 41 class Dictionary; 59 // Normalizes an algorithm identifier (dictionary) into a WebCryptoAlgorithm. If 61 bool normalizeAlgorithm(const Dictionary&, AlgorithmOperation, blink::WebCryptoAlgorithm&, ExceptionState&) WARN_UNUSED_RETURN;
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestInterfaceConstructor.idl | 38 Dictionary dictionaryArg, 40 optional Dictionary optionalDictionaryArg,
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationObserver.idl | 34 [RaisesException] void observe(Node target, Dictionary options);
|
/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/modules/encoding/ |
TextDecoder.h | 34 #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); }
|
TextDecoder.idl | 34 Constructor([Default=NullString] optional DOMString label, optional Dictionary options), 38 [RaisesException] DOMString decode(optional ArrayBufferView input, optional Dictionary options);
|
TextEncoder.h | 43 class Dictionary; 53 PassRefPtr<Uint8Array> encode(const String&, const Dictionary&);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
dictionary.cpp | 17 #define LOG_TAG "LatinIME: dictionary.cpp" 19 #include "suggest/core/dictionary/dictionary.h" 24 #include "suggest/core/dictionary/bigram_dictionary.h" 36 const int Dictionary::HEADER_ATTRIBUTE_BUFFER_SIZE = 32; 38 Dictionary::Dictionary(JNIEnv *env, 47 Dictionary::~Dictionary() { 54 int Dictionary::getSuggestions(ProximityInfo *proximityInfo, DicTraverseSession *traverseSession [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DirectoryEntrySync.idl | 35 [RaisesException] FileEntrySync getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, Dictionary flags); 36 [RaisesException] DirectoryEntrySync getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, Dictionary flags);
|
FileSystemFlags.h | 34 #include "bindings/v8/Dictionary.h" 39 explicit FileSystemFlags(const Dictionary& options)
|