/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
OpenWnnEngineEN.java | 90 mDictionary.setDictionary(0, 400, 550); 91 mDictionary.setDictionary(1, 400, 550); 92 mDictionary.setDictionary(2, 400, 550); 93 mDictionary.setDictionary(WnnDictionary.INDEX_USER_DICTIONARY, FREQ_USER, FREQ_USER); 94 mDictionary.setDictionary(WnnDictionary.INDEX_LEARN_DICTIONARY, FREQ_LEARN, FREQ_LEARN); 187 public boolean setDictionary(int type) { 267 dict.setDictionary(0, 400, 550); 269 dict.setDictionary(1, 400, 550); 272 dict.setDictionary(2, 400, 550); 274 dict.setDictionary(WnnDictionary.INDEX_USER_DICTIONARY, FREQ_USER, FREQ_USER) [all...] |
/external/webkit/Source/WebKit/win/ |
CFDictionaryPropertyBag.h | 43 void setDictionary(CFMutableDictionaryRef dictionary);
|
WebCache.cpp | 130 propBag->setDictionary(dictionary.get()); 152 propBag->setDictionary(dictionary.get()); 174 propBag->setDictionary(dictionary.get()); 196 propBag->setDictionary(dictionary.get());
|
CFDictionaryPropertyBag.cpp | 53 void CFDictionaryPropertyBag::setDictionary(CFMutableDictionaryRef dictionary)
|
WebDatabaseManager.cpp | 408 userInfoBag->setDictionary(userInfo.get());
|
WebIconDatabase.cpp | 403 userInfo->setDictionary(dictionary.get());
|
WebHistory.cpp | 106 result->setDictionary(dictionary.get()); [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
OpenWnnEngineJAJP.java | 170 dict.setDictionary(2, 245, 245); 171 dict.setDictionary(3, 100, 244); 173 dict.setDictionary(WnnDictionary.INDEX_LEARN_DICTIONARY, FREQ_LEARN, FREQ_LEARN); 175 dict.setDictionary(0, 100, 400); 177 dict.setDictionary(1, 100, 400); 179 dict.setDictionary(2, 245, 245); 180 dict.setDictionary(3, 100, 244); 182 dict.setDictionary(WnnDictionary.INDEX_USER_DICTIONARY, FREQ_USER, FREQ_USER); 183 dict.setDictionary(WnnDictionary.INDEX_LEARN_DICTIONARY, FREQ_LEARN, FREQ_LEARN); 302 public boolean setDictionary(int type) [all...] |
OpenWnnClauseConverterJAJP.java | 87 public void setDictionary(WnnDictionary dict) { 412 dict.setDictionary(6, 400, 500); 472 dict.setDictionary(4, 0, 10); 473 dict.setDictionary(5, 400, 500); 474 dict.setDictionary(WnnDictionary.INDEX_USER_DICTIONARY, FREQ_USER, FREQ_USER); 475 dict.setDictionary(WnnDictionary.INDEX_LEARN_DICTIONARY, FREQ_LEARN, FREQ_LEARN);
|
KanaConverter.java | 502 public void setDictionary(WnnDictionary dict) {
|
/libcore/luni/src/main/java/java/util/zip/ |
Inflater.java | 240 * to determine whether a dictionary is required. If so, {@link #setDictionary} 273 public synchronized void setDictionary(byte[] dictionary) { 274 setDictionary(dictionary, 0, dictionary.length); 282 public synchronized void setDictionary(byte[] dictionary, int offset, int byteCount) {
|
Deflater.java | 370 public void setDictionary(byte[] dictionary) { 371 setDictionary(dictionary, 0, dictionary.length); 380 public synchronized void setDictionary(byte[] buf, int offset, int byteCount) {
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
InflaterTest.java | 57 inflater.setDictionary(dictionary); 106 deflater.setDictionary(dictionary);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnDictionary.java | 100 /** Index of the user dictionary for {@link #setDictionary(int, int, int)} */ 102 /** Index of the learn dictionary for {@link #setDictionary(int, int, int)} */ 148 public int setDictionary(int index, int base, int high );
|
OpenWnnJAJP.java | [all...] |
SymbolList.java | 174 public boolean setDictionary(String listType) {
|
OpenWnnEN.java | 264 mSymbolList.setDictionary(mode); [all...] |
OpenWnnDictionaryImpl.java | 376 * @see jp.co.omronsoft.openwnn.WnnDictionary#setDictionary 378 public int setDictionary(int index, int base, int high ) { [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
InflaterTest.java | 638 * @tests java.util.zip.Inflater#setDictionary(byte[]) 643 // test method of java.util.zip.inflater.setDictionary(byte) 675 inflate.setDictionary(dictionaryArray); 864 defDict1.setDictionary(dictionary1.getBytes()); 865 defDict2.setDictionary(dictionary2.getBytes()); 930 infl1.setDictionary(dictionary1.getBytes()); 939 infl2.setDictionary(dictionary2.getBytes()); 949 infl1.setDictionary(dictionary1.getBytes()); 961 infl1.setDictionary(dictionary2.getBytes()); 968 infl1.setDictionary(dictionary2.getBytes()) [all...] |
DeflaterTest.java | 448 * @tests java.util.zip.Deflater#setDictionary(byte[]) 461 defl.setDictionary(dictionaryArray); 487 * @tests java.util.zip.Deflater#setDictionary(byte[], int, int) 503 defl.setDictionary(dictionaryArray, offSet, length); 537 defl.setDictionary(dictionaryArray, offSet, length); 541 + ": boundary check for setDictionary failed for offset " 1017 defl.setDictionary(dict); 1018 fail("defl.setDictionary() can still be used after " + desc [all...] |
/libcore/luni/src/main/native/ |
zip.h | 52 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate) {
|
java_util_zip_Deflater.cpp | 25 toNativeZipStream(handle)->setDictionary(env, dict, off, len, false);
|
java_util_zip_Inflater.cpp | 141 toNativeZipStream(handle)->setDictionary(env, dict, off, len, true);
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebFrameLoaderClient.cpp | [all...] |
/prebuilt/sdk/10/ |
android.jar | |