HomeSort by relevance Sort by last modified time
    Searched refs:dictionary (Results 76 - 100 of 173) sorted by null

1 2 34 5 6 7

  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_source.cc 33 // Utility method to keep dictionary population code streamlined.
34 void AddString(DictionaryValue* dictionary,
37 dictionary->SetString(key, l10n_util::GetStringUTF16(resource_id));
  /external/chromium/sdch/open-vcdiff/src/
vcdiffengine.cc 27 VCDiffEngine::VCDiffEngine(const char* dictionary, size_t dictionary_size)
28 // If dictionary_size == 0, then dictionary could be NULL. Guard against
34 memcpy(const_cast<char*>(dictionary_), dictionary, dictionary_size); local
54 LOG(DFATAL) << "Creation of dictionary hash failed" << LOG_ENDL;
92 // First look for a match in the dictionary.
174 // in this same target window, as well as against the dictionary
186 // dictionary)
189 // begin a match with the dictionary or previously encoded target data.
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.cpp 111 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, CFDictionaryCreate(0, keys, values, numKeys, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
115 return RetainPtr<IOSurfaceRef>(AdoptCF, IOSurfaceCreate(dictionary.get()));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 35 * This class loads a dictionary and provides a list of suggestions for a given sequence of
38 public class Suggest implements Dictionary.WordCallback {
71 // If you add a type of dictionary, increment DIC_TYPE_LAST_ID
76 // User dictionary, the system-managed one.
78 // User unigram dictionary, internal to LatinIME
80 // User bigram dictionary, internal to LatinIME
88 private Dictionary mMainDict;
91 private final Map<String, Dictionary> mUnigramDictionaries = new HashMap<String, Dictionary>();
92 private final Map<String, Dictionary> mBigramDictionaries = new HashMap<String, Dictionary>()
356 final Dictionary dictionary = mUnigramDictionaries.get(key); local
    [all...]
  /packages/inputmethods/LatinIME/native/
Android.mk 18 src/dictionary.cpp \
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
SymbolList.java 169 * Set the dictionary
241 public boolean initializeDictionary(int dictionary) {return true;}
244 public boolean initializeDictionary(int dictionary, int type) {return true;}
  /external/zlib/contrib/pascal/
example.pas 33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary: ', PChar(uncompr))
    [all...]
  /external/chromium/sdch/open-vcdiff/src/google/
vcencoder.h 58 // A HashedDictionary must be constructed from the dictionary data
59 // in order to use VCDiffStreamingEncoder. If the same dictionary will
113 // the source (dictionary), or from previously encoded target data.
116 // produce COPY instructions that reference source data from the dictionary,
134 VCDiffStreamingEncoder(const HashedDictionary* dictionary,
140 // HashedDictionary hd(dictionary, dictionary_size);
262 // By default, VCDiffEncoder looks for matches in the dictionary and also in
  /external/chromium/chrome/browser/content_settings/
content_settings_pref_provider.cc 59 // The names of the ContentSettingsType values, for use with dictionary prefs.
258 const DictionaryValue* dictionary,
260 for (DictionaryValue::key_iterator i(dictionary->begin_keys());
261 i != dictionary->end_keys(); ++i) {
266 bool found = dictionary->GetIntegerWithoutPathExpansion(content_type,
705 const DictionaryValue* dictionary,
707 for (DictionaryValue::key_iterator i(dictionary->begin_keys());
708 i != dictionary->end_keys(); ++i) {
713 bool found = dictionary->GetIntegerWithoutPathExpansion(content_type,
732 const DictionaryValue* dictionary,
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
UIDelegate.mm 60 - (void)webView:(WebView *)sender addMessageToConsole:(NSDictionary *)dictionary withSource:(NSString *)source
62 NSString *message = [dictionary objectForKey:@"message"];
63 NSNumber *lineNumber = [dictionary objectForKey:@"lineNumber"];
  /external/chromium/chrome/common/extensions/
extension_l10n_util.cc 249 Value *dictionary = messages_serializer.Deserialize(NULL, error); local
250 if (!dictionary && error->empty()) {
257 return static_cast<DictionaryValue*>(dictionary);
  /external/webkit/Source/WebKit/win/
WebIconDatabase.cpp 396 RetainPtr<CFMutableDictionaryRef> dictionary(AdoptCF,
400 CFDictionaryAddValue(dictionary.get(), WebIconDatabase::iconDatabaseNotificationUserInfoURLKey(), url.get());
403 userInfo->setDictionary(dictionary.get());
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 270 * @param dictionary An array of AuthenticatorDescriptions, as returned by AccountManager.
274 AuthenticatorDescription[] dictionary) {
275 for (int i = 0; i < dictionary.length; i++) {
276 if (dictionary[i].type.equals(type)) {
277 return dictionary[i];
  /external/chromium/chrome/browser/extensions/
extension_webstore_private_api.cc 76 // Helper to create a dictionary with login and token properties set from
79 DictionaryValue* dictionary = new DictionaryValue(); local
81 dictionary->SetString(kLoginKey, username);
87 dictionary->SetString(kTokenKey,
92 return dictionary;
  /external/chromium/chrome/browser/ui/webui/
new_tab_ui.cc 469 void NewTabUI::SetURLTitleAndDirection(DictionaryValue* dictionary,
472 dictionary->SetString("url", gurl.spec());
514 dictionary->SetString("title", title_to_set);
515 dictionary->SetString("direction", direction);
  /external/v8/test/mjsunit/regress/
regress-91517.js 29 // triggers dictionary elements in GetLocalPropertyNames() shouldn't
58 // Force dictionary-based properties
regress-1110164.js 29 delete o.x; // go dictionary
  /external/webkit/Source/WebKit/mac/Misc/
WebKitErrors.m 143 + (void)_webkit_addErrorsWithCodesAndDescriptions:(NSDictionary *)dictionary inDomain:(NSString *)domain
148 [descriptions setObject:dictionary forKey:domain];
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebErrorsMac.mm 106 + (void)_webkit_addErrorsWithCodesAndDescriptions:(NSDictionary *)dictionary inDomain:(NSString *)domain
111 [descriptions setObject:dictionary forKey:domain];
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 44 /** Current dictionary type */
46 /** Dictionary type (default) */
48 /** Dictionary type (Japanese standard) */
50 /** Dictionary type (English standard) */
52 /** Dictionary type (Japanese person's name) */
54 /** Dictionary type (User dictionary) */
56 /** Dictionary type (Japanese EISU-KANA conversion) */
58 /** Dictionary type (e-mail/URI) */
60 /** Dictionary type (Japanese postal address) *
    [all...]
  /external/icu4c/data/brkitr/
brkfiles.mk 36 # List of compact trie dictionary files (ctd).
  /external/srec/config/en.us/grammars/
run_compile_grammars.sh 4 grxmlcompile -par $BASELINE_PAR_FILE -grxml $GMR.grxml -vocab dictionary/$GMR.ok
  /external/webkit/Source/WebKit2/Shared/
UserMessageCoders.h 48 // - Dictionary -> Dictionary
81 ImmutableDictionary* dictionary = static_cast<ImmutableDictionary*>(m_root); local
82 const ImmutableDictionary::MapType& map = dictionary->map();
174 // - Dictionary -> Dictionary
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
DictionaryMaker.java 78 + " Converts a source dictionary file to one or several outputs.\n"
80 + " binary dictionary file.\n"
154 FusionDictionary dictionary = readInputFromParsedArgs(parsedArgs); local
155 writeOutputToParsedArgs(parsedArgs, dictionary);
162 * @return the read dictionary.
177 * Read a dictionary from the name of a binary file.
179 * @param binaryFilename the name of the file in the binary dictionary format.
180 * @return the read dictionary.
192 * Read a dictionary from a unigram XML file, and optionally a bigram XML file.
196 * @return the read dictionary
    [all...]
  /external/webkit/Source/WebKit/mac/History/
WebHistory.mm 328 // The last reference to oldEntry might be this dictionary, so we hold onto a reference
495 NSDictionary *dictionary = nil;
499 dictionary = [NSDictionary dictionaryWithContentsOfFile:[URL path]];
500 if (!dictionary) {
511 dictionary = [NSPropertyListSerialization propertyListFromData:data
520 if (![dictionary isKindOfClass:[NSDictionary class]])
523 NSNumber *fileVersionObject = [dictionary objectForKey:FileVersionKey];
536 NSArray *array = [dictionary objectForKey:DatesArrayKey];

Completed in 451 milliseconds

1 2 34 5 6 7