Home
last modified time | relevance | path

Searched refs:getCppStackType (Results 1 – 12 of 12) sorted by relevance

/system/tools/hidl/
DRefType.cpp79 return mElementType->getCppStackType(specifyNamespaces) in getCppType()
130 std::string elementType = mElementType->getCppStackType(); in emitResolveReferencesEmbedded()
132 std::string baseType = getCppStackType(); in emitResolveReferencesEmbedded()
DVectorType.cpp94 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
149 std::string baseType = mElementType->getCppStackType(); in emitReaderWriter()
238 out << mElementType->getCppStackType(true /* specifyNamespaces */) in emitReaderWriterForVectorOfBinders()
297 std::string baseType = getCppStackType(); in emitReaderWriterEmbedded()
322 baseType = mElementType->getCppStackType(); in emitReaderWriterEmbedded()
417 std::string elementType = mElementType->getCppStackType(); in emitResolveReferencesEmbeddedHelper()
DEnumType.cpp249 const std::string storageType = scalarType->getCppStackType(); in emitTypeDeclarations()
281 const std::string storageType = scalarType->getCppStackType(); in emitTypeForwardDeclaration()
292 out << "template<> constexpr std::array<" << getCppStackType() << ", " << elementCount in emitIteratorDeclaration()
293 << "> hidl_enum_values<" << getCppStackType() << "> = "; in emitIteratorDeclaration()
313 const std::string storageType = scalarType->getCppStackType(); in emitEnumBitwiseOperator()
357 const std::string storageType = scalarType->getCppStackType(); in emitBitFieldBitwiseAssignmentOperator()
406 << "inline std::string toString<" << getCppStackType() << ">(" in emitPackageTypeHeaderDefinitions()
417 " == static_cast<" + scalarType->getCppStackType() + in emitPackageTypeHeaderDefinitions()
448 "static_cast<" + scalarType->getCppStackType() + ">(o)"); in emitPackageTypeHeaderDefinitions()
891 << "::toString<" << getEnumType()->getCppStackType() in emitDump()
DScalarType.cpp47 return getCppStackType(); in typeName()
194 << getCppStackType() in emitReaderWriterWithCast()
DArrayType.cpp94 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType()
120 std::string result = mElementType->getCppStackType(); in getInternalDataCppType()
159 std::string baseType = mElementType->getCppStackType(); in emitReaderWriter()
236 std::string baseType = mElementType->getCppStackType(); in emitReaderWriterEmbedded()
311 std::string baseType = mElementType->getCppStackType(); in emitResolveReferencesEmbedded()
DTypeDef.cpp78 << mReferencedType->getCppStackType() in emitTypeDeclarations()
DCompoundType.cpp241 out << discriminatorType->getCppStackType() in emitSafeUnionReaderWriterForInterfaces()
245 << discriminatorType->getCppStackType() in emitSafeUnionReaderWriterForInterfaces()
634 << field->type().getCppStackType() in emitSafeUnionTypeDeclarations()
639 out << field->type().getCppStackType() in emitSafeUnionTypeDeclarations()
679 out << field->type().getCppStackType() in emitSafeUnionTypeDeclarations()
732 out << field->type().getCppStackType() in emitTypeDeclarations()
753 out << field->type().getCppStackType() in emitTypeDeclarations()
991 << field->type().getCppStackType() in emitSafeUnionFieldConstructor()
1062 ? field->type().getCppStackType(true /* specifyNamespaces */) in getSafeUnionEnumElements()
1271 << field->type().getCppStackType() in emitSafeUnionTypeDefinitions()
[all …]
DFmqType.cpp36 mName + "<" + mElementType->getCppStackType(true) + ">"; in fullName()
DType.cpp662 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType() function in android::Type
675 return "(" + getCppStackType(specifyNamespaces) + ") " + objName; in getCppTypeCast()
DType.h166 std::string getCppStackType(bool specifyNamespaces = true) const;
DConstantExpression.cpp422 ScalarType(SK(INT64), nullptr /* parent */).getCppStackType() // "int64_t" in cppValue()
DgenerateCpp.cpp442 out << iface.getCppStackType() << " " << wrappedName << ";\n"; in wrapPassthroughArg()