HomeSort by relevance Sort by last modified time
    Searched refs:DexFile (Results 151 - 175 of 365) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ParameterAnnotationStruct.java 100 public void addContents(DexFile file) {
109 public void writeTo(DexFile file, AnnotatedOutput out) {
UniformListItem.java 121 public void addContents(DexFile file) {
189 protected void writeTo0(DexFile file, AnnotatedOutput out) {
CodeItem.java 116 public void addContents(DexFile file) {
193 final DexFile file = addedTo.getFile();
233 protected void writeTo0(DexFile file, AnnotatedOutput out) {
297 private void writeCodes(DexFile file, AnnotatedOutput out) {
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedField.java 98 public void addContents(DexFile file) {
132 public int encode(DexFile file, AnnotatedOutput out,
HeaderItem.java 50 public void addContents(DexFile file) {
56 public void writeTo(DexFile file, AnnotatedOutput out) {
OffsettedItem.java 164 public final void writeTo(DexFile file, AnnotatedOutput out) {
313 protected abstract void writeTo0(DexFile file, AnnotatedOutput out);
UniformListItem.java 119 public void addContents(DexFile file) {
187 protected void writeTo0(DexFile file, AnnotatedOutput out) {
CodeItem.java 107 public void addContents(DexFile file) {
184 final DexFile file = addedTo.getFile();
224 protected void writeTo0(DexFile file, AnnotatedOutput out) {
288 private void writeCodes(DexFile file, AnnotatedOutput out) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 115 public void addContents(DexFile file) {
133 protected void writeTo0(DexFile file, AnnotatedOutput out) {
EncodedField.java 99 public void addContents(DexFile file) {
133 public int encode(DexFile file, AnnotatedOutput out,
HeaderItem.java 50 public void addContents(DexFile file) {
56 public void writeTo(DexFile file, AnnotatedOutput out) {
OffsettedItem.java 164 public final void writeTo(DexFile file, AnnotatedOutput out) {
313 protected abstract void writeTo0(DexFile file, AnnotatedOutput out);
ParameterAnnotationStruct.java 100 public void addContents(DexFile file) {
109 public void writeTo(DexFile file, AnnotatedOutput out) {
UniformListItem.java 121 public void addContents(DexFile file) {
189 protected void writeTo0(DexFile file, AnnotatedOutput out) {
CodeItem.java 116 public void addContents(DexFile file) {
193 final DexFile file = addedTo.getFile();
233 protected void writeTo0(DexFile file, AnnotatedOutput out) {
297 private void writeCodes(DexFile file, AnnotatedOutput out) {
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
AnalysisTest.java 41 import org.jf.dexlib2.iface.DexFile;
87 DexFile dexFile = DexFileFactory.loadDexFile(findResource(dexFilePath), 15);
95 for (ClassDef classDef: dexFile.getClasses()) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DexFileFactory.java 37 import org.jf.dexlib2.iface.DexFile;
53 public static DexBackedDexFile loadDexFile(File dexFile, int api) throws IOException {
54 return loadDexFile(dexFile, new Opcodes(api));
58 public static DexBackedDexFile loadDexFile(File dexFile, @Nonnull Opcodes opcodes) throws IOException {
62 zipFile = new ZipFile(dexFile);
68 throw new NoClassesDexException("zip file %s does not contain a classes.dex file", dexFile.getName());
73 "The classes.dex file in %s is too small to be a valid dex file", dexFile.getName());
75 throw new ExceptionWithContext("The classes.dex file in %s is too large to read in", dexFile.getName());
95 InputStream inputStream = new BufferedInputStream(new FileInputStream(dexFile));
111 throw new ExceptionWithContext("%s is not an apk, dex file or odex file.", dexFile.getPath())
    [all...]
  /dalvik/dexdump/
DexDump.cpp 33 #include "libdex/DexFile.h"
392 void dumpFileHeader(const DexFile* pDexFile)
459 void dumpOptDirectory(const DexFile* pDexFile)
508 void dumpClassDef(DexFile* pDexFile, int idx)
549 void dumpInterface(const DexFile* pDexFile, const DexTypeItem* pTypeItem,
567 void dumpCatches(DexFile* pDexFile, const DexCode* pCode)
617 void dumpPositions(DexFile* pDexFile, const DexCode* pCode,
642 void dumpLocals(DexFile* pDexFile, const DexCode* pCode,
659 bool getMethodInfo(DexFile* pDexFile, u4 methodIdx, FieldMethodInfo* pMethInfo)
678 bool getFieldInfo(DexFile* pDexFile, u4 fieldIdx, FieldMethodInfo* pFieldInfo
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 51 const DexFile& GetDexFile() const {
95 const DexFile::CodeItem* code_item = unit_.GetCodeItem();
274 extern "C" void ArtCompileDEX(art::CompilerDriver& driver, const art::DexFile::CodeItem* code_item,
277 const art::DexFile& dex_file,
  /art/compiler/sea_ir/types/
type_inference.cc 42 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
52 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
58 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
89 const art::DexFile::ProtoId& proto_id =
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 29 const DexFile::CodeItem* code_item,
  /art/runtime/mirror/
dex_cache.cc 34 void DexCache::Init(const DexFile* dex_file,
  /dalvik/libdex/
DexDebugInfo.cpp 84 static const char* readStringIdx(const DexFile* pDexFile,
100 static const char* readTypeIdx(const DexFile* pDexFile,
142 const DexFile* pDexFile,
313 const DexFile* pDexFile,
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java 39 import org.jf.dexlib2.iface.DexFile;
69 DexFile dexFile = new ImmutableDexFile(ImmutableList.of(classDef));
71 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
96 DexFile dexFile = new ImmutableDexFile(ImmutableList.of(classDef));
98 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
123 DexFile dexFile = new ImmutableDexFile(ImmutableList.of(classDef));
125 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericSignatureFormatErrorTest.java 4 import dalvik.system.DexFile;
34 @AndroidOnly("Uses Android specific class dalvik.system.DexFile " +
72 // DexFile df = new DexFile(tf);

Completed in 461 milliseconds

1 2 3 4 5 67 8 91011>>