/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...] |
DictionaryCollection.java | 31 * Class for a collection of dictionaries that behave like one dictionary. 33 public final class DictionaryCollection extends Dictionary { 35 protected final CopyOnWriteArrayList<Dictionary> mDictionaries; 42 public DictionaryCollection(final String dictType, final Dictionary... dictionaries) { 52 public DictionaryCollection(final String dictType, final Collection<Dictionary> dictionaries) { 62 final CopyOnWriteArrayList<Dictionary> dictionaries = mDictionaries; 65 // dictionary and add the rest to it if not null, hence the get(0) 104 for (final Dictionary dict : mDictionaries) 109 public void addDictionary(final Dictionary newDict) { 112 Log.w(TAG, "This collection already contains this dictionary: " + newDict) [all...] |
Suggest.java | 43 * This class loads a dictionary and provides a list of suggestions for a given sequence of 71 private final ConcurrentHashMap<String, Dictionary> mDictionaries = 74 private Dictionary mMainDictionary; 92 mOnlyDictionarySetForDebug.add(Dictionary.TYPE_PERSONALIZATION); 93 mOnlyDictionarySetForDebug.add(Dictionary.TYPE_PERSONALIZATION_PREDICTION_IN_JAVA); 99 final Dictionary mainDict = DictionaryFactory.createDictionaryForTest(dictionaryList, 103 addOrReplaceDictionaryInternal(Dictionary.TYPE_MAIN, mainDict); 111 private void addOrReplaceDictionaryInternal(final String key, final Dictionary dict) { 113 Log.w(TAG, "Ignore add " + key + " dictionary for debug."); 120 final ConcurrentHashMap<String, Dictionary> dictionaries 262 final Dictionary dictionary = mDictionaries.get(key); local 368 final Dictionary dictionary = mDictionaries.get(key); local [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
CustomElementConstructorBuilder.h | 47 class Dictionary; 63 CustomElementConstructorBuilder(ScriptState*, const Dictionary* options); 86 const Dictionary* m_options;
|
ArrayValue.h | 34 class Dictionary; 52 bool get(size_t index, Dictionary&) const;
|
Dictionary.cpp | 27 #include "bindings/v8/Dictionary.h" 61 Dictionary::Dictionary() 66 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolate) 73 Dictionary::~Dictionary() 77 Dictionary& Dictionary::operator=(const Dictionary& optionsObject [all...] |
ArrayValue.cpp | 29 #include "bindings/v8/Dictionary.h" 55 bool ArrayValue::get(size_t index, Dictionary& value) const 69 value = Dictionary(indexedValue, m_isolate);
|
/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;
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestInterfaceConstructor2.idl | 45 [Default=Undefined] optional Dictionary defaultUndefinedOptionalDictionaryArg),
|
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
TextEncoder.idl | 38 Uint8Array encode([Default=NullString] optional DOMString input, optional Dictionary options);
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DirectoryEntrySync.h | 55 PassRefPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&); 56 PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&);
|
DirectoryEntry.idl | 35 void getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback); 36 void getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
|
DirectoryEntry.cpp | 53 void DirectoryEntry::getFile(const String& path, const Dictionary& options, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) 59 void DirectoryEntry::getDirectory(const String& path, const Dictionary& options, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback)
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCSessionDescription.idl | 32 Constructor(optional Dictionary descriptionInitDict),
|
RTCPeerConnection.idl | 33 Constructor(Dictionary rtcIceServers, optional Dictionary mediaConstraints), 38 [RaisesException] void createOffer(RTCSessionDescriptionCallback successCallback, [Default=Undefined] optional RTCErrorCallback failureCallback, optional Dictionary mediaConstraints); 40 [RaisesException] void createAnswer(RTCSessionDescriptionCallback successCallback, [Default=Undefined] optional RTCErrorCallback failureCallback, optional Dictionary mediaConstraints); 50 [RaisesException] void updateIce(optional Dictionary configuration, optional Dictionary mediaConstraints); 64 [StrictTypeChecking, RaisesException] void addStream(MediaStream stream, optional Dictionary mediaConstraints); 69 [RaisesException] RTCDataChannel createDataChannel([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString label, optional Dictionary options);
|
RTCPeerConnection.h | 34 #include "bindings/v8/Dictionary.h" 62 static PassRefPtr<RTCPeerConnection> create(ExecutionContext*, const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&); 65 void createOffer(PassOwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionState&); 67 void createAnswer(PassOwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionState&); 77 void updateIce(const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&); 94 void addStream(PassRefPtr<MediaStream>, const Dictionary& mediaConstraints, ExceptionState&); 100 PassRefPtr<RTCDataChannel> createDataChannel(String label, const Dictionary& dataChannelDict, ExceptionState&); 137 static PassRefPtr<RTCConfiguration> parseConfiguration(const Dictionary& configuration, ExceptionState&) [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
Notification.h | 43 class Dictionary; 52 static PassRefPtr<Notification> create(ExecutionContext*, const String& title, const Dictionary& options);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/ |
PersonalizationPredictionDictionary.java | 19 import com.android.inputmethod.latin.Dictionary; 30 super(context, locale, sp, Dictionary.TYPE_PERSONALIZATION_PREDICTION_IN_JAVA,
|
UserHistoryDictionary.java | 19 import com.android.inputmethod.latin.Dictionary; 34 super(context, locale, sp, Dictionary.TYPE_USER_HISTORY, getDictionaryFileName(locale));
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
dictionary.h | 34 class Dictionary { 56 Dictionary(JNIEnv *env, 93 virtual ~Dictionary(); 96 DISALLOW_IMPLICIT_CONSTRUCTORS(Dictionary);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
AutoCorrectionUtils.java | 20 import com.android.inputmethod.latin.Dictionary; 44 final ConcurrentHashMap<String, Dictionary> dictionaries = suggest.getUnigramDictionaries(); 47 final Dictionary dictionary = dictionaries.get(key); local 48 // It's unclear how realistically 'dictionary' can be null, but the monkey is somehow 50 // no main dictionary and the monkey manages to type a whole word before the thread 51 // that reads the dictionary is started or something? 55 if (null == dictionary) continue; 56 if (dictionary.isValidWord(word) 57 || (ignoreCase && dictionary.isValidWord(lowerCasedWord))) 71 final Dictionary dictionary = dictionaries.get(key); local [all...] |
/external/chromium/net/base/ |
sdch_manager.h | 12 // can find a dictionary (based on a server specification of a hash), store a 13 // dictionary, and make judgements about what URLs can use, set, etc. a 14 // dictionary. 17 // (containing metadata) as well as a VCDIFF dictionary (for use by a VCDIFF 39 // A browser may register a fetcher that is used by the dictionary managers to 47 // The Schedule() method is called when there is a need to get a dictionary 81 // Dictionary selection for use problems. 89 // Dictionary saving problems. 99 // Dictionary loading problems. 117 // Dictionary manager issues [all...] |
/external/chromium_org/mojo/apps/js/bindings/ |
core.cc | 12 #include "gin/dictionary.h" 24 gin::Dictionary CreateMessagePipe(const gin::Arguments& args) { 30 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local 31 dictionary.Set("handle0", handle_0); 32 dictionary.Set("handle1", handle_1); 33 return dictionary; 48 gin::Dictionary ReadMessage(const gin::Arguments& args, MojoHandle handle, 55 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()) local 78 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local [all...] |
/external/chromium_org/net/base/ |
sdch_manager.h | 12 // can find a dictionary (based on a server specification of a hash), store a 13 // dictionary, and make judgements about what URLs can use, set, etc. a 14 // dictionary. 17 // (containing metadata) as well as a VCDIFF dictionary (for use by a VCDIFF 40 // A browser may register a fetcher that is used by the dictionary managers to 48 // The Schedule() method is called when there is a need to get a dictionary 82 // Dictionary selection for use problems. 90 // Dictionary saving problems. 100 // Dictionary loading problems. 118 // Dictionary manager issues [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationObserver.h | 43 class Dictionary; 78 void observe(Node*, const Dictionary&, ExceptionState&);
|