/frameworks/base/libs/rs/ |
H A D | spec.h | 19 char typeName[256]; member in struct:__anon213
|
/frameworks/base/tools/preload/ |
H A D | Record.java | 137 String vmTypeToLanguage(String typeName) { argument 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); 150 return typeName [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
H A D | uexception.cpp | 269 char typeName [256]; local 270 strncpy (typeName, m_TypeName, VectorSize(typeName)); 271 typeName[VectorSize(typeName)-1] = 0; 274 msgbuf.format (fmt, demangle_type_name (VectorBlock(typeName)), m_Operation, m_Offset, m_Expected, m_Remaining); 276 try { msgbuf.format (fmt, demangle_type_name (VectorBlock(typeName)), m_Operation, m_Offset, m_Expected, m_Remaining); } catch (...) {}
|
/frameworks/base/core/java/android/net/ |
H A D | NetworkInfo.java | 124 NetworkInfo(int type, int subtype, String typeName, String subtypeName) { argument 130 mTypeName = typeName; 359 String typeName = in.readString(); 361 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
|
H A D | NetworkStateTracker.java | 71 String typeName, 78 this.mNetworkInfo = new NetworkInfo(networkType, subType, typeName, subtypeName); 67 NetworkStateTracker(Context context, Handler target, int networkType, int subType, String typeName, String subtypeName) argument
|
/frameworks/base/core/java/com/android/internal/util/ |
H A D | TypedProperties.java | 106 * @param typeName the type name to convert 107 * @return the type constant that corresponds to {@code typeName}, 110 static int interpretType(String typeName) { argument 111 if ("unset".equals(typeName)) { 113 } else if ("boolean".equals(typeName)) { 115 } else if ("byte".equals(typeName)) { 117 } else if ("short".equals(typeName)) { 119 } else if ("int".equals(typeName)) { 121 } else if ("long".equals(typeName)) { 123 } else if ("float".equals(typeName)) { [all...] |
/frameworks/base/services/java/com/android/server/am/ |
H A D | PendingIntentRecord.java | 147 return "Key{" + typeName() + " pkg=" + packageName 153 String typeName() { method in class:PendingIntentRecord.Key 289 pw.print(" type="); pw.print(key.typeName()); 319 sb.append(key.typeName());
|
/frameworks/base/cmds/rawbu/ |
H A D | backup.cpp | 529 const char* typeName = "?"; local 532 typeName = "dir"; 546 typeName = "file"; 580 typeName, path, statBuffer.st_mode, strerror(errno)); 587 typeName, path, (int)statBuffer.st_uid, (int)statBuffer.st_gid, strerror(errno)); 597 typeName, path, strerror(errno));
|
/frameworks/base/tools/aapt/ |
H A D | ResourceTable.cpp | 217 const String16& typeName, const String16& ident, int type, 226 outTable->appendTypeComment(pkg, typeName, ident, fullMsg); 232 outTable->appendTypeComment(pkg, typeName, ident, 985 String16 typeName; local 991 typeName = String16(block.getAttributeStringValue(typeIdx, &len)); 1001 outTable->canAddEntry(srcPos, myPackage, typeName, name); 2637 String16 typeName(p->getTypeStrings().stringAt(ti, &len)); 2638 sp<Type> t = p->getTypes().valueFor(typeName); 2639 LOG_ALWAYS_FATAL_IF(t == NULL && typeName != String16("<empty>"), 2641 String8(typeName) [all...] |