Uses of Class
com.android.dx.util.ByteArray

Packages that use ByteArray
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.cst   
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.command.dump   
com.android.dx.rop.cst Interfaces and implementation of things related to the constant pool. 
com.android.dx.util Utility classes for class file access/manipulation. 
 

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

Methods in com.android.dx.cf.attrib that return ByteArray
 ByteArray RawAttribute.getData()
          Get the raw data of the attribute.
 

Constructors in com.android.dx.cf.attrib with parameters of type ByteArray
RawAttribute(String name, ByteArray data, ConstantPool pool)
          Constructs an instance.
RawAttribute(String name, ByteArray data, int offset, int length, ConstantPool pool)
          Constructs an instance from a sub-array of a ByteArray.
 

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

Methods in com.android.dx.cf.code that return ByteArray
 ByteArray BytecodeArray.getBytes()
          Gets the underlying byte array.
 

Constructors in com.android.dx.cf.code with parameters of type ByteArray
BytecodeArray(ByteArray bytes, ConstantPool pool)
          Constructs an instance.
 

Uses of ByteArray in com.android.dx.cf.cst
 

Constructors in com.android.dx.cf.cst with parameters of type ByteArray
ConstantPoolParser(ByteArray bytes)
          Constructs an instance.
 

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

Methods in com.android.dx.cf.direct that return ByteArray
 ByteArray DirectClassFile.getBytes()
          Gets the ByteArray that this instance's data comes from.
 

Constructors in com.android.dx.cf.direct with parameters of type ByteArray
CodeObserver(ByteArray bytes, ParseObserver observer)
          Constructs an instance.
DirectClassFile(ByteArray bytes, String filePath, boolean strictParse)
          Constructs an instance.
 

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

Methods in com.android.dx.cf.iface with parameters of type ByteArray
 void ParseObserver.endParsingMember(ByteArray bytes, int offset, String name, String descriptor, Member member)
          Indicate that a particular member is no longer being parsed.
 void ParseObserver.parsed(ByteArray bytes, int offset, int len, String human)
          Indicate that some parsing happened.
 void ParseObserver.startParsingMember(ByteArray bytes, int offset, String name, String descriptor)
          Indicate that a particular member is now being parsed.
 

Uses of ByteArray in com.android.dx.command.dump
 

Methods in com.android.dx.command.dump with parameters of type ByteArray
 void BaseDumper.endParsingMember(ByteArray bytes, int offset, String name, String descriptor, Member member)
          Indicate that a particular member is no longer being parsed.
 void SsaDumper.endParsingMember(ByteArray bytes, int offset, String name, String descriptor, Member member)
          Indicate that a particular member is no longer being parsed.
 void DotDumper.endParsingMember(ByteArray bytes, int offset, String name, String descriptor, Member member)
           
 void BlockDumper.endParsingMember(ByteArray bytes, int offset, String name, String descriptor, Member member)
          Indicate that a particular member is no longer being parsed.
 void BaseDumper.parsed(ByteArray bytes, int offset, int len, String human)
          Indicate that some parsing happened.
 void DotDumper.parsed(ByteArray bytes, int offset, int len, String human)
           
 void BlockDumper.parsed(ByteArray bytes, int offset, int len, String human)
          Indicate that some parsing happened.
protected  void BaseDumper.setAt(ByteArray arr, int offset)
          Sets the dump cursor to the indicated offset in the given array.
 void BaseDumper.startParsingMember(ByteArray bytes, int offset, String name, String descriptor)
          Indicate that a particular member is now being parsed.
 void DotDumper.startParsingMember(ByteArray bytes, int offset, String name, String descriptor)
          Indicate that a particular member is now being parsed.
 void BlockDumper.startParsingMember(ByteArray bytes, int offset, String name, String descriptor)
          Indicate that a particular member is now being parsed.
 

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

Methods in com.android.dx.rop.cst that return ByteArray
 ByteArray CstString.getBytes()
          Gets the UTF-8 value as UTF-8 encoded bytes.
 

Methods in com.android.dx.rop.cst with parameters of type ByteArray
static String CstString.utf8BytesToString(ByteArray bytes)
          Converts an array of UTF-8 bytes into a string.
 

Constructors in com.android.dx.rop.cst with parameters of type ByteArray
CstString(ByteArray bytes)
          Constructs an instance from some UTF-8 bytes.
 

Uses of ByteArray in com.android.dx.util
 

Methods in com.android.dx.util that return ByteArray
 ByteArray ByteArray.slice(int start, int end)
          Returns a slice (that is, a sub-array) of this instance.
 

Methods in com.android.dx.util with parameters of type ByteArray
 void Output.write(ByteArray bytes)
          Writes a ByteArray to this instance.
 void ByteArrayAnnotatedOutput.write(ByteArray bytes)
          Writes a ByteArray to this instance.
 



Copyright © 2015. All rights reserved.