Searched refs:GetMinorVer (Results 1 - 7 of 7) sorted by relevance
/foundation/ability/idl_tool/idl_tool_2/codegen/HDI/cpp/ |
H A D | cpp_interface_code_emitter.cpp | 113 sb.AppendFormat("#define %s %u\n", minorVerName_.c_str(), ast_->GetMinorVer());
in EmitInterfaceVersionMacro() 257 sb.Append(prefix + TAB).AppendFormat("%s = %d;\n", minorParam->GetName().c_str(), ast_->GetMinorVer());
in EmitInterfaceGetVersionMethod()
|
H A D | cpp_client_proxy_code_emitter.cpp | 526 sb.AppendFormat(", version of client:%d.%d\", __func__, ", ast_->GetMajorVer(), ast_->GetMinorVer());
in EmitGetInstanceMethodInitProxyImpl() 714 sb.AppendFormat(", version of client:%d.%d\", __func__, ", ast_->GetMajorVer(), ast_->GetMinorVer());
in EmitProxyCastFromMethodImplTemplate()
|
/foundation/ability/idl_tool/idl_tool_2/parser/ |
H A D | parser.h | 41 return lhs->GetMinorVer() < rhs->GetMinorVer();
in operator ()()
|
H A D | parser.cpp | 563 interfaceType->SetVersion(ast_->GetMajorVer(), ast_->GetMinorVer());
in ParseInterface() 1984 if (extendsAst->GetMajorVer() != ast_->GetMajorVer() || extendsAst->GetMinorVer() >= ast_->GetMinorVer()) {
in CheckExtendsVersion() 1992 if (extendsAst->GetMajorVer() != ast_->GetMajorVer() || extendsAst->GetMinorVer() > ast_->GetMinorVer()) {
in CheckImportsVersion() 2037 version[1] = ast.second->GetMinorVer();
in GetGenVersion() 2041 version[1] != ast.second->GetMinorVer()) {
in GetGenVersion()
|
/foundation/ability/idl_tool/idl_tool_2/ast/ |
H A D | ast.h | 196 inline size_t GetMinorVer() const in GetMinorVer() function in OHOS::Idl::AST
|
/foundation/ability/idl_tool/idl_tool_2/codegen/ |
H A D | code_emitter.cpp | 123 return StringHelper::Format("v%u_%u/%s", ast_->GetMajorVer(), ast_->GetMinorVer(), FileName(name).c_str());
in EmitVersionHeaderName()
|
/foundation/ability/idl_tool/idl_tool_2/codegen/HDI/c/ |
H A D | c_interface_code_emitter.cpp | 177 sb.AppendFormat("#define %s %u\n", minorVerName_.c_str(), ast_->GetMinorVer());
in EmitInterfaceVersionMacro()
|
Completed in 7 milliseconds