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

1 2

  /libcore/ojluni/src/main/java/java/util/zip/
Inflater.java 169 public void setDictionary(byte[] b, int off, int len) {
178 setDictionary(zsRef.address(), b, off, len);
192 public void setDictionary(byte[] b) {
193 setDictionary(b, 0, b.length);
223 * @see Inflater#setDictionary
420 private native static void setDictionary(long addr, byte[] b, int off,
Deflater.java 245 public void setDictionary(byte[] b, int off, int len) {
254 setDictionary(zsRef.address(), b, off, len);
268 public void setDictionary(byte[] b) {
269 setDictionary(b, 0, b.length);
581 private native static void setDictionary(long addr, byte[] b, int off, int len);
  /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...]
  /libcore/luni/src/main/native/
ZipUtilities.h 36 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate);
ZipUtilities.cpp 46 void NativeZipStream::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 173 dict.setDictionary(2, 245, 245);
174 dict.setDictionary(3, 100, 244);
176 dict.setDictionary(WnnDictionary.INDEX_LEARN_DICTIONARY, FREQ_LEARN, FREQ_LEARN);
178 dict.setDictionary(0, 100, 400);
180 dict.setDictionary(1, 100, 400);
182 dict.setDictionary(2, 245, 245);
183 dict.setDictionary(3, 100, 244);
185 dict.setDictionary(WnnDictionary.INDEX_USER_DICTIONARY, FREQ_USER, FREQ_USER);
186 dict.setDictionary(WnnDictionary.INDEX_LEARN_DICTIONARY, FREQ_LEARN, FREQ_LEARN);
305 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) {
  /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 );
SymbolList.java 174 public boolean setDictionary(String listType) {
OpenWnnJAJP.java     [all...]
OpenWnnEN.java 270 mSymbolList.setDictionary(mode);
    [all...]
OpenWnnDictionaryImpl.java 380 * @see jp.co.omronsoft.openwnn.WnnDictionary#setDictionary
382 public int setDictionary(int index, int base, int high ) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
InflaterTest.java 661 * java.util.zip.Inflater#setDictionary(byte[])
666 // test method of java.util.zip.inflater.setDictionary(byte)
698 inflate.setDictionary(dictionaryArray);
896 defDict1.setDictionary(dictionary1.getBytes());
897 defDict2.setDictionary(dictionary2.getBytes());
    [all...]
DeflaterTest.java 450 * java.util.zip.Deflater#setDictionary(byte[])
463 defl.setDictionary(dictionaryArray);
489 * java.util.zip.Deflater#setDictionary(byte[], int, int)
505 defl.setDictionary(dictionaryArray, offSet, length);
539 defl.setDictionary(dictionaryArray, offSet, length);
543 + ": boundary check for setDictionary failed for offset "
992 defl.setDictionary(dict);
993 fail("defl.setDictionary() can still be used after " + desc
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 63 inflater.setDictionary(dictionary);
115 deflater.setDictionary(dictionary);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
NameValueBlockReader.java 70 setDictionary(Spdy3.DICTIONARY);
Spdy3.java 299 deflater.setDictionary(DICTIONARY);
  /libcore/ojluni/src/main/native/
java_util_zip_Inflater.c 206 NATIVE_METHOD(Inflater, setDictionary, "(J[BII)V"),
java_util_zip_Deflater.c 245 NATIVE_METHOD(Deflater, setDictionary, "(J[BII)V"),
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 

Completed in 271 milliseconds

1 2