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

/frameworks/base/tools/preload/
H A DRecord.java157 String vmTypeToLanguage(String typeName) { argument
161 if ("(null)".equals(typeName)) {
162 return typeName;
165 if (!typeName.startsWith("L") || !typeName.endsWith(";") ) {
166 throw new AssertionError("Bad name: " + typeName + " in line " + sourceLineNumber);
169 typeName = typeName.substring(1, typeName.length() - 1);
170 return typeName
[all...]
/frameworks/rs/
H A Dspec.h19 char typeName[256]; member in struct:__anon1567
H A Dspec.l33 sprintf(currType->typeName, "%s", "size_t");
167 memcpy(currType->typeName, yytext, yyleng);
H A Drsg_generator.c47 fprintf(f, "%s", vt->typeName);
161 if (api->sync || api->ret.typeName[0]) {
211 if (api->ret.typeName[0]) {
270 if (api->ret.typeName[0] || api->sync) {
279 } else if (api->ret.typeName[0]) {
349 if (api->ret.typeName[0]) {
383 if (api->ret.typeName[0]) {
438 if (api->ret.typeName[0]) {
449 fprintf(f, ",\n (const %s *)&baseData[(intptr_t)cmd->%s]", vt->typeName, vt->name);
467 } else if (api->ret.typeName[
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A Dspec.h19 char typeName[256]; member in struct:__anon1596
H A Dspec.l33 sprintf(currType->typeName, "%s", "size_t");
167 memcpy(currType->typeName, yytext, yyleng);
H A Drsg_generator.c47 fprintf(f, "%s", vt->typeName);
161 if (api->sync || api->ret.typeName[0]) {
211 if (api->ret.typeName[0]) {
270 if (api->ret.typeName[0] || api->sync) {
279 } else if (api->ret.typeName[0]) {
349 if (api->ret.typeName[0]) {
383 if (api->ret.typeName[0]) {
438 if (api->ret.typeName[0]) {
449 fprintf(f, ",\n (const %s *)&baseData[(intptr_t)cmd->%s]", vt->typeName, vt->name);
467 } else if (api->ret.typeName[
[all...]
/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.java137 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) { argument
143 mTypeName = typeName;
446 String typeName = in.readString();
448 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
/frameworks/base/cmds/rawbu/
H A Dbackup.cpp546 const char* typeName = "?"; local
549 typeName = "dir";
563 typeName = "file";
597 typeName, path, statBuffer.st_mode, strerror(errno));
604 typeName, path, (int)statBuffer.st_uid, (int)statBuffer.st_gid, strerror(errno));
614 typeName, path, strerror(errno));
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java161 return "Key{" + typeName() + " pkg=" + packageName
168 String typeName() { method in class:PendingIntentRecord.Key
329 pw.print(" type="); pw.print(key.typeName());
359 sb.append(key.typeName());
/frameworks/base/tools/aapt/
H A DResourceTable.cpp218 const String16& typeName, const String16& ident, int type,
227 outTable->appendTypeComment(pkg, typeName, ident, fullMsg);
233 outTable->appendTypeComment(pkg, typeName, ident,
1108 String16 typeName; local
1114 typeName = String16(block.getAttributeStringValue(typeIdx, &len));
1124 outTable->canAddEntry(srcPos, myPackage, typeName, name);
2620 const String16 typeName(t->getName());
2621 typeStrings.add(typeName, false);
2625 String8 configTypeName(typeName);
2636 const bool filterable = (typeName !
[all...]
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java176 String typeName = argType.getBaseType();
177 typeName = typeName.substring(9, typeName.length() - 6);
178 out.println(iii + indent + "get" + typeName + "Array(" + argName + "),");

Completed in 1091 milliseconds