HomeSort by relevance Sort by last modified time
    Searched refs:ClassDef (Results 26 - 50 of 84) sorted by null

12 3 4

  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 19 import com.android.dex.ClassDef;
112 for (ClassDef classDef : dex.classDefs()) {
113 System.out.println("class def " + index + ": " + classDef);
  /art/runtime/
dex_method_iterator.h 141 const DexFile::ClassDef* class_def_;
dex_file_test.cc 133 const DexFile::ClassDef& c0 = raw->GetClassDef(0);
136 const DexFile::ClassDef& c1 = raw->GetClassDef(1);
146 const DexFile::ClassDef& class_def = raw->GetClassDef(0);
dex_file.cc 55 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
62 reinterpret_cast<const DexFile::ClassDef*>(NULL));
296 class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_);
334 const DexFile::ClassDef* DexFile::FindClassDef(const char* descriptor) const {
349 const ClassDef& class_def = GetClassDef(i);
357 const DexFile::ClassDef* DexFile::FindClassDef(uint16_t type_idx) const {
360 const ClassDef& class_def = GetClassDef(i);
945 const DexFile::ClassDef& class_def)
    [all...]
class_linker.h 75 // Define a new a class based on a ClassDef from a DexFile
77 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def)
405 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
410 const DexFile::ClassDef& dex_class_def);
413 const DexFile::ClassDef& dex_class_def,
  /external/emma/core/java12/com/vladium/jcd/cls/
FieldCollection.java 33 public int [] get (final ClassDef cls, final String name)
37 // TODO: hash impl [not possible without having access to the parent ClassDef]
MethodCollection.java 33 public int [] get (final ClassDef cls, final String name)
37 // TODO: hash impl [not possible without having access to the parent ClassDef]
ClassDef.java 7 * $Id: ClassDef.java,v 1.1.1.1.2.1 2004/07/16 23:32:30 vlad_r Exp $
45 final class ClassDef implements Cloneable, IAccessFlags, IClassFormatOutput
50 public ClassDef ()
211 final ClassDef _clone = (ClassDef) super.clone ();
  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 26 import com.vladium.jcd.cls.ClassDef;
162 final ClassDef cls = ClassDefParser.parseClass (baos.getByteArray (), baos.size ());
188 public static List getCONSTANT_Class_info (final ClassDef cls)
  /art/runtime/verifier/
method_verifier.h 153 const DexFile::ClassDef* class_def,
159 const DexFile::ClassDef* class_def,
227 mirror::ClassLoader* class_loader, const DexFile::ClassDef* class_def,
268 const DexFile::ClassDef* class_def_idx,
696 const DexFile::ClassDef* const class_def_; // The class def of the declaring class of the method.
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsubgpos-private.hh 617 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
645 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
671 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
    [all...]
hb-ot-layout-gdef-table.hh 402 OffsetTo<ClassDef>
414 OffsetTo<ClassDef>
  /external/harfbuzz_ng/src/
hb-ot-layout-gsubgpos-private.hh 617 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
645 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
671 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data);
    [all...]
hb-ot-layout-gdef-table.hh 402 OffsetTo<ClassDef>
414 OffsetTo<ClassDef>
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 22 import com.vladium.jcd.cls.ClassDef;
139 ClassDef clsDef = ClassDefParser.parseClass (m_readbuf, m_readpos);
238 ClassDef clsDef = ClassDefParser.parseClass (m_readbuf, m_readpos);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
CustomInlineMethodResolver.java 106 ClassPath.ClassDef classDef = ClassPath.getClassDef(className, false);
107 int methodType = classDef.getMethodType(String.format("%s(%s)%s", methodName, methodParams, methodRet));
  /libcore/dex/src/main/java/com/android/dex/
Dex.java 255 public Iterable<ClassDef> classDefs() {
266 public ClassData readClassData(ClassDef classDef) {
267 int offset = classDef.getClassDataOffset();
627 public ClassDef readClassDef() {
637 return new ClassDef(Dex.this, offset, type, accessFlags, supertype,
    [all...]
  /art/compiler/
oat_writer.h 99 const DexFile::ClassDef& class_def)
113 const DexFile::ClassDef& class_def);
oat_writer.cc 143 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
226 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
236 const DexFile::ClassDef& class_def) {
603 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
624 const DexFile::ClassDef& class_def) {
    [all...]
image_test.cc 149 const DexFile::ClassDef& class_def = dex->GetClassDef(i);
oat_test.cc 118 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
  /art/runtime/native/
dalvik_system_DexFile.cc 163 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor.c_str());
189 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 86 public void process (final ClassDef cls,
111 visit ((ClassDef) null, null); // potentially changes m_instrument and m_metadata
127 public Object visit (final ClassDef ignore, final Object ctx)
129 final ClassDef cls = m_cls;
358 final ClassDef cls = m_cls;
    [all...]
  /art/oatdump/
oatdump.cc 179 const DexFile::ClassDef* class_def =
208 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
254 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
278 const DexFile::ClassDef& class_def) {
304 void DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def,
556 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
617 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
631 const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item,
    [all...]
  /art/compiler/driver/
compiler_driver_test.cc 78 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);

Completed in 2437 milliseconds

12 3 4