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

1 2 3 4 5 6 7 8

  /external/chromium/chrome/browser/ui/webui/
value_helper.h 17 DictionaryValue* dictionary);
19 DictionaryValue* dictionary);
value_helper.cc 12 DictionaryValue* dictionary) {
20 NewTabUI::SetURLTitleAndDirection(dictionary, current_navigation.title(),
22 dictionary->SetString("type", "tab");
23 dictionary->SetDouble("timestamp", tab.timestamp.ToDoubleT());
29 DictionaryValue* dictionary) {
42 dictionary->SetString("type", "window");
43 dictionary->SetDouble("timestamp", window.timestamp.ToDoubleT());
44 dictionary->Set("tabs", tab_values.release());
foreign_session_handler.h 51 bool SessionTabToValue(const SessionTab& tab, DictionaryValue* dictionary);
53 DictionaryValue* dictionary);
  /external/webkit/Source/WebKit2/Shared/API/c/
WKMutableDictionary.h 41 WK_EXPORT bool WKDictionaryIsMutable(WKDictionaryRef dictionary);
43 WK_EXPORT bool WKDictionaryAddItem(WKMutableDictionaryRef dictionary, WKStringRef key, WKTypeRef item);
44 WK_EXPORT bool WKDictionarySetItem(WKMutableDictionaryRef dictionary, WKStringRef key, WKTypeRef item);
45 WK_EXPORT void WKDictionaryRemoveItem(WKMutableDictionaryRef dictionary, WKStringRef key);
WKDictionary.h 39 WK_EXPORT WKTypeRef WKDictionaryGetItemForKey(WKDictionaryRef dictionary, WKStringRef key);
40 WK_EXPORT size_t WKDictionaryGetSize(WKDictionaryRef dictionary);
42 WK_EXPORT WKArrayRef WKDictionaryCopyKeys(WKDictionaryRef dictionary);
WKMutableDictionary.cpp 36 RefPtr<MutableDictionary> dictionary = MutableDictionary::create(); local
37 return toAPI(dictionary.release().releaseRef());
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_test.sh 48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \
55 encode -dictionary $DICTIONARY_FILE \
60 $VCDIFF decode -dictionary $DICTIONARY_FILE \
75 encode -dictionary $DICTIONARY_FILE \
80 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
95 encode -dictionary $DICTIONARY_FILE \
100 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
114 encode -dictionary $DICTIONARY_FILE \
119 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
132 # If using the wrong dictionary, and dictionary is smaller than the origina
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictAndProximity.java 19 import com.android.inputmethod.latin.Dictionary;
23 * A simple container for both a Dictionary and a ProximityInfo.
26 public final Dictionary mDictionary;
28 public DictAndProximity(final Dictionary dictionary, final ProximityInfo proximityInfo) {
29 mDictionary = dictionary;
  /external/webkit/Source/WebKit/win/
WebCache.cpp 110 RetainPtr<CFMutableDictionaryRef> dictionary(AdoptCF,
114 CFDictionaryAddValue(dictionary.get(), imagesKey, value.get());
117 CFDictionaryAddValue(dictionary.get(), stylesheetsKey, value.get());
124 CFDictionaryAddValue(dictionary.get(), xslKey, value.get());
127 CFDictionaryAddValue(dictionary.get(), scriptsKey, value.get());
130 propBag->setDictionary(dictionary.get());
133 dictionary.adoptCF(CFDictionaryCreateMutable(0, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
136 CFDictionaryAddValue(dictionary.get(), imagesKey, value.get());
139 CFDictionaryAddValue(dictionary.get(), stylesheetsKey, value.get());
146 CFDictionaryAddValue(dictionary.get(), xslKey, value.get())
    [all...]
CFDictionaryPropertyBag.h 43 void setDictionary(CFMutableDictionaryRef dictionary);
44 CFMutableDictionaryRef dictionary() const;
  /external/webkit/Source/WebKit2/Shared/win/
WebCoreArgumentCodersWin.cpp 49 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, wkCFURLRequestCreateSerializableRepresentation(resourceRequest.cfURLRequest(), CoreIPC::tokenNullTypeRef()));
50 encode(encoder, dictionary.get());
66 RetainPtr<CFDictionaryRef> dictionary; local
67 if (!decode(decoder, dictionary))
70 CFURLRequestRef cfURLRequest = wkCFURLRequestCreateFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef());
90 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, wkCFURLResponseCreateSerializableRepresentation(resourceResponse.cfURLResponse(), CoreIPC::tokenNullTypeRef()));
91 encode(encoder, dictionary.get());
107 RetainPtr<CFDictionaryRef> dictionary; local
108 if (!decode(decoder, dictionary))
111 CFURLResponseRef cfURLResponse = wkCFURLResponseCreateFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef())
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 22 #include "dictionary.h"
71 LOGE("DICT: Can't mmap dictionary. errno=%d", errno);
85 LOGE("DICT: Can't allocate memory region for dictionary. errno=%d", errno);
110 Dictionary *dictionary = NULL; local
112 LOGE("DICT: dictionary format is unknown, bad magic number");
119 dictionary = new Dictionary(dictBuf, dictSize, fd, adjust, typedLetterMultiplier,
124 return (jint)dictionary;
131 Dictionary *dictionary = (Dictionary*)dict local
158 Dictionary *dictionary = (Dictionary*)dict; local
180 Dictionary *dictionary = (Dictionary*)dict; local
191 Dictionary *dictionary = (Dictionary*)dict; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
QTCFDictionary.cpp 49 CFDictionaryRef QTCFDictionaryCreateCopyWithDataCallback(CFAllocatorRef allocator, CFDictionaryRef dictionary, QTCFDictonaryCreateFromDataCallback callback)
51 ASSERT(dictionary);
54 CFDataRef data = QTCFPropertyListCreateXMLData(kCFAllocatorDefault, dictionary);
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 31 assertRoundTrip("dictionary".getBytes("UTF-8"));
34 private static void assertRoundTrip(byte[] dictionary) throws Exception {
39 // Compress the bytes, using the passed-in dictionary (or no dictionary).
40 byte[] deflatedBytes = deflate(expectedBytes, dictionary);
49 // If we used a dictionary to compress, check that we're asked for that same dictionary.
50 if (dictionary != null) {
53 // 2. ...because you need a dictionary.
55 // 3. ...and that dictionary has the same Adler32 as the dictionary we used
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java 32 /** The identifier of the learning dictionary */
34 /** The identifier of the user dictionary */
119 * candidates to the learning dictionary or update the frequency
128 * Register a word to the user's dictionary.
131 * @return Number of registered words in the user's dictionary after the operation; minus value if a error occurs.
136 * Delete a word from the user's dictionary.
144 * Delete all words from the user's dictionary.
146 * @param dictionary {@code DICTIONARY_TYPE_LEARN} or {@code DICTIONARY_TYPE_USER}
149 public boolean initializeDictionary(int dictionary);
152 * Delete all words from the user's dictionary of the specified language
    [all...]
  /external/chromium/chrome/browser/importer/
firefox_proxy_settings.cc 164 DictionaryValue dictionary; local
165 if (!ParsePrefFile(pref_file, &dictionary))
169 if (!dictionary.GetInteger(kNetworkProxyTypeKey, &proxy_type))
174 if (!dictionary.GetStringASCII(kAutoconfigURL,
182 if (!dictionary.GetStringASCII(kHTTPProxyKey, &(settings->http_proxy_)))
184 if (!dictionary.GetInteger(kHTTPProxyPortKey,
188 if (!dictionary.GetStringASCII(kSSLProxyKey, &(settings->ssl_proxy_)))
190 if (!dictionary.GetInteger(kSSLProxyPortKey, &(settings->ssl_proxy_port_)))
192 if (!dictionary.GetStringASCII(kFTPProxyKey, &(settings->ftp_proxy_)))
194 if (!dictionary.GetInteger(kFTPProxyPortKey, &(settings->ftp_proxy_port_))
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
radiusclient.conf 48 # dictionary of allowed attributes and values
50 dictionary /usr/local/etc/radiusclient/dictionary
  /libcore/luni/src/main/java/java/util/zip/
Inflater.java 135 * checksum of the preset dictionary if {@link #needsDictionary} returns true.
230 throw new DataFormatException("Needs dictionary");
239 * dictionary. This method should be called if the first call to {@link #inflate} returns 0,
240 * to determine whether a dictionary is required. If so, {@link #setDictionary}
241 * should be called with the appropriate dictionary before calling {@code
242 * inflate} again. Use {@link #getAdler} to determine which dictionary is required.
270 * Sets the preset dictionary to be used for inflation to {@code dictionary}.
273 public synchronized void setDictionary(byte[] dictionary) {
274 setDictionary(dictionary, 0, dictionary.length)
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 46 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, WKNSURLRequestCreateSerializableRepresentation(resourceRequest.nsURLRequest(), CoreIPC::tokenNullTypeRef()));
47 encode(encoder, dictionary.get());
61 RetainPtr<CFDictionaryRef> dictionary;
62 if (!decode(decoder, dictionary))
65 NSURLRequest *nsURLRequest = WKNSURLRequestFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef());
81 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, WKNSURLResponseCreateSerializableRepresentation(resourceResponse.nsURLResponse(), CoreIPC::tokenNullTypeRef()));
82 encode(encoder, dictionary.get());
96 RetainPtr<CFDictionaryRef> dictionary;
97 if (!decode(decoder, dictionary))
100 NSURLResponse* nsURLResponse = WKNSURLResponseFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef())
    [all...]
PrintInfoMac.mm 32 : pageSetupScaleFactor([[[printInfo dictionary] objectForKey:NSPrintScalingFactor] floatValue])
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 461 DictionaryValue dictionary; local
462 FillNetworkInfo(&dictionary, cros);
464 "options.InternetOptions.refreshNetworkData", dictionary);
540 DictionaryValue dictionary; local
541 dictionary.SetBoolean("requirePin", require_pin);
543 "options.InternetOptions.updateSecurityTab", dictionary);
552 DictionaryValue dictionary; local
553 FillNetworkInfo(&dictionary, cros);
555 "options.InternetOptions.setupAttributes", dictionary);
604 DictionaryValue dictionary; local
892 DictionaryValue dictionary; local
    [all...]
  /external/chromium/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 53 -dictionary %DICTIONARY_FILE% -target %TARGET_FILE% -delta %DELTA_FILE% ^
60 encode -dictionary %DICTIONARY_FILE% ^
65 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
82 encode -dictionary %DICTIONARY_FILE% ^
87 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
102 encode -dictionary %DICTIONARY_FILE% ^
107 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
121 encode -dictionary %DICTIONARY_FILE% ^
126 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
139 rem If using the wrong dictionary, and dictionary is smaller than the origina
    [all...]
  /external/chromium/chrome/browser/ui/views/
chrome_views_delegate.cc 90 const DictionaryValue* dictionary = local
93 if (!dictionary || !dictionary->GetInteger("left", &left) ||
94 !dictionary->GetInteger("top", &top) ||
95 !dictionary->GetInteger("right", &right) ||
96 !dictionary->GetInteger("bottom", &bottom))
112 const DictionaryValue* dictionary = local
115 return dictionary && dictionary->GetBoolean("maximized", maximized) &&
  /external/webkit/Source/WebKit/mac/Misc/
WebNSPrintOperationExtras.m 35 return [[[[self printInfo] dictionary] objectForKey:NSPrintScalingFactor] floatValue];
  /external/srec/config/en.us/
Android.mk 9 dictionary/basic.ok \
10 dictionary/enroll.ok \
11 dictionary/cmu6plus.ok.zip \
57 # This needs an explicit rule to specify the vocabulary (dictionary)
58 $(G2G_INSTALL_PATH)/enroll.g2g: $(LOCAL_PATH)/grammars/enroll.grxml $(GRXML) $(MAKE_G2G) $(DEFAULT_PAR) $(LOCAL_PATH)/dictionary/enroll.ok
60 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -vocab dictionary/enroll.ok -outdir $(G2G_INSTALL_PATH)
69 $(G2G_INSTALL_PATH)/%.g2g: $(LOCAL_PATH)/grammars/%.grxml $(GRXML) $(MAKE_G2G) $(DEFAULT_PAR) $(LOCAL_PATH)/dictionary/cmu6plus.ok.zip
79 # $ g4 edit external/srec/config/en.us/dictionary/cmu6plus.ok.zip
90 DICT_DIR=$(ASR_ROOT_DIR)/config/en.us/dictionary
102 # build cmu2nuance dictionary conversion program, to prevent bitro
    [all...]

Completed in 292 milliseconds

1 2 3 4 5 6 7 8