HomeSort by relevance Sort by last modified time
    Searched refs:typeName (Results 1 - 25 of 287) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
TypeNotPresentException.java 30 private String typeName;
37 * @param typeName
42 public TypeNotPresentException(String typeName, Throwable cause) {
43 super("Type " + typeName + " not present", cause);
44 this.typeName = typeName;
52 public String typeName() {
53 return typeName;
  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 105 static String classNameOnly(String typeName) {
106 int start = typeName.lastIndexOf(".");
108 return typeName;
110 return typeName.substring(start+1);
117 static String packageNameOnly(String typeName) {
118 int end = typeName.lastIndexOf(".");
123 return typeName.substring(0, end);
144 public static String ambiguousToBinaryName(String typeName, ApiList apiList) {
163 typeName = stripAngleBrackets(typeName);
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 45 public String format(String typeName) {
46 if (typeName.length() == 1) {
47 switch (typeName.charAt(0)) {
68 if (typeName.startsWith("L")) {
69 return typeName.substring(1, typeName.length() - 1).replace(
71 } else if (typeName.startsWith("[")) {
72 return format(typeName.substring(1)) + "[]";
75 System.err.println("Strange type in formatter: " + typeName);
76 return typeName;
    [all...]
DexParameterImpl.java 28 private final String typeName;
36 public DexParameterImpl(DexBuffer buffer, String typeName,
40 this.typeName = typeName;
61 return typeName;
  /frameworks/base/tools/preload/
Record.java 153 String vmTypeToLanguage(String typeName) {
154 // if the typename is (null), just return it as-is. This is probably in dexopt and
157 if ("(null)".equals(typeName)) {
158 return typeName;
161 if (!typeName.startsWith("L") || !typeName.endsWith(";") ) {
162 throw new AssertionError("Bad name: " + typeName + " in line " + sourceLineNumber);
165 typeName = typeName.substring(1, typeName.length() - 1)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstMethodRef.java 36 public String typeName() {
CstInterfaceMethodRef.java 43 public String typeName() {
Constant.java 41 public abstract String typeName();
CstEnumRef.java 43 public String typeName() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstMethodRef.java 36 public String typeName() {
CstInterfaceMethodRef.java 43 public String typeName() {
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstMethodRef.java 36 public String typeName() {
CstInterfaceMethodRef.java 43 public String typeName() {
  /libcore/luni/src/main/java/java/sql/
SQLData.java 84 * @param typeName
90 public void readSQL(SQLInput stream, String typeName) throws SQLException;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ItemType.java 52 private final String typeName;
61 * @param typeName {@code non-null;} name of the type
63 private ItemType(int mapValue, String typeName) {
65 this.typeName = typeName;
68 String human = typeName;
90 return typeName;
Item.java 46 public final String typeName() {
  /dalvik/dx/src/com/android/dx/dex/file/
ItemType.java 52 private final String typeName;
61 * @param typeName {@code non-null;} name of the type
63 private ItemType(int mapValue, String typeName) {
65 this.typeName = typeName;
68 String human = typeName;
90 return typeName;
Item.java 46 public final String typeName() {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ItemType.java 52 private final String typeName;
61 * @param typeName {@code non-null;} name of the type
63 private ItemType(int mapValue, String typeName) {
65 this.typeName = typeName;
68 String human = typeName;
90 return typeName;
Item.java 46 public final String typeName() {
  /external/webkit/Source/WebCore/dom/
ExceptionCode.cpp 251 const char* typeName;
261 typeName = "DOM Range";
269 typeName = "DOM Events";
277 typeName = "XMLHttpRequest";
287 typeName = "DOM XPath";
298 typeName = "DOM SVG";
308 typeName = "DOM SQL";
318 typeName = "DOM File";
328 typeName = "DOM IDBDatabase";
337 typeName = "DOM"
    [all...]
ExceptionBase.cpp 42 m_message = makeString(description.name, ": ", description.typeName, " Exception ", String::number(description.code));
44 m_message = makeString(description.typeName, " Exception ", String::number(description.code));
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.mm 50 if (strcmp(description.typeName, "DOM Range") == 0)
52 else if (strcmp(description.typeName, "DOM Events") == 0)
55 else if (strcmp(description.typeName, "DOM SVG") == 0)
58 else if (strcmp(description.typeName, "DOM XPath") == 0)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
TypeNotPresentExceptionTest.java 44 * @tests java.lang.TypeNotPresentException.typeName()
48 assertNull(e.typeName());
51 assertEquals(getClass().getName(), e.typeName());
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DexFileClassMap.java 49 public ClassDefItem getClassDefByName(String typeName) {
50 return definedClasses.get(typeName);

Completed in 939 milliseconds

1 2 3 4 5 6 7 8 91011>>