Lines Matching refs:clazz
85 DexClass clazz = dexFile.getDefinedClasses().get(0); in testT0() local
86 assertEquals("LT0;", clazz.getName()); in testT0()
87 assertPublic(clazz); in testT0()
89 assertEquals(4, clazz.getFields().size()); in testT0()
90 DexField field = getField(clazz, "publicIntField"); in testT0()
92 field = getField(clazz, "protectedLongField"); in testT0()
94 field = getField(clazz, "defaultShortField"); in testT0()
96 field = getField(clazz, "privateDoubleField"); in testT0()
99 DexMethod method = getMethod(clazz, "publicStringMethodInt", "I"); in testT0()
101 method = getMethod(clazz, "protectedStringMethodInt", "I");/** a.b.C */ in testT0()
103 method = getMethod(clazz, "defaultStringMethodInt", "I"); in testT0()
105 method = getMethod(clazz, "privateStringMethodInt", "I"); in testT0()
137 DexClass clazz = dexFile.getDefinedClasses().get(0); in testT1() local
138 assertEquals("LT1;", clazz.getName()); in testT1()
139 assertPublic(clazz); in testT1()
140 assertEquals("LT0;", clazz.getSuperClass()); in testT1()