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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.idl 34 [RaisesException] CryptoOperation encrypt(Dictionary algorithm, Key key);
35 [RaisesException] CryptoOperation decrypt(Dictionary algorithm, Key key);
36 [RaisesException] CryptoOperation sign(Dictionary algorithm, Key key);
37 [RaisesException, ImplementedAs=verifySignature] CryptoOperation verify(Dictionary algorithm, Key key, ArrayBufferView signature);
38 [RaisesException] CryptoOperation digest(Dictionary algorithm);
40 [RaisesException] any generateKey(Dictionary algorithm, boolean extractable, DOMString[] keyUsages);
41 [RaisesException] any importKey(DOMString format, ArrayBufferView keyData, Dictionary algorithm, boolean extractable, DOMString[] keyUsages);
SubtleCrypto.h 43 class Dictionary;
51 PassRefPtr<CryptoOperation> encrypt(const Dictionary&, Key*, ExceptionState&);
52 PassRefPtr<CryptoOperation> decrypt(const Dictionary&, Key*, ExceptionState&);
53 PassRefPtr<CryptoOperation> sign(const Dictionary&, Key*, ExceptionState&);
55 PassRefPtr<CryptoOperation> verifySignature(const Dictionary&, Key*, ArrayBufferView* signature, ExceptionState&);
56 PassRefPtr<CryptoOperation> digest(const Dictionary&, ExceptionState&);
58 ScriptObject generateKey(const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
59 ScriptObject importKey(const String&, ArrayBufferView*, const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
NormalizeAlgorithm.h 40 class Dictionary;
58 // Normalizes an algorithm identifier (dictionary) into a WebCryptoAlgorithm. If
60 bool normalizeAlgorithm(const Dictionary&, AlgorithmOperation, WebKit::WebCryptoAlgorithm&, ExceptionState&) WARN_UNUSED_RETURN;
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
NavigatorMediaStream.h 28 class Dictionary;
36 static void webkitGetUserMedia(Navigator*, const Dictionary&, PassRefPtr<NavigatorUserMediaSuccessCallback>, PassRefPtr<NavigatorUserMediaErrorCallback>, ExceptionState&);
NavigatorMediaStream.idl 21 [EnabledAtRuntime=mediaStream, RaisesException] void webkitGetUserMedia(Dictionary options,
RTCSessionDescription.idl 32 Constructor(Dictionary dictionary),
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 [EnabledAtRuntime=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/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& es) { return decode(0, Dictionary(), es); }
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)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 25 * Abstract base class for a dictionary that can do a fuzzy search for words based on a set of key
28 public abstract class Dictionary {
31 // The following types do not actually come from real dictionary instances, so we create
34 public static final Dictionary DICTIONARY_USER_TYPED = new PhonyDictionary(TYPE_USER_TYPED);
37 public static final Dictionary DICTIONARY_APPLICATION_DEFINED =
41 public static final Dictionary DICTIONARY_HARDCODED =
46 public static final Dictionary DICTIONARY_RESUMED =
49 // The following types of dictionary have actual functional instances. We don't need final
50 // phony dictionary instances for them.
53 // User dictionary, the system-managed one
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementConstructorBuilder.h 47 class Dictionary;
62 CustomElementConstructorBuilder(ScriptState*, const Dictionary* options);
87 const Dictionary* m_options;
Dictionary.cpp 27 #include "bindings/v8/Dictionary.h"
61 Dictionary::Dictionary()
66 Dictionary::Dictionary(const v8::Local<v8::Value>& options, v8::Isolate* isolate)
73 Dictionary::~Dictionary()
77 Dictionary& Dictionary::operator=(const Dictionary& optionsObject
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictAndKeyboard.java 19 import com.android.inputmethod.latin.Dictionary;
26 * A container for a Dictionary and a Keyboard.
29 public final Dictionary mDictionary;
34 final Dictionary dictionary, final KeyboardLayoutSet keyboardLayoutSet) {
35 mDictionary = dictionary;

Completed in 308 milliseconds

1 2 3 4 5 6 7 8 9