Home
last modified time | relevance | path

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

/system/tools/hidl/
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()
DEnumType.cpp300 const std::string storageType = scalarType->getCppStackType(); in emitTypeDeclarations()
345 const std::string storageType = scalarType->getCppStackType(); in emitTypeForwardDeclaration()
361 out << "template<> inline constexpr std::array<" << getCppStackType() << ", " << elementCount in emitIteratorDeclaration()
362 << "> hidl_enum_values<" << getCppStackType() << "> = "; in emitIteratorDeclaration()
384 const std::string storageType = scalarType->getCppStackType(); in emitEnumBitwiseOperator()
428 const std::string storageType = scalarType->getCppStackType(); in emitBitFieldBitwiseAssignmentOperator()
478 << "inline std::string toString<" << getCppStackType() << ">(" in emitPackageTypeHeaderDefinitions()
489 " == static_cast<" + scalarType->getCppStackType() + in emitPackageTypeHeaderDefinitions()
520 "static_cast<" + scalarType->getCppStackType() + ">(o)"); in emitPackageTypeHeaderDefinitions()
963 << "::toString<" << getEnumType()->getCppStackType() in emitDump()
DScalarType.cpp52 return getCppStackType(); in typeName()
225 << getCppStackType() in emitReaderWriterWithCast()
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()
DTypeDef.cpp77 out << "typedef " << mReferencedType->getCppStackType() << " " << definedName() << ";\n\n"; in emitTypeDeclarations()
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 …]
DFmqType.cpp42 mName + "<" + mElementType->getCppStackType(true) + ">"; in fullName()
DType.cpp632 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType() function in android::Type
645 return "static_cast<" + getCppStackType(specifyNamespaces) + ">(" + objName + ")"; in getCppTypeCast()
DType.h169 std::string getCppStackType(bool specifyNamespaces = true) const;
DConstantExpression.cpp431 ScalarType(SK(INT64), nullptr /* parent */).getCppStackType() // "int64_t" in cppValue()
DgenerateCpp.cpp442 out << iface.getCppStackType() << " " << wrappedName << ";\n"; in wrapPassthroughArg()