HomeSort by relevance Sort by last modified time
    Searched defs:maxBytesPerChar (Results 1 - 25 of 49) sorted by null

1 2

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterStaticData.java 24 byte maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */
49 maxBytesPerChar = maxBytesPerChar_;
CharsetDecoderICU.java 733 * Returns the maxBytesPerChar value for the Charset that created this decoder.
734 * @return maxBytesPerChar
737 public final float maxBytesPerChar() {
738 return ((CharsetICU)(this.charset())).maxBytesPerChar;
CharsetICU.java 81 int maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */
428 if (((CharsetMBCS)this).sharedData.staticData.maxBytesPerChar == ((CharsetMBCS)this).sharedData.staticData.minBytesPerChar) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
UTF16CharsetEncoderTest.java 89 // assertEquals(4, encoder.maxBytesPerChar());
91 assertEquals(encoder.maxBytesPerChar(), 2, 0.001);
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoderICU.java 75 float maxBytesPerChar = NativeConverter.getMaxBytesPerChar(address);
77 result = new CharsetEncoderICU(cs, averageBytesPerChar, maxBytesPerChar, replacement, address);
100 private CharsetEncoderICU(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement, long address) {
101 super(cs, averageBytesPerChar, maxBytesPerChar, replacement, true);
  /libcore/ojluni/src/main/java/java/nio/charset/
CharsetEncoder.java 142 private final float maxBytesPerChar;
174 * @param maxBytesPerChar
180 * non-zero length, must not be longer than maxBytesPerChar,
189 float maxBytesPerChar,
193 this(cs, averageBytesPerChar, maxBytesPerChar, replacement, false);
201 CharsetEncoder(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement,
209 if (maxBytesPerChar <= 0.0f)
211 + "maxBytesPerChar");
213 if (averageBytesPerChar > maxBytesPerChar)
216 + "maxBytesPerChar");
    [all...]
  /external/icu/icu4c/source/common/
ucnv_bld.h 79 int8_t maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /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 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 

Completed in 150 milliseconds

1 2