Home
last modified time | relevance | path

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

/aosp12/system/tools/hidl/
H A DEnumType.cpp300 const std::string storageType = scalarType->getCppStackType(); in emitTypeDeclarations()
328 const std::string storageType = scalarType->getCppStackType(); in emitTypeForwardDeclaration()
344 out << "template<> inline constexpr std::array<" << getCppStackType() << ", " << elementCount in emitIteratorDeclaration()
345 << "> hidl_enum_values<" << getCppStackType() << "> = "; in emitIteratorDeclaration()
367 const std::string storageType = scalarType->getCppStackType(); in emitEnumBitwiseOperator()
411 const std::string storageType = scalarType->getCppStackType(); in emitBitFieldBitwiseAssignmentOperator()
461 << "inline std::string toString<" << getCppStackType() << ">(" in emitPackageTypeHeaderDefinitions()
472 " == static_cast<" + scalarType->getCppStackType() + in emitPackageTypeHeaderDefinitions()
503 "static_cast<" + scalarType->getCppStackType() + ">(o)"); in emitPackageTypeHeaderDefinitions()
946 << "::toString<" << getEnumType()->getCppStackType() in emitDump()
H A DVectorType.cpp94 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
148 std::string baseType = mElementType->getCppStackType(); in emitReaderWriter()
237 out << mElementType->getCppStackType(true /* specifyNamespaces */) in emitReaderWriterForVectorOfBinders()
296 std::string baseType = getCppStackType(); in emitReaderWriterEmbedded()
321 baseType = mElementType->getCppStackType(); in emitReaderWriterEmbedded()
H A DArrayType.cpp97 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType()
123 std::string result = mElementType->getCppStackType(); in getInternalDataCppType()
162 std::string baseType = mElementType->getCppStackType(); in emitReaderWriter()
239 std::string baseType = mElementType->getCppStackType(); in emitReaderWriterEmbedded()
H A DScalarType.cpp52 return getCppStackType(); in typeName()
225 << getCppStackType() in emitReaderWriterWithCast()
H A DCompoundType.cpp248 out << discriminatorType->getCppStackType() in emitSafeUnionReaderWriterForInterfaces()
252 << discriminatorType->getCppStackType() in emitSafeUnionReaderWriterForInterfaces()
519 << field->type().getCppStackType(true /*specifyNamespaces*/) in emitSafeUnionTypeDeclarations()
545 << field->type().getCppStackType() in emitSafeUnionTypeDeclarations()
550 out << field->type().getCppStackType() in emitSafeUnionTypeDeclarations()
589 out << field->type().getCppStackType() in emitSafeUnionTypeDeclarations()
705 out << field->type().getCppStackType() in emitTypeDeclarations()
727 out << field->type().getCppStackType() in emitTypeDeclarations()
951 << field->type().getCppStackType() in emitSafeUnionFieldConstructor()
1168 << field->type().getCppStackType() in emitSafeUnionTypeDefinitions()
[all …]
H A DTypeDef.cpp77 out << "typedef " << mReferencedType->getCppStackType() << " " << definedName() << ";\n\n"; in emitTypeDeclarations()
H A DFmqType.cpp42 mName + "<" + mElementType->getCppStackType(true) + ">"; in fullName()
H A DType.cpp632 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType() function in android::Type
645 return "(" + getCppStackType(specifyNamespaces) + ") " + objName; in getCppTypeCast()
H A DType.h169 std::string getCppStackType(bool specifyNamespaces = true) const;
H A DConstantExpression.cpp425 ScalarType(SK(INT64), nullptr /* parent */).getCppStackType() // "int64_t" in cppValue()
H A DgenerateCpp.cpp438 out << iface.getCppStackType() << " " << wrappedName << ";\n"; in wrapPassthroughArg()