OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeSection
(Results
1 - 17
of
17
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
EncodedValueWriter.java
49
@Nonnull private final
TypeSection
<?, TypeKey, ?>
typeSection
;
57
@Nonnull
TypeSection
<?, TypeKey, ?>
typeSection
,
63
this.
typeSection
=
typeSection
;
74
writer.writeUleb128(
typeSection
.getItemIndex(annotationType));
147
writer.writeEncodedUint(ValueType.TYPE,
typeSection
.getItemIndex(value));
DebugWriter.java
43
@Nonnull private final
TypeSection
<StringKey, TypeKey, ?>
typeSection
;
49
@Nonnull
TypeSection
<StringKey, TypeKey, ?>
typeSection
,
52
this.
typeSection
=
typeSection
;
66
int typeIndex =
typeSection
.getNullableItemIndex(type);
DexWriter.java
94
TypeSectionType extends
TypeSection
<StringKey, TypeKey, TypeRef>,
136
public final TypeSectionType
typeSection
;
151
this.
typeSection
= sectionProvider.getTypeSection();
184
super(writer, stringSection,
typeSection
, fieldSection, methodSection, annotationSection);
195
typeSection
.getItemCount() * TypeIdItem.ITEM_SIZE +
223
for (Entry<? extends TypeKey, Integer> typeReference:
typeSection
.getItems()) {
241
typeSection
.getItemCount() > (1 << 16) ||
353
List<Map.Entry<? extends TypeKey, Integer>> typeEntries = Lists.newArrayList(
typeSection
.getItems());
358
writer.writeInt(stringSection.getItemIndex(
typeSection
.getString(entry.getKey())));
373
writer.writeInt(
typeSection
.getItemIndex(protoSection.getReturnType(key)))
[
all
...]
InstructionWriter.java
62
@Nonnull private final
TypeSection
<?, ?, TypeRef>
typeSection
;
74
@Nonnull
TypeSection
<?, ?, TypeRef>
typeSection
,
79
opcodes, writer, stringSection,
typeSection
, fieldSection, methodSection, protoSection);
85
@Nonnull
TypeSection
<?, ?, TypeRef>
typeSection
,
92
this.
typeSection
=
typeSection
;
551
return
typeSection
.getItemIndex((TypeRef) reference)
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
FieldPool.java
50
dexPool.
typeSection
.intern(field.getDefiningClass());
52
dexPool.
typeSection
.intern(field.getType());
AnnotationPool.java
52
dexPool.
typeSection
.intern(annotation.getType());
MethodPool.java
50
dexPool.
typeSection
.intern(method.getDefiningClass());
ProtoPool.java
55
dexPool.
typeSection
.intern(reference.getReturnType());
DexPool.java
61
stringSection,
typeSection
, protoSection, fieldSection, methodSection, classSection, typeListSection,
182
typeSection
.intern(annotationEncodedValue.getType());
197
typeSection
.intern(((TypeEncodedValue)encodedValue).getValue());
TypeListPool.java
58
dexPool.
typeSection
.intern(type);
ClassPool.java
77
dexPool.
typeSection
.intern(poolClassDef.getType());
78
dexPool.
typeSection
.internNullable(poolClassDef.getSuperclass());
134
dexPool.
typeSection
.intern((TypeReference)reference);
157
dexPool.
typeSection
.internNullable(handler.getExceptionType());
178
dexPool.
typeSection
.internNullable(startLocal.getType());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderFieldPool.java
65
dexBuilder.
typeSection
.internType(fieldReference.getDefiningClass()),
67
dexBuilder.
typeSection
.internType(fieldReference.getType()));
DexBuilder.java
125
return classSection.internClass(new BuilderClassDef(
typeSection
.internType(type),
127
typeSection
.internNullableType(superclass),
147
return
typeSection
.internType(type);
203
typeSection
.internType(methodParameter.getType()),
332
typeSection
.internType(value.getType()),
364
return new BuilderTypeEncodedValue(
typeSection
.internType(type.getValue()));
BuilderAnnotationPool.java
61
dexBuilder.
typeSection
.internType(annotation.getType()),
BuilderProtoPool.java
66
dexBuilder.
typeSection
.internType(methodProto.getReturnType()));
BuilderTypeListPool.java
69
return dexBuilder.
typeSection
.internType(input.toString());
BuilderMethodPool.java
61
dexBuilder.
typeSection
.internType(methodReference.getDefiningClass()),
Completed in 242 milliseconds