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

1 2 3 4 5

  /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 137 String vmTypeToLanguage(String typeName) {
138 // if the typename is (null), just return it as-is. This is probably in dexopt and
141 if ("(null)".equals(typeName)) {
142 return typeName;
145 if (!typeName.startsWith("L") || !typeName.endsWith(";") ) {
146 throw new AssertionError("Bad name: " + typeName + " in line " + sourceLineNumber);
149 typeName = typeName.substring(1, typeName.length() - 1)
    [all...]
  /dalvik/dx/src/com/android/dx/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() {
CstBoolean.java 82 public String typeName() {
CstKnownNull.java 67 public String typeName() {
CstLong.java 70 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;
  /external/webkit/WebCore/dom/
ExceptionBase.cpp 40 m_message = String::format("%s: %s Exception %d", description.name, description.typeName, description.code);
42 m_message = String::format("%s Exception %d", description.typeName, description.code);
ExceptionCode.cpp 152 const char* typeName;
162 typeName = "DOM Range";
170 typeName = "DOM Events";
178 typeName = "XMLHttpRequest";
188 typeName = "DOM XPath";
199 typeName = "DOM SVG";
208 typeName = "DOM";
215 description.typeName = 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() {
Statistics.java 45 String typeName = item.typeName();
46 Data data = dataMap.get(typeName);
49 dataMap.put(typeName, new Data(item, typeName));
  /external/webkit/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)
  /frameworks/base/libs/rs/
spec.h 19 char typeName[256];
  /libcore/luni/src/test/java/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/webkit/WebCore/page/mac/
WebDashboardRegion.m 66 static const char* typeName(WebDashboardRegionType type)
83 return [NSString stringWithFormat:@"rect:%@ clip:%@ type:%s", NSStringFromRect(rect), NSStringFromRect(clip), typeName(type)];
  /build/tools/droiddoc/src/
ParameterInfo.java 23 ParameterInfo(String name, String typeName, TypeInfo type, SourcePositionInfo position)
26 mTypeName = typeName;
41 String typeName()
  /external/emma/core/java12/com/vladium/emma/report/
Item.java 114 ItemMetadata (final int typeID, final String typeName, final long attributeIDs)
117 if ($assert.ENABLED) $assert.ASSERT (typeName != null, "typeName = null");
121 m_typeName = typeName;
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 111 public static int type(String typeName)
115 if (typeName.length() != 4)
120 val |= (byte) typeName.charAt(i);

Completed in 477 milliseconds

1 2 3 4 5