Home | History | Annotate | Download | only in preload

Lines Matching refs:typeName

167     String vmTypeToLanguage(String typeName) {
168 // if the typename is (null), just return it as-is. This is probably in dexopt and
171 if ("(null)".equals(typeName)) {
172 return typeName;
175 if (!typeName.startsWith("L") || !typeName.endsWith(";") ) {
176 throw new AssertionError("Bad name: " + typeName + " in line " + sourceLineNumber);
179 typeName = typeName.substring(1, typeName.length() - 1);
180 return typeName.replace("/", ".");