Home
last modified time | relevance | path

Searched refs:typeDescriptor (Results 1 – 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/multidex/
DClassReferenceListBuilder.java131 private void checkDescriptor(String typeDescriptor) { in checkDescriptor() argument
132 if (typeDescriptor.endsWith(";")) { in checkDescriptor()
133 int lastBrace = typeDescriptor.lastIndexOf('['); in checkDescriptor()
135 addClassWithHierachy(typeDescriptor.substring(1, typeDescriptor.length()-1)); in checkDescriptor()
137 assert typeDescriptor.length() > lastBrace + 3 in checkDescriptor()
138 && typeDescriptor.charAt(lastBrace + 1) == 'L'; in checkDescriptor()
139 addClassWithHierachy(typeDescriptor.substring(lastBrace + 2, in checkDescriptor()
140 typeDescriptor.length() - 1)); in checkDescriptor()
/dalvik/dexdump/
DDexDump.cpp1159 char* typeDescriptor = NULL; in dumpMethod() local
1170 typeDescriptor = dexCopyDescriptorFromMethodId(pDexFile, pMethodId); in dumpMethod()
1180 printf(" type : '%s'\n", typeDescriptor); in dumpMethod()
1209 const char* returnType = strrchr(typeDescriptor, ')'); in dumpMethod()
1212 typeDescriptor); in dumpMethod()
1244 if (typeDescriptor[0] != '(') { in dumpMethod()
1245 fprintf(stderr, "ERROR: bad descriptor '%s'\n", typeDescriptor); in dumpMethod()
1249 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ in dumpMethod()
1252 const char* base = typeDescriptor+1; in dumpMethod()
1290 free(typeDescriptor); in dumpMethod()
[all …]