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

1 2

  /libcore/ojluni/src/main/java/java/nio/charset/
MalformedInputException.java 37 public class MalformedInputException
46 * Constructs an {@code MalformedInputException} with the given
50 public MalformedInputException(int inputLength) {
CoderResult.java 267 * @throws MalformedInputException
281 case CR_MALFORMED: throw new MalformedInputException(length);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
MalformedInputExceptionTest.java 21 import java.nio.charset.MalformedInputException;
29 * Test class MalformedInputException.
34 MalformedInputException ex = new MalformedInputException(3);
40 ex = new MalformedInputException(-3);
45 ex = new MalformedInputException(0);
51 // comparator for MalformedInputException objects
60 MalformedInputException initEx = (MalformedInputException) initial;
61 MalformedInputException desrEx = (MalformedInputException) deserialized
    [all...]
CharsetDecoder2Test.java 30 import java.nio.charset.MalformedInputException;
97 fail("Assert 3: MalformedInputException should have thrown");
98 } catch (MalformedInputException e) {
261 } catch (MalformedInputException expected) {
274 } catch (MalformedInputException expected) {
ISOCharsetEncoderTest.java 24 import java.nio.charset.MalformedInputException;
CoderResultTest.java 22 import java.nio.charset.MalformedInputException;
241 fail("Should throw MalformedInputException");
242 } catch (MalformedInputException ex) {
ASCIICharsetEncoderTest.java 27 import java.nio.charset.MalformedInputException;
123 } catch (MalformedInputException e) {
CharsetDecoderTest.java 26 import java.nio.charset.MalformedInputException;
248 fail("should throw MalformedInputException");
249 } catch (MalformedInputException e) {
CharsetEncoderTest.java 26 import java.nio.charset.MalformedInputException;
637 fail("should throw MalformedInputException");
638 } catch (MalformedInputException e) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InputStreamReaderTest.java 32 import java.nio.charset.MalformedInputException;
387 fail("Should throw MalformedInputException");
388 } catch (MalformedInputException e) {
  /libcore/luni/src/test/java/libcore/java/nio/file/
Files2Test.java 35 import java.nio.charset.MalformedInputException;
    [all...]
  /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-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 

Completed in 240 milliseconds

1 2