Home
last modified time | relevance | path

Searched refs:ASTMapType (Results 1 – 3 of 3) sorted by relevance

/drivers/hdf_core/framework/tools/hdi-gen/ast/
Dast_map_type.cpp13 bool ASTMapType::IsMapType() in IsMapType()
18 bool ASTMapType::HasInnerType(TypeKind innerTypeKind) const in HasInnerType()
43 std::string ASTMapType::ToString() const in ToString()
48 TypeKind ASTMapType::GetTypeKind() in GetTypeKind()
53 std::string ASTMapType::EmitCType(TypeMode mode) const in EmitCType()
59 std::string ASTMapType::EmitCppType(TypeMode mode) const in EmitCppType()
79 std::string ASTMapType::EmitJavaType(TypeMode mode, bool isInnerType) const in EmitJavaType()
85 void ASTMapType::EmitCppWriteVar(const std::string &parcelName, const std::string &name, StringBuil… in EmitCppWriteVar()
102 void ASTMapType::EmitCppReadVar(const std::string &parcelName, const std::string &name, StringBuild… in EmitCppReadVar()
123 void ASTMapType::EmitCppMarshalling(const std::string &parcelName, const std::string &name, StringB… in EmitCppMarshalling()
[all …]
Dast_map_type.h17 class ASTMapType : public ASTType {
19 ASTMapType() : ASTType(TypeKind::TYPE_MAP, false), keyType_(), valueType_() {} in ASTMapType() function
/drivers/hdf_core/framework/tools/hdi-gen/parser/
Dparser.cpp929 AutoPtr<ASTMapType> mapType = new ASTMapType(); in ParseMapType()