OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dexUtil
(Results
1 - 2
of
2
) sorted by null
/cts/tools/signature-tools/test/signature/converter/dex/
DexUtilTest.java
31
import static signature.converter.dex.
DexUtil
.*;
39
private JavaSourceToDexUtil
dexUtil
;
44
dexUtil
= new JavaSourceToDexUtil();
73
DexFile dexFile =
dexUtil
.getFrom(new JavaSource("A", "public class A{}"));
77
dexFile =
dexUtil
.getFrom(new JavaSource("B", "public class B<T>{}"));
84
DexFile dexFile =
dexUtil
.getFrom(new JavaSource("A", "public class A{}"));
88
dexFile =
dexUtil
.getFrom(new JavaSource("B", "public class B<T>{}"));
GenericSignatureParserTest.java
31
import signature.converter.dex.
DexUtil
;
41
private JavaSourceToDexUtil
dexUtil
;
47
dexUtil
= new JavaSourceToDexUtil();
53
DexFile dexFile =
dexUtil
.getFrom(new JavaSource("B", "public class B<T>{}"));
55
assertEquals("<T:Ljava/lang/Object;>Ljava/lang/Object;",
DexUtil
.getGenericSignature(dexClass));
58
parser.parseForClass(sigClass,
DexUtil
.getGenericSignature(dexClass));
Completed in 491 milliseconds