Searched refs:typeNames (Results 1 - 7 of 7) sorted by relevance

/libcore/dex/src/main/java/com/android/dex/
H A DClassDef.java96 result.append(buffer.typeNames().get(typeIndex));
98 result.append(" extends ").append(buffer.typeNames().get(supertypeIndex));
H A DAnnotation.java61 : visibility + " " + dex.typeNames().get(getTypeIndex());
H A DFieldId.java66 return dex.typeNames().get(typeIndex) + "." + dex.strings().get(nameIndex);
H A DMethodId.java66 return dex.typeNames().get(declaringClassIndex)
H A DProtoId.java65 + ": " + dex.typeNames().get(returnTypeIndex)
H A DTypeList.java50 result.append(dex != null ? dex.typeNames().get(types[i]) : types[i]);
H A DDex.java65 private final TypeIndexToDescriptorTable typeNames = new TypeIndexToDescriptorTable(); field in class:Dex
239 public List<String> typeNames() { method in class:Dex
240 return typeNames;
349 return Collections.binarySearch(typeNames, descriptor);

Completed in 1153 milliseconds