Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/multidex/
DClassReferenceListBuilder.java130 private void checkDescriptor(String typeDescriptor) { in checkDescriptor() argument
131 if (typeDescriptor.endsWith(";")) { in checkDescriptor()
132 int lastBrace = typeDescriptor.lastIndexOf('['); in checkDescriptor()
134 addClassWithHierachy(typeDescriptor.substring(1, typeDescriptor.length()-1)); in checkDescriptor()
136 assert typeDescriptor.length() > lastBrace + 3 in checkDescriptor()
137 && typeDescriptor.charAt(lastBrace + 1) == 'L'; in checkDescriptor()
138 addClassWithHierachy(typeDescriptor.substring(lastBrace + 2, in checkDescriptor()
139 typeDescriptor.length() - 1)); in checkDescriptor()
/dalvik/dexdump/
DDexDump.cpp1281 char* typeDescriptor = NULL; in dumpMethod() local
1292 typeDescriptor = dexCopyDescriptorFromMethodId(pDexFile, pMethodId); in dumpMethod()
1302 printf(" type : '%s'\n", typeDescriptor); in dumpMethod()
1331 const char* returnType = strrchr(typeDescriptor, ')'); in dumpMethod()
1334 typeDescriptor); in dumpMethod()
1366 if (typeDescriptor[0] != '(') { in dumpMethod()
1367 fprintf(stderr, "ERROR: bad descriptor '%s'\n", typeDescriptor); in dumpMethod()
1371 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ in dumpMethod()
1374 const char* base = typeDescriptor+1; in dumpMethod()
1412 free(typeDescriptor); in dumpMethod()
[all …]