HomeSort by relevance Sort by last modified time
    Searched refs:DexMethod (Results 1 - 15 of 15) sorted by null

  /cts/tools/dex-tools/src/dex/structure/
DexClass.java 52 List<DexMethod> getMethods();
DexMethod.java 22 * {@code DexMethod} represents a method.
24 public interface DexMethod extends WithModifiers, DexAnnotatedElement,
  /dalvik/libdex/
DexClass.h 42 struct DexMethod {
55 DexMethod* directMethods;
56 DexMethod* virtualMethods;
91 DexMethod* pMethod, u4* lastIndex);
106 * Get the DexCode for a DexMethod. Returns NULL if the class is native
110 const DexMethod* pDexMethod)
152 DEX_INLINE void dexReadClassDataMethod(const u1** pData, DexMethod* pMethod,
DexClass.cpp 85 DexMethod* pMethod, u4* lastIndex) {
121 (header.directMethodsSize * sizeof(DexMethod)) +
122 (header.virtualMethodsSize * sizeof(DexMethod));
150 result->directMethods = (DexMethod*) ptr;
151 ptr += header.directMethodsSize * sizeof(DexMethod);
157 result->virtualMethods = (DexMethod*) ptr;
DexSwapVerify.cpp     [all...]
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 23 import dex.structure.DexMethod;
118 for (DexMethod method : dexClass.getMethods()) {
DexClassImpl.java 35 import dex.structure.DexMethod;
52 private List<DexMethod> methods;
276 public synchronized List<DexMethod> getMethods() {
278 methods = new ArrayList<DexMethod>();
287 private List<DexMethod> getDexMethods(EncodedMethod[] methods) {
288 List<DexMethod> dexMethods = new ArrayList<DexMethod>(methods.length);
DexMethodImpl.java 34 import dex.structure.DexMethod;
37 /* package */final class DexMethodImpl implements DexMethod {
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 33 import dex.structure.DexMethod;
129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) {
133 for (DexMethod method : clazz.getMethods()) {
DexFileReaderTests.java 40 import dex.structure.DexMethod;
99 DexMethod method = getMethod(clazz, "publicStringMethodInt", "I");
330 DexMethod method = getMethod(A, "m", "I");
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 94 import dex.structure.DexMethod;
451 private void addAnnotationsToAnnotationFields(List<DexMethod> methods,
461 for (DexMethod method : methods) {
471 List<DexMethod> list, Map<String, Object> mappings) {
474 for (DexMethod dexMethod : list) {
475 if (isVisible(dexMethod, visibility)) {
476 annotationfields.add(convertAnnotationField(dexMethod, mappings
477 .get(dexMethod.getName())));
483 private SigAnnotationField convertAnnotationField(DexMethod dexMethod
    [all...]
DexUtil.java 41 import dex.structure.DexMethod;
417 public static boolean isConstructor(DexMethod method) {
429 public static boolean isStaticConstructor(DexMethod method) {
433 public static boolean isMethod(DexMethod method) {
557 public static boolean isVisible(DexMethod dexMethod,
559 return isVisible(dexMethod.getModifiers(), visibility);
  /dalvik/dexdump/
DexDump.cpp 615 const DexMethod *pDexMethod)
640 const DexMethod *pDexMethod)
    [all...]
  /dalvik/dexlist/
DexList.cpp 95 const DexMethod* pDexMethod, int i)
  /dalvik/vm/oo/
Class.cpp 179 static void loadMethodFromDex(ClassObject* clazz, const DexMethod* pDexMethod,\
    [all...]

Completed in 164 milliseconds