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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBase64.java 6 import org.apache.commons.codec.binary.Base64;
8 @Implements(android.util.Base64.class)
13 Base64 base64 = new Base64(); local
14 return base64.encodeBase64String(bytes);
19 Base64 base64 = new Base64(); local
20 return base64.decodeBase64(str)
    [all...]
  /art/test/948-change-annotations/src/
AddAnnotationsTest.java 17 import java.util.Base64;
20 * base64 encoded class/dex file for
31 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
45 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
ChangeAnnotationValues.java 17 import java.util.Base64;
20 * base64 encoded class/dex file for
29 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
41 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
RemoveAnnotationsTest.java 17 import java.util.Base64;
20 * base64 encoded class/dex file for
27 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
35 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
  /art/test/998-redefine-use-after-free/src-ex/
DexCacheSmash.java 18 import java.util.Base64;
36 * A base64 encoding of the dex/class file of the Transform class above.
40 Base64.getDecoder().decode(
50 Base64.getDecoder().decode(
69 * A base64 encoding of the following (invalid) class.
110 Base64.getDecoder().decode(
118 Base64.getDecoder().decode(
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 35 byte[] out = Base64.decode(in, 0);
44 String b64 = Base64.encodeToString(in.getBytes(), flags);
53 byte[] out = Base64.decode(in, 0);
130 assertEquals(BYTES, 0, Base64.decode("", 0));
131 assertEquals(BYTES, 1, Base64.decode("/w==", 0));
132 assertEquals(BYTES, 2, Base64.decode("/+4=", 0));
133 assertEquals(BYTES, 3, Base64.decode("/+7d", 0));
134 assertEquals(BYTES, 4, Base64.decode("/+7dzA==", 0));
135 assertEquals(BYTES, 5, Base64.decode("/+7dzLs=", 0));
136 assertEquals(BYTES, 6, Base64.decode("/+7dzLuq", 0))
    [all...]
  /art/test/902-hello-transformation/src/art/
Test902.java 19 import java.util.Base64;
36 * base64 encoded class/dex file for
43 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
53 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
  /art/test/921-hello-failure/src/
DifferentAccess.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
26 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
33 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
FieldChange.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
28 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
36 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
MethodChange.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
26 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
33 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
MissingField.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
27 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
34 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
MissingInterface.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
26 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
34 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
MissingMethod.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
26 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
33 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
NewField.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
27 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
35 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
NewInterface.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
26 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
34 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
NewMethod.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
27 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
35 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
NewName.java 17 import java.util.Base64;
25 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
32 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
ReorderInterface.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
26 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
34 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
Undefault.java 17 import java.util.Base64;
20 // The following is a base64 encoding of the following class.
29 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
38 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
Unmodifiable.java 17 import java.util.Base64;
20 // The following is a base64 encoding of a valid class file.
21 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
28 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
Verification.java 17 import java.util.Base64;
38 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
60 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
MultiRedef.java 17 import java.util.Base64;
28 Base64.getDecoder().decode(
35 Base64.getDecoder().decode(
57 Base64.getDecoder().decode(
65 Base64.getDecoder().decode(
  /art/test/937-hello-retransform-package/src/
Main.java 17 import java.util.Base64;
25 * base64 encoded class/dex file for
33 private static final byte[] CLASS_BYTES = Base64.getDecoder().decode(
42 private static final byte[] DEX_BYTES = Base64.getDecoder().decode(
  /external/curl/tests/server/
base64.pl 3 use MIME::Base64 qw(encode_base64);
  /art/test/932-transform-saves/src/art/
Test932.java 19 import java.util.Base64;
31 * base64 encoded class/dex file for
38 private static final byte[] CLASS_BYTES_A = Base64.getDecoder().decode(
48 private static final byte[] DEX_BYTES_A = Base64.getDecoder().decode(
68 * base64 encoded class/dex file for
75 private static final byte[] CLASS_BYTES_B = Base64.getDecoder().decode(
85 private static final byte[] DEX_BYTES_B = Base64.getDecoder().decode(

Completed in 447 milliseconds

1 2 3 4 5 6 7 8 91011>>