HomeSort by relevance Sort by last modified time
    Searched full:dictionary (Results 226 - 250 of 2984) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/api/
push_messaging.idl 10 dictionary Message {
20 dictionary ChannelIdResult {
  /external/chromium_org/remoting/host/
in_memory_host_config.cc 47 bool InMemoryHostConfig::CopyFrom(const base::DictionaryValue* dictionary) {
50 for (base::DictionaryValue::Iterator it(*dictionary); !it.IsAtEnd();
json_host_config.cc 58 DictionaryValue* dictionary = static_cast<DictionaryValue*>(value.release()); local
59 values_.reset(dictionary);
  /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&);
RTCIceCandidate.idl 32 Constructor(Dictionary dictionary),
RTCSessionDescription.idl 32 Constructor(Dictionary dictionary),
RTCSessionDescription.cpp 35 #include "bindings/v8/Dictionary.h"
47 PassRefPtr<RTCSessionDescription> RTCSessionDescription::create(const Dictionary& dictionary, ExceptionState& es)
50 bool ok = dictionary.get("type", type);
57 ok = dictionary.get("sdp", sdp);
  /external/chromium_org/third_party/icu/android/
brkitr.patch 8 # List of compact trie dictionary files (ctd).
48 -$dictionary = [$ComplexContext $dictionaryCJK];
49 +$dictionary = [:LineBreak = Complex_Context:];
53 +$ALetterPlus = [$ALetter [$dictionary-$Extend-$Control]]; # Note: default ALetter does not
54 + # include the dictionary characters.
62 - # format char(s), or is not a CJK dictionary character.
72 -# special handling for CJK characters: chain for later dictionary segmentation
91 -# special handling for CJK characters: chain for later dictionary segmentation
  /external/chromium_org/third_party/skia/src/core/
SkRefDict.h 16 * A dictionary of string,refcnt pairs. The dictionary is also an owner of the
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFImageStream.h 31 /** Create a PDF stream with the same content and dictionary entries
41 // Populate the stream dictionary. This method returns false if
  /external/clang/test/PCH/
objc_container.m 14 // CHECK-PRINT: oldObject = dictionary[key];
15 // CHECK-PRINT: dictionary[key] = newObject;
  /external/icu4c/common/
dictionarydata.h 65 * dictionary-based break iteration code.
77 // Implementation of the DictionaryMatcher interface for a UCharsTrie dictionary
92 // Implementation of the DictionaryMatcher interface for a BytesTrie dictionary
118 * Format of dictionary .dict data files.
121 * A dictionary .dict data file contains a byte-serialized BytesTrie or
123 * Such files are used in dictionary-based break iteration (DBBI).
156 * and do not occur in the dictionary.
160 * The dictionary maps strings to specific values (TRIE_HAS_VALUES bit set in trieType),
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 30 UInt32 Dictionary;
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
  /external/skia/src/core/
SkRefDict.h 16 * A dictionary of string,refcnt pairs. The dictionary is also an owner of the
  /external/skia/src/pdf/
SkPDFImageStream.h 31 /** Create a PDF stream with the same content and dictionary entries
41 // Populate the stream dictionary. This method returns false if
  /external/skia/tools/
jsondiff.py 13 and generates an old-vs-new diff dictionary.
61 """Returns the dictionary of expected results from a JSON string,
78 returned dictionary.
102 """Returns the dictionary of actual results from a JSON string,
118 returned dictionary.
136 """Generate a dictionary showing the diffs between old_dict and new_dict.
149 """Generate a dictionary showing the diffs:
160 """Generate a dictionary showing the diffs:
  /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));
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_hunspell_dictionary.cc 37 // Dictionary file information to be passed between the FILE and UI threads.
52 // The desired location of the dictionary file, whether or not it exists.
55 // The file descriptor/handle for the dictionary file.
63 // Figures out the location for the dictionary, verifies its contents, and opens
78 // Check if the dictionary exists in the fallback location. If so, use it
87 // Read the dictionary file and scan its data to check for corruption. The
110 // Gets the default location for the dictionary file. The default place where
111 // the spellcheck dictionary resides is chrome::DIR_APP_DICTIONARIES.
257 // Basic sanity check on the dictionary. There's a small chance of 200 status
266 // To prevent corrupted dictionary data from causing a renderer crash, sca
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserBinaryDictionary.java 40 * An expandable dictionary that stores the words in the user dictionary provider into a binary
41 * dictionary file to use it from native code.
46 // The user dictionary provider uses an empty string to mean "all languages".
50 // Shortcut frequency is 0~15, with 15 = whitelist. We don't want user dictionary entries
84 super(context, getFilenameWithLocale(NAME, locale), Dictionary.TYPE_USER,
88 // If we don't have a locale, insert into the "all locales" user dictionary.
183 Log.e(TAG, "SQLiteException in the remote User dictionary process.", e);
188 Log.e(TAG, "SQLiteException in the remote User dictionary process.", e);
205 * Adds a word to the user dictionary and makes it persistent
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java 87 throw new IOException("Empty dictionary cannot be created.");
96 fail("IOException while writing an initial dictionary : " + e);
102 binaryDictionary.addUnigramWord("a", Dictionary.NOT_A_PROBABILITY);
104 binaryDictionary.addUnigramWord("a", Dictionary.NOT_A_PROBABILITY);
106 binaryDictionary.addUnigramWord("a", Dictionary.NOT_A_PROBABILITY);
108 binaryDictionary.addUnigramWord("a", Dictionary.NOT_A_PROBABILITY);
115 binaryDictionary.addBigramWords("a", "b", Dictionary.NOT_A_PROBABILITY);
117 binaryDictionary.addBigramWords("a", "b", Dictionary.NOT_A_PROBABILITY);
119 binaryDictionary.addBigramWords("a", "b", Dictionary.NOT_A_PROBABILITY);
121 binaryDictionary.addBigramWords("a", "b", Dictionary.NOT_A_PROBABILITY)
    [all...]
  /external/chromium/chrome/browser/cocoa/
keystone_glue_unittest.mm 23 NSDictionary* dictionary = [NSDictionary dictionaryWithObject:yesNumber
28 userInfo:dictionary];
110 NSDictionary* dictionary = [notification userInfo];
112 [[dictionary objectForKey:kAutoupdateStatusStatus] intValue]);
116 latestVersion_ = [dictionary objectForKey:kAutoupdateStatusVersion];
  /external/chromium/chrome/browser/ui/webui/options/
language_options_handler.cc 89 DictionaryValue* dictionary = new DictionaryValue(); local
90 dictionary->SetString("code", pair.first);
91 dictionary->SetString("displayName", display_names[i]);
92 dictionary->SetString("nativeDisplayName", pair.second);
93 language_list->Append(dictionary);
  /external/chromium_org/chrome/service/cloud_print/
connector_settings.cc 83 const base::DictionaryValue* dictionary = NULL; local
84 if (printers->GetDictionary(i, &dictionary) && dictionary) {
86 dictionary->GetString(kName, &name);
89 dictionary->GetBoolean(kConnect, &connect);
  /external/chromium_org/content/public/browser/
web_ui_data_source.h 32 // Adds a string keyed to its name to our dictionary.
35 // Adds a string keyed to its name to our dictionary.
39 // dictionary.
42 // Add strings from |localized_strings| to our dictionary.
46 // Adds a boolean keyed to its name to our dictionary.

Completed in 394 milliseconds

1 2 3 4 5 6 7 8 91011>>