OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UTFDataFormatException
(Results
1 - 25
of
72
) sorted by null
1
2
3
/libcore/ojluni/src/main/java/java/io/
UTFDataFormatException.java
46
class
UTFDataFormatException
extends IOException {
50
* Constructs a <code>
UTFDataFormatException
</code> with
53
public
UTFDataFormatException
() {
58
* Constructs a <code>
UTFDataFormatException
</code> with the
66
public
UTFDataFormatException
(String s) {
DataInputStream.java
556
* @exception
UTFDataFormatException
if the bytes do not represent a valid
581
* @exception
UTFDataFormatException
if the bytes do not represent a
627
throw new
UTFDataFormatException
(
631
throw new
UTFDataFormatException
(
640
throw new
UTFDataFormatException
(
645
throw new
UTFDataFormatException
(
653
throw new
UTFDataFormatException
(
DataOutputStream.java
364
throw new
UTFDataFormatException
(
ObjectInputStream.java
[
all
...]
ObjectOutputStream.java
[
all
...]
/libcore/luni/src/main/java/java/nio/charset/
ModifiedUtf8.java
19
import java.io.
UTFDataFormatException
;
34
* <p>Additionally, if {@code shortLength} is true, throw a {@code
UTFDataFormatException
} if
37
public static long countBytes(String s, boolean shortLength) throws
UTFDataFormatException
{
56
throw new
UTFDataFormatException
(
93
* (as a big endian short. A
UTFDataFormatException
is thrown if the encoded size cannot be
99
public static byte[] encode(String s) throws
UTFDataFormatException
{
119
throws
UTFDataFormatException
{
140
throw new
UTFDataFormatException
("unexpected end of input");
144
throw new
UTFDataFormatException
("bad second byte at " + offset);
155
throw new
UTFDataFormatException
("unexpected end of input")
[
all
...]
/dalvik/dx/src/com/android/dex/
Mutf8.java
20
import java.io.
UTFDataFormatException
;
34
public static String decode(ByteInput in, char[] out) throws
UTFDataFormatException
{
47
throw new
UTFDataFormatException
("bad second byte");
54
throw new
UTFDataFormatException
("bad second or third byte");
58
throw new
UTFDataFormatException
("bad byte");
66
private static long countBytes(String s, boolean shortLength) throws
UTFDataFormatException
{
79
throw new
UTFDataFormatException
("String more than 65535 UTF bytes long");
109
public static byte[] encode(String s) throws
UTFDataFormatException
{
Dex.java
32
import java.io.
UTFDataFormatException
;
413
} catch (
UTFDataFormatException
e) {
676
} catch (
UTFDataFormatException
e) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
UTFDataFormatExceptionTest.java
22
import java.io.
UTFDataFormatException
;
27
* java.io.
UTFDataFormatException
#
UTFDataFormatException
()
30
// Test for method java.io.
UTFDataFormatException
()
41
} catch (
UTFDataFormatException
e) {
49
* java.io.
UTFDataFormatException
#
UTFDataFormatException
(java.lang.String)
52
// Test for method java.io.
UTFDataFormatException
(java.lang.String)
63
} catch (
UTFDataFormatException
e) {
/libcore/luni/src/test/java/libcore/java/nio/charset/
ModifiedUtf8Test.java
21
import java.io.
UTFDataFormatException
;
44
fail("Should throw " +
UTFDataFormatException
.class.getName());
45
} catch(
UTFDataFormatException
expected) {
55
fail("Should throw " +
UTFDataFormatException
.class.getName());
56
} catch(
UTFDataFormatException
expected) {
80
fail("Should throw " +
UTFDataFormatException
.class.getName());
81
} catch (
UTFDataFormatException
expected) {
161
fail("Should throw " +
UTFDataFormatException
.class.getName());
162
} catch (
UTFDataFormatException
expected) {
171
fail("Should throw " +
UTFDataFormatException
.class.getName())
[
all
...]
/libcore/luni/src/test/java/libcore/java/io/
DataOutputStreamTest.java
21
import java.io.
UTFDataFormatException
;
122
fail("should throw
UTFDataFormatException
");
123
} catch (
UTFDataFormatException
expected) {
/external/dexmaker/lib/
libcore-dex-2.jar
/prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/2/
libcore-dex-2.jar
/prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i
92
class
UTFDataFormatException
;
/external/guice/extensions/struts2/lib/
jsp-2.1.jar
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.2/
dexmaker-1.2.jar
/prebuilts/sdk/tools/lib/
dx.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta1/
builder-2.1.0-beta1.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta3/
builder-2.1.0-beta3.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-rc1/
builder-2.1.0-rc1.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.2/
builder-2.1.2.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.3/
builder-2.1.3.jar
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.2.0/
builder-2.2.0.jar
Completed in 7496 milliseconds
1
2
3