Home
last modified time | relevance | path

Searched refs:getDexType (Results 1 – 3 of 3) sorted by relevance

/cts/tests/signature/lib/common/src/android/signature/cts/
DDexMethod.java38 return "(" + String.join("", mParamTypeList) + ")" + getDexType(); in getDexSignature()
57 return "<init>".equals(getName()) && "V".equals(getDexType()); in isConstructor()
61 return "<clinit>".equals(getName()) && "V".equals(getDexType()); in isStaticConstructor()
DDexMember.java51 public String getDexType() { in getDexType() method in DexMember
/cts/tests/signature/lib/android/src/android/signature/cts/
DDexMemberChecker.java175 DexMember.typeToClass(dexField.getDexType()); in hasMatchingField_JNI()
178 Field ifield = getField_JNI(klass, dexField.getName(), dexField.getDexType()); in hasMatchingField_JNI()
187 Field sfield = getStaticField_JNI(klass, dexField.getName(), dexField.getDexType()); in hasMatchingField_JNI()
203 Class<?> returnClass = DexMember.typeToClass(dexMethod.getDexType()); in hasMatchingMethod_Reflection()