Home
last modified time | relevance | path

Searched refs:cppValue (Results 1 – 7 of 7) sorted by relevance

/system/tools/hidl/
DConstantExpression.h108 std::string cppValue() const;
114 std::string cppValue(ScalarType::Kind castKind) const;
DEnumType.cpp300 std::string value = entry->cppValue(scalarType->getKind()); in emitTypeDeclarations()
760 std::string value = entry->cppValue(scalarType->getKind()); in emitExportedHeader()
790 std::string EnumValue::cppValue(ScalarType::Kind castKind) const { in cppValue() function in android::EnumValue
792 return mValue->cppValue(castKind); in cppValue()
DArrayType.cpp103 arrayType += ", " + mSizes[i]->cppValue(); in getCppType()
126 result += mSizes[i]->cppValue(); in getInternalDataCppType()
DConstantExpression.cpp408 std::string ConstantExpression::cppValue() const { in cppValue() function in android::ConstantExpression
409 return cppValue(mValueKind); in cppValue()
412 std::string ConstantExpression::cppValue(ScalarType::Kind castKind) const { in cppValue() function in android::ConstantExpression
DEnumType.h154 std::string cppValue(ScalarType::Kind castKind) const;
DInterface.cpp299 [](const auto& e) { return e->cppValue(); }); in fillHashChainMethod()
DgenerateCpp.cpp1098 out << ", " << Interface::FLAG_ONE_WAY->cppValue(); in generateStaticProxyMethodSource()