Home
last modified time | relevance | path

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

/ohos5.0/foundation/ability/idl_tool/parser/
H A Dparser.cpp541 type = module_->FindType(lexer_.DumpToken()); in ParseType()
552 type = module_->FindType(lexer_.GetIdentifier()); in ParseType()
581 type = module_->FindType(arrayType->ToString()); in ParseType()
618 AutoPtr<ASTType> ret = module_->FindType(list->ToString()); in ParseList()
668 AutoPtr<ASTType> ret = module_->FindType(map->ToString()); in ParseMap()
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast.cpp154 AutoPtr<ASTType> AST::FindType(const std::string &typeName, bool lookImports) in FindType() function in OHOS::HDI::AST
178 type = importPair.second->FindType(typeName, false); in FindType()
H A Dast.h134 AutoPtr<ASTType> FindType(const std::string &typeName, bool lookImports = true);
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/ast/
H A Dast.cpp227 AutoPtr<ASTType> AST::FindType(const std::string &typeName, bool lookImports) in FindType() function in OHOS::Idl::AST
251 type = importPair.second->FindType(typeName, false); in FindType()
H A Dast.h154 AutoPtr<ASTType> FindType(const std::string &typeName, bool lookImports = true);
/ohos5.0/foundation/ability/idl_tool/ast/
H A Dast_module.h97 AutoPtr<ASTType> FindType(const String& typeName);
H A Dast_module.cpp180 AutoPtr<ASTType> ASTModule::FindType(const String& typeName) in FindType() function in OHOS::Idl::ASTModule
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/parser/
H A Dparser.cpp728 if (token.kind == TokenType::ID && ast_->FindType(token.value) == nullptr) { in ParseMethodReturnType()
783 AutoPtr<ASTType> type = ast_->FindType("unsigned int"); in CreateGetVersionMethod()
1041 type = ast_->FindType(token.value); in ParseBasicType()
1059 type = ast_->FindType(namePrefix + " " + token.value); in ParseUnsignedType()
1087 AutoPtr<ASTType> retType = ast_->FindType(arrayType->ToString(), false); in ParseArrayType()
1121 AutoPtr<ASTType> retType = ast_->FindType(listType->ToString(), false); in ParseListType()
1171 AutoPtr<ASTType> retType = ast_->FindType(mapType->ToString(), false); in ParseMapType()
1228 return ast_->FindType(token.value); in ParseUserDefType()
1237 AutoPtr<ASTType> type = ast_->FindType(token.value); in ParseUserDefType()
1290 return ast_->FindType("int"); in ParseEnumBaseType()
/ohos5.0/foundation/ability/idl_tool/test/unittest/ast_module_test/
H A Dast_module_test.cpp147 AutoPtr<ASTType> result = module->FindType(typeName);
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/parser/
H A Dparser.cpp612 AutoPtr<ASTType> type = ast_->FindType("unsigned int"); in CreateGetVersionMethod()
822 type = ast_->FindType(token.value); in ParseBasicType()
840 type = ast_->FindType(namePrefix + " " + token.value); in ParseUnsignedType()
987 return ast_->FindType(token.value); in ParseUserDefType()
999 AutoPtr<ASTType> type = ast_->FindType(typeName); in ParseUserDefType()
1053 baseType = ast_->FindType("int"); in ParseEnumBaseType()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/metadata/
H A Dmetadata_reader.cpp171 AutoPtr<ASTType> astType = ast_->FindType(typeName); in ReadMetaType()