/frameworks/base/tools/preload/ |
D | Record.java | 167 String vmTypeToLanguage(String typeName) { in vmTypeToLanguage() argument 171 if ("(null)".equals(typeName)) { in vmTypeToLanguage() 172 return typeName; in vmTypeToLanguage() 175 if (!typeName.startsWith("L") || !typeName.endsWith(";") ) { in vmTypeToLanguage() 176 throw new AssertionError("Bad name: " + typeName + " in line " + sourceLineNumber); in vmTypeToLanguage() 179 typeName = typeName.substring(1, typeName.length() - 1); in vmTypeToLanguage() 180 return typeName.replace("/", "."); in vmTypeToLanguage()
|
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/ |
D | ParameterManagerWrapper.cpp | 116 void ParameterManagerWrapper::addCriterionType(const string &typeName, bool isInclusive) in addCriterionType() argument 118 ALOG_ASSERT(mPolicyCriterionTypes.find(typeName) == mPolicyCriterionTypes.end(), in addCriterionType() 119 "CriterionType %s already added", typeName.c_str()); in addCriterionType() 120 ALOGD("%s: Adding new criterionType %s", __FUNCTION__, typeName.c_str()); in addCriterionType() 122 mPolicyCriterionTypes[typeName] = mPfwConnector->createSelectionCriterionType(isInclusive); in addCriterionType() 126 const string &typeName, in addCriterionTypeValuePair() argument 130 ALOG_ASSERT(mPolicyCriterionTypes.find(typeName) != mPolicyCriterionTypes.end(), in addCriterionTypeValuePair() 131 "CriterionType %s not found", typeName.c_str()); in addCriterionTypeValuePair() 133 numericValue, literalValue.c_str(), typeName.c_str()); in addCriterionTypeValuePair() 134 ISelectionCriterionTypeInterface *criterionType = mPolicyCriterionTypes[typeName]; in addCriterionTypeValuePair() [all …]
|
/frameworks/base/core/java/com/android/internal/util/ |
D | TypedProperties.java | 110 static int interpretType(String typeName) { in interpretType() argument 111 if ("unset".equals(typeName)) { in interpretType() 113 } else if ("boolean".equals(typeName)) { in interpretType() 115 } else if ("byte".equals(typeName)) { in interpretType() 117 } else if ("short".equals(typeName)) { in interpretType() 119 } else if ("int".equals(typeName)) { in interpretType() 121 } else if ("long".equals(typeName)) { in interpretType() 123 } else if ("float".equals(typeName)) { in interpretType() 125 } else if ("double".equals(typeName)) { in interpretType() 127 } else if ("String".equals(typeName)) { in interpretType()
|
/frameworks/rs/ |
D | rsg_generator.c | 65 fprintf(f, "%s", vt->typeName); in printVarType() 171 if (api->sync || api->ret.typeName[0]) { in hasInlineDataPointers() 221 if (api->ret.typeName[0]) { in printApiCpp() 255 if (api->ret.typeName[0]) { in printApiCpp() 270 if (!api->ret.typeName[0]) { in printApiCpp() 320 if (api->ret.typeName[0] || api->sync) { in printApiCpp() 329 } else if (api->ret.typeName[0]) { in printApiCpp() 353 if (api->ret.typeName[0]) { in printApiCpp() 411 if (api->ret.typeName[0]) { in printPlaybackCpp() 423 vt->name, vt->typeName, vt->name); in printPlaybackCpp() [all …]
|
D | spec.h | 19 char typeName[256]; member
|
D | spec.l | 33 sprintf(currType->typeName, "%s", "size_t"); in checkPointerType() 167 memcpy(currType->typeName, yytext, yyleng);
|
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/include/ |
D | ParameterManagerWrapper.h | 151 void addCriterionType(const std::string &typeName, bool isInclusive); 160 void addCriterionTypeValuePair(const std::string &typeName, uint32_t numeric, 171 const std::string &typeName,
|
/frameworks/base/core/java/android/net/ |
D | NetworkInfo.java | 129 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) { in NetworkInfo() argument 135 mTypeName = typeName; in NetworkInfo() 470 String typeName = in.readString(); 472 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
|
/frameworks/native/cmds/rawbu/ |
D | backup.cpp | 546 const char* typeName = "?"; in restore_data() local 549 typeName = "dir"; in restore_data() 563 typeName = "file"; in restore_data() 597 typeName, path, statBuffer.st_mode, strerror(errno)); in restore_data() 604 typeName, path, (int)statBuffer.st_uid, (int)statBuffer.st_gid, strerror(errno)); in restore_data() 614 typeName, path, strerror(errno)); in restore_data()
|
/frameworks/rs/script_api/ |
D | GenerateHeaderFiles.cpp | 130 const string& typeName = type->getName(); in writeTypeSpecification() local 143 *file << "struct " << typeName << " _RS_OBJECT_DECL" << attribute; in writeTypeSpecification() 190 *file << " " << typeName << ";\n"; in writeTypeSpecification()
|
D | GenerateStubsWhiteList.cpp | 62 static string findSubstitute(const string& typeName, unsigned int apiLevel, int intSize) { in findSubstitute() argument 64 const auto type = types.find(typeName); in findSubstitute()
|
/frameworks/rs/rsov/compiler/spirit/ |
D | generate.py | 148 typeName = ty['kind'] 150 """ % (typeName, 151 enum_enumerants(typeName, ty['enumerants']))
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | PendingIntentRecord.java | 167 return "Key{" + typeName() + " pkg=" + packageName in toString() 174 String typeName() { in typeName() method in PendingIntentRecord.Key 432 pw.print(" type="); pw.print(key.typeName()); in dump() 482 sb.append(key.typeName()); in toString()
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | Serializer.cpp | 288 string typeName = getXmlAttribute(root, Attributes::type); in deserialize() local 289 if (typeName.empty()) { in deserialize() 293 ALOGV("%s: %s %s=%s", __FUNCTION__, tag, Attributes::type, typeName.c_str()); in deserialize() 304 if (!deviceFromString(typeName, type) || in deserialize()
|
/frameworks/base/core/java/android/view/ |
D | ViewStructure.java | 46 public abstract void setId(int id, String packageName, String typeName, String entryName); in setId() argument
|
/frameworks/av/media/vndk/xmlparser/1.0/ |
D | MediaCodecsXmlParser.cpp | 65 CodecInfo &codecInfo, const AString &typeName) { in findTypeInfo() argument 68 [typeName](const auto &typeInfo) { in findTypeInfo() 69 return typeInfo.mName == typeName; in findTypeInfo()
|
/frameworks/support/design/tests/src/android/support/design/testutils/ |
D | ViewStructureImpl.java | 103 public void setId(int id, String packageName, String typeName, String entryName) { in setId() argument
|
/frameworks/base/tools/aapt/ |
D | ResourceTable.cpp | 269 const String16& typeName, const String16& ident, int type, in appendTypeInfo() argument 278 outTable->appendTypeComment(pkg, typeName, ident, fullMsg); in appendTypeInfo() 284 outTable->appendTypeComment(pkg, typeName, ident, in appendTypeInfo() 1203 String16 typeName; in compileResourceFile() local 1209 typeName = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile() 1219 outTable->canAddEntry(srcPos, myPackage, typeName, name); in compileResourceFile() 2933 const String16 typeName(t->getName()); in flatten() local 2934 typeStrings.add(typeName, false); in flatten() 2939 String8 configTypeName(typeName); in flatten() 2953 if (typeName == mipmap16 && !isBase) { in flatten() [all …]
|
/frameworks/native/opengl/tools/glgen/src/ |
D | JniCodeEmitter.java | 176 String typeName = argType.getBaseType(); in emitFunctionCall() local 177 typeName = typeName.substring(9, typeName.length() - 6); in emitFunctionCall() 178 out.println(iii + indent + "get" + typeName + "Array(" + argName + "),"); in emitFunctionCall()
|
/frameworks/av/camera/ |
D | VendorTagDescriptor.cpp | 340 const char* typeName = (type >= 0 && type < NUM_TYPES) ? in dump() local 343 "", tag, name.string(), type, typeName, sectionName.string()); in dump()
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/ |
D | SetterStore.java | 424 for (String typeName : mStore.untaggableTypes.keySet()) { in clear() 425 if (classes.contains(mStore.untaggableTypes.get(typeName))) { in clear() 426 removedUntaggable.add(typeName); in clear()
|
/frameworks/base/tests/net/java/com/android/server/ |
D | ConnectivityServiceTest.java | 295 final String typeName = ConnectivityManager.getNetworkTypeName(type); in MockNetworkAgent() local 296 mNetworkInfo = new NetworkInfo(type, 0, typeName, "Mock"); in MockNetworkAgent() 312 mHandlerThread = new HandlerThread("Mock-" + typeName); in MockNetworkAgent() 315 "Mock-" + typeName, mNetworkInfo, mNetworkCapabilities, in MockNetworkAgent()
|
/frameworks/base/core/java/android/app/assist/ |
D | AssistStructure.java | 1455 public void setId(int id, String packageName, String typeName, String entryName) { in setId() argument 1458 mNode.mIdType = typeName; in setId()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | doclava.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/ccil/
org/ ... |
/frameworks/data-binding/prebuilds/1.0-rc0/ |
D | databinding-studio-bundle.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/databinding/
android/ ... |