Home
last modified time | relevance | path

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

/aosp12/system/tools/hidl/
H A DConstantExpression.h108 std::string cppValue() const;
114 std::string cppValue(ScalarType::Kind castKind) const;
H A DEnumType.cpp316 std::string value = entry->cppValue(scalarType->getKind()); in emitTypeDeclarations()
776 std::string value = entry->cppValue(scalarType->getKind()); in emitExportedHeader()
806 std::string EnumValue::cppValue(ScalarType::Kind castKind) const { in cppValue() function in android::EnumValue
808 return mValue->cppValue(castKind); in cppValue()
H A DArrayType.cpp103 arrayType += ", " + mSizes[i]->cppValue(); in getCppType()
126 result += mSizes[i]->cppValue(); in getInternalDataCppType()
H A 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
H A DEnumType.h156 std::string cppValue(ScalarType::Kind castKind) const;
H A DgenerateCpp.cpp1108 out << " | " << Interface::FLAG_ONE_WAY->cppValue(); in generateStaticProxyMethodSource()
1111 out << " | " << Interface::FLAG_CLEAR_BUF->cppValue(); in generateStaticProxyMethodSource()
H A DInterface.cpp303 [](const auto& e) { return e->cppValue(); }); in fillHashChainMethod()