OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dexPool
(Results
1 - 17
of
17
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
BasePool.java
41
@Nonnull protected final
DexPool
dexPool
;
45
public BasePool(@Nonnull
DexPool
dexPool
) {
46
this.
dexPool
=
dexPool
;
AnnotationPool.java
45
public AnnotationPool(@Nonnull
DexPool
dexPool
) {
46
super(
dexPool
);
52
dexPool
.typeSection.intern(annotation.getType());
54
dexPool
.stringSection.intern(element.getName());
55
dexPool
.internEncodedValue(element.getValue());
FieldPool.java
43
public FieldPool(@Nonnull
DexPool
dexPool
) {
44
super(
dexPool
);
50
dexPool
.typeSection.intern(field.getDefiningClass());
51
dexPool
.stringSection.intern(field.getName());
52
dexPool
.typeSection.intern(field.getType());
MethodPool.java
43
public MethodPool(@Nonnull
DexPool
dexPool
) {
44
super(
dexPool
);
50
dexPool
.typeSection.intern(method.getDefiningClass());
51
dexPool
.protoSection.intern(new PoolMethodProto(method));
52
dexPool
.stringSection.intern(method.getName());
ProtoPool.java
47
public ProtoPool(@Nonnull
DexPool
dexPool
) {
48
super(
dexPool
);
54
dexPool
.stringSection.intern(getShorty(reference));
55
dexPool
.typeSection.intern(reference.getReturnType());
56
dexPool
.typeListSection.intern(reference.getParameterTypes());
AnnotationSetPool.java
44
public AnnotationSetPool(@Nonnull
DexPool
dexPool
) {
45
super(
dexPool
);
53
dexPool
.annotationSection.intern(annotation);
TypePool.java
44
public TypePool(@Nonnull
DexPool
dexPool
) {
45
super(
dexPool
);
52
dexPool
.stringSection.intern(typeString);
BaseNullableOffsetPool.java
43
public BaseNullableOffsetPool(@Nonnull
DexPool
dexPool
) {
44
super(
dexPool
);
BaseIndexPool.java
43
public BaseIndexPool(@Nonnull
DexPool
dexPool
) {
44
super(
dexPool
);
BaseOffsetPool.java
43
public BaseOffsetPool(@Nonnull
DexPool
dexPool
) {
44
super(
dexPool
);
StringPool.java
43
public StringPool(@Nonnull
DexPool
dexPool
) {
44
super(
dexPool
);
StringTypeBasePool.java
46
public StringTypeBasePool(@Nonnull
DexPool
dexPool
) {
47
super(
dexPool
);
ClassPool.java
65
public ClassPool(@Nonnull
DexPool
dexPool
) {
66
super(
dexPool
);
77
dexPool
.typeSection.intern(poolClassDef.getType());
78
dexPool
.typeSection.internNullable(poolClassDef.getSuperclass());
79
dexPool
.typeListSection.intern(poolClassDef.getInterfaces());
80
dexPool
.stringSection.internNullable(poolClassDef.getSourceFile());
89
dexPool
.fieldSection.intern(field);
93
dexPool
.internEncodedValue(initialValue);
96
dexPool
.annotationSetSection.intern(field.getAnnotations())
[
all
...]
TypeListPool.java
48
public TypeListPool(@Nonnull
DexPool
dexPool
) {
49
super(
dexPool
);
58
dexPool
.typeSection.intern(type);
DexPool.java
53
public class
DexPool
extends DexWriter<CharSequence, StringReference, CharSequence, TypeReference,
65
public
DexPool
(Opcodes opcodes) {
75
DexPool
dexPool
= new
DexPool
(input.getOpcodes());
77
dexPool
.internClass(classDef);
79
dexPool
.writeTo(dataStore);
83
DexPool
dexPool
= new
DexPool
(input.getOpcodes())
[
all
...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/pool/
RollbackTest.java
46
import org.jf.dexlib2.writer.pool.
DexPool
;
81
DexPool
dexPool
= new
DexPool
(Opcodes.getDefault());
82
dexPool
.internClass(class1);
83
dexPool
.mark();
84
dexPool
.internClass(class2);
85
dexPool
.reset();
86
dexPool
.writeTo(dataStore);
93
DexPool
dexPool = new DexPool(Opcodes.getDefault())
[
all
...]
/prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar
Completed in 80 milliseconds