Searched refs:typeName (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tools/preload/
H A DRecord.java137 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/libs/rs/
H A Dspec.h19 char typeName[256]; member in struct:__anon257
H A Drsg_generator.c48 fprintf(f, "%s", vt->typeName);
171 if (api->ret.typeName[0]) {
181 if (api->ret.typeName[0]) {
218 if (api->ret.typeName[0]) {
H A Dspec.l138 memcpy(currType->typeName, yytext, yyleng);
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java106 * @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/core/java/android/net/
H A DNetworkInfo.java124 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 DNetworkStateTracker.java75 String typeName,
82 this.mNetworkInfo = new NetworkInfo(networkType, subType, typeName, subtypeName);
71 NetworkStateTracker(Context context, Handler target, int networkType, int subType, String typeName, String subtypeName) argument
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java147 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 Dbackup.cpp529 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/opengl/tools/glgen/src/
H A DJniCodeEmitter.java164 String typeName = argType.getBaseType();
165 typeName = typeName.substring(9, typeName.length() - 6);
166 out.println(iii + indent + "get" + typeName + "Array(" + argName + "),");
/frameworks/base/tools/aapt/
H A DResourceTable.cpp217 const String16& typeName, const String16& ident, int type,
226 outTable->appendTypeComment(pkg, typeName, ident, fullMsg);
232 outTable->appendTypeComment(pkg, typeName, ident,
1063 String16 typeName; local
1069 typeName = String16(block.getAttributeStringValue(typeIdx, &len));
1079 outTable->canAddEntry(srcPos, myPackage, typeName, name);
2732 String16 typeName(p->getTypeStrings().stringAt(ti, &len));
2733 sp<Type> t = p->getTypes().valueFor(typeName);
2734 LOG_ALWAYS_FATAL_IF(t == NULL && typeName != String16("<empty>"),
2736 String8(typeName)
[all...]

Completed in 183 milliseconds