Home
last modified time | relevance | path

Searched refs:GetMajorVer (Results 1 – 6 of 6) sorted by relevance

/drivers/hdf_core/framework/tools/hdi-gen/codegen/
Dcpp_interface_code_emitter.cpp105 sb.AppendFormat("#define %s %u\n", majorVerName_.c_str(), ast_->GetMajorVer()); in EmitInterfaceVersionMacro()
220 …ppend(prefix + TAB).AppendFormat("%s = %d;\n", majorParam->GetName().c_str(), ast_->GetMajorVer()); in EmitInterfaceGetVersionMethod()
Dc_interface_code_emitter.cpp169 sb.AppendFormat("#define %s %u\n", majorVerName_.c_str(), ast_->GetMajorVer()); in EmitInterfaceVersionMacro()
Dcode_emitter.cpp160 …return StringHelper::Format("v%u_%u/%s", ast_->GetMajorVer(), ast_->GetMinorVer(), FileName(name).… in EmitVersionHeaderName()
Dcpp_client_proxy_code_emitter.cpp387 ….Append(prefix + TAB).AppendFormat("if (%s != %d) {\n", serMajorName.c_str(), ast_->GetMajorVer()); in EmitGetInstanceMethodImpl()
390 …sb.AppendFormat(", version of client:%d.%d\", __func__, ", ast_->GetMajorVer(), ast_->GetMinorVer(… in EmitGetInstanceMethodImpl()
/drivers/hdf_core/framework/tools/hdi-gen/ast/
Dast.h171 inline size_t GetMajorVer() const in GetMajorVer() function
/drivers/hdf_core/framework/tools/hdi-gen/parser/
Dparser.cpp1790 …if (extendsAst->GetMajorVer() != ast_->GetMajorVer() || extendsAst->GetMinorVer() >= ast_->GetMino… in CheckExtendsVersion()
1798 size_t majorVer = ast_->GetMajorVer(); in SetInterfaceVersion()
1845 version[0] = ast.second->GetMajorVer(); in GetGenVersion()
1849 … if (genPackageName != ast.second->GetPackageName() || version[0] != ast.second->GetMajorVer() || in GetGenVersion()