Uses of Class
com.strobel.assembler.ir.ConstantPool
-
Packages that use ConstantPool Package Description com.strobel.assembler.ir com.strobel.assembler.metadata -
-
Uses of ConstantPool in com.strobel.assembler.ir
Fields in com.strobel.assembler.ir declared as ConstantPool Modifier and Type Field Description protected ConstantPool
ConstantPool.Entry. owner
Methods in com.strobel.assembler.ir that return ConstantPool Modifier and Type Method Description static ConstantPool
ConstantPool. read(Buffer b)
Constructors in com.strobel.assembler.ir with parameters of type ConstantPool Constructor Description ConstantEntry(ConstantPool owner)
DoubleConstantEntry(ConstantPool owner, double value)
Entry(ConstantPool owner)
FieldReferenceEntry(ConstantPool owner, int typeIndex, int nameAndTypeDescriptorIndex)
FloatConstantEntry(ConstantPool owner, float value)
IntegerConstantEntry(ConstantPool owner, int value)
InterfaceMethodReferenceEntry(ConstantPool owner, int typeIndex, int nameAndTypeDescriptorIndex)
InvokeDynamicInfoEntry(ConstantPool owner, int bootstrapMethodAttributeIndex, int nameAndTypeDescriptorIndex)
LongConstantEntry(ConstantPool owner, long value)
MethodHandleEntry(ConstantPool owner, ConstantPool.ReferenceKind referenceKind, int referenceIndex)
MethodReferenceEntry(ConstantPool owner, int typeIndex, int nameAndTypeDescriptorIndex)
MethodTypeEntry(ConstantPool owner, int descriptorIndex)
ModuleEntry(ConstantPool owner, int nameIndex)
NameAndTypeDescriptorEntry(ConstantPool owner, int nameIndex, int typeDescriptorIndex)
PackageEntry(ConstantPool owner, int nameIndex)
ReferenceEntry(ConstantPool cp, ConstantPool.Tag tag, int typeInfoIndex, int nameAndTypeDescriptorIndex)
StringConstantEntry(ConstantPool owner, int stringIndex)
TypeInfoEntry(ConstantPool owner, int nameIndex)
Utf8StringConstantEntry(ConstantPool owner, java.lang.String value)
-
Uses of ConstantPool in com.strobel.assembler.metadata
Fields in com.strobel.assembler.metadata declared as ConstantPool Modifier and Type Field Description private ConstantPool
ClassFileReader. _constantPool
private ConstantPool
ClassFileReader.Scope. _constantPool
private ConstantPool
TypeDefinition. _constantPool
Methods in com.strobel.assembler.metadata that return ConstantPool Modifier and Type Method Description ConstantPool
TypeDefinition. getConstantPool()
Methods in com.strobel.assembler.metadata with parameters of type ConstantPool Modifier and Type Method Description protected void
TypeDefinition. setConstantPool(ConstantPool constantPool)
Constructors in com.strobel.assembler.metadata with parameters of type ConstantPool Constructor Description ClassFileReader(int options, IMetadataResolver resolver, int majorVersion, int minorVersion, Buffer buffer, ConstantPool constantPool, int accessFlags, ConstantPool.TypeInfoEntry thisClassEntry, ConstantPool.TypeInfoEntry baseClassEntry, ConstantPool.TypeInfoEntry[] interfaceEntries)
Scope(MetadataParser parser, TypeDefinition typeDefinition, ConstantPool constantPool)
-