Uses of Class
com.android.dx.rop.cst.CstString

Packages that use CstString
com.android.dx.cf.attrib Implementation of containers and utilities for all the standard Java attribute types. 
com.android.dx.cf.code Implementation of classes having to do with Java simulation, such as is needed for verification or stack-to-register conversion. 
com.android.dx.cf.direct Implementation of cf.iface.* based on a direct representation of class files as byte[]s. 
com.android.dx.cf.iface Interfaces and base classes for dealing with class files. 
com.android.dx.dex.code   
com.android.dx.dex.file   
com.android.dx.rop.annotation   
com.android.dx.rop.code Classes relating to a register-based opcode system. 
com.android.dx.rop.cst Interfaces and implementation of things related to the constant pool. 
 

Uses of CstString in com.android.dx.cf.attrib
 

Methods in com.android.dx.cf.attrib that return CstString
 CstString InnerClassList.Item.getInnerName()
          Gets the original name of this item's class, if not anonymous.
 CstString AttSignature.getSignature()
          Gets the signature string.
 CstString AttSourceFile.getSourceFile()
          Gets the source file name of this instance.
 

Methods in com.android.dx.cf.attrib with parameters of type CstString
 void InnerClassList.set(int n, CstType innerClass, CstType outerClass, CstString innerName, int accessFlags)
          Sets the item at the given index.
 

Constructors in com.android.dx.cf.attrib with parameters of type CstString
AttSignature(CstString signature)
          Constructs an instance.
AttSourceFile(CstString sourceFile)
          Constructs an instance.
InnerClassList.Item(CstType innerClass, CstType outerClass, CstString innerName, int accessFlags)
          Constructs an instance.
 

Uses of CstString in com.android.dx.cf.code
 

Methods in com.android.dx.cf.code that return CstString
 CstString ConcreteMethod.getDescriptor()
          Get the field descriptor_index of the member.
 CstString LocalVariableList.Item.getDescriptor()
          Gets the variable's type descriptor.
 CstString ConcreteMethod.getName()
          Get the field name_index of the member.
 

Methods in com.android.dx.cf.code with parameters of type CstString
 void LocalVariableList.set(int n, int startPc, int length, CstString name, CstString descriptor, CstString signature, int index)
          Sets the item at the given index.
 LocalVariableList.Item LocalVariableList.Item.withSignature(CstString newSignature)
          Constructs and returns an instance which is identical to this one, except that the signature is changed to the given value.
 

Constructors in com.android.dx.cf.code with parameters of type CstString
ConcreteMethod(Method method, int accessFlags, CstString sourceFile, boolean keepLines, boolean keepLocals)
           
LocalVariableList.Item(int startPc, int length, CstString name, CstString descriptor, CstString signature, int index)
          Constructs an instance.
 

Uses of CstString in com.android.dx.cf.direct
 

Methods in com.android.dx.cf.direct that return CstString
 CstString DirectClassFile.getSourceFile()
          Gets the name out of the SourceFile attribute of this file, if any.
 

Uses of CstString in com.android.dx.cf.iface
 

Methods in com.android.dx.cf.iface that return CstString
 CstString StdMember.getDescriptor()
          Get the field descriptor_index of the member.
 CstString Member.getDescriptor()
          Get the field descriptor_index of the member.
 CstString StdMember.getName()
          Get the field name_index of the member.
 CstString Member.getName()
          Get the field name_index of the member.
 CstString ClassFile.getSourceFile()
          Gets the name out of the SourceFile attribute of this file, if any.
 

Uses of CstString in com.android.dx.dex.code
 

Methods in com.android.dx.dex.code that return CstString
 CstString LocalList.Entry.getName()
          Gets the variable name.
 CstString LocalList.Entry.getSignature()
          Gets the variable signature.
 

Uses of CstString in com.android.dx.dex.file
 

Methods in com.android.dx.dex.file that return CstString
 CstString EncodedField.getName()
          Gets the name.
 CstString EncodedMethod.getName()
          Gets the name.
abstract  CstString EncodedMember.getName()
          Gets the name.
 CstString ClassDefItem.getSourceFile()
          Gets the source file name.
 CstString StringIdItem.getValue()
          Gets the string value.
 

Methods in com.android.dx.dex.file with parameters of type CstString
 int StringIdsSection.indexOf(CstString string)
          Gets the index of the given string, which must have been added to this instance.
 StringIdItem StringIdsSection.intern(CstString string)
          Interns an element into this instance.
static Annotation AnnotationUtils.makeInnerClass(CstString name, int accessFlags)
          Constructs a standard InnerClass annotation.
static Annotation AnnotationUtils.makeSignature(CstString signature)
          Constructs a standard Signature annotation.
 

Constructors in com.android.dx.dex.file with parameters of type CstString
ClassDefItem(CstType thisClass, int accessFlags, CstType superclass, TypeList interfaces, CstString sourceFile)
          Constructs an instance.
StringDataItem(CstString value)
          Constructs an instance.
StringIdItem(CstString value)
          Constructs an instance.
 

Uses of CstString in com.android.dx.rop.annotation
 

Methods in com.android.dx.rop.annotation that return CstString
 CstString NameValuePair.getName()
          Gets the name.
 

Constructors in com.android.dx.rop.annotation with parameters of type CstString
NameValuePair(CstString name, Constant value)
          Construct an instance.
 

Uses of CstString in com.android.dx.rop.code
 

Methods in com.android.dx.rop.code that return CstString
 CstString LocalItem.getName()
          Gets name.
 CstString LocalItem.getSignature()
          Gets signature.
 CstString SourcePosition.getSourceFile()
          Gets the source file, if known.
 

Methods in com.android.dx.rop.code with parameters of type CstString
static LocalItem LocalItem.make(CstString name, CstString signature)
          Make a new item.
 

Constructors in com.android.dx.rop.code with parameters of type CstString
SourcePosition(CstString sourceFile, int address, int line)
          Constructs an instance.
 

Uses of CstString in com.android.dx.rop.cst
 

Fields in com.android.dx.rop.cst declared as CstString
static CstString CstString.EMPTY_STRING
          non-null; instance representing "", that is, the empty string
 

Methods in com.android.dx.rop.cst that return CstString
 CstString CstNat.getDescriptor()
          Gets the descriptor.
 CstString CstType.getDescriptor()
          Gets the type descriptor for this instance.
 CstString CstNat.getName()
          Gets the name.
 

Constructors in com.android.dx.rop.cst with parameters of type CstString
CstNat(CstString name, CstString descriptor)
          Constructs an instance.
 



Copyright © 2015. All rights reserved.