Home
last modified time | relevance | path

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

/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/cpp/
H A Dsa_cpp_interface_code_emitter.cpp110 AutoPtr<ASTSequenceableType> seqType = ast_->GetSequenceableDef(i); in EmitInterfaceSelfDefinedTypeInclusions() local
111 filePath = GetFilePathNoPoint(seqType->GetNamespace()->ToString()); in EmitInterfaceSelfDefinedTypeInclusions()
112 fileName = filePath.empty() ? FileName(seqType->GetName()) : FileName(filePath); in EmitInterfaceSelfDefinedTypeInclusions()
135 AutoPtr<ASTSequenceableType> seqType = ast_->GetSequenceableDef(i); in EmitInterfaceUsings() local
136 np = GetNamespace(seqType->GetNamespace()->ToString()); in EmitInterfaceUsings()
140 fullName = CppFullName(np + seqType->GetName()); in EmitInterfaceUsings()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/metadata/
H A Dmetadata_reader.cpp98 AutoPtr<ASTSequenceableType> seqType = new ASTSequenceableType(); in ReadMetaSequenceable() local
100 seqType->SetName(std::string(reinterpret_cast<char*>(mp->name_))); in ReadMetaSequenceable()
101seqType->SetNamespace(ast_->ParseNamespace(std::string(reinterpret_cast<char*>(mp->namespace_)))); in ReadMetaSequenceable()
103 seqAst->SetFullName(seqType->GetFullName()); in ReadMetaSequenceable()
104 seqAst->AddSequenceableDef(seqType); in ReadMetaSequenceable()
107 ast_->AddSequenceableDef(seqType); in ReadMetaSequenceable()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/ts/
H A Dsa_ts_code_emitter.cpp126 AutoPtr<ASTSequenceableType> seqType = ast_->GetSequenceableDef(i); in EmitInterfaceSelfDefinedTypeImports() local
127 sb.AppendFormat("import %s from \"./%s\";\n", seqType->GetName().c_str(), in EmitInterfaceSelfDefinedTypeImports()
128 FileName(seqType->GetName()).c_str()); in EmitInterfaceSelfDefinedTypeImports()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/rust/
H A Dsa_rust_interface_code_emitter.cpp99 AutoPtr<ASTSequenceableType> seqType = ast_->GetSequenceableDef(i); in EmitCustomHeaders() local
100 bool addPathMsRes = AppendRealPath(sb, seqType->GetFullName()); in EmitCustomHeaders()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/parser/
H A Dparser.cpp360 AutoPtr<ASTSequenceableType> seqType = new ASTSequenceableType(); in ParseSequenceableInfo() local
363 seqType->SetName(seqName.substr(index + 1)); in ParseSequenceableInfo()
364 seqType->SetNamespace(ast_->ParseNamespace(seqName)); in ParseSequenceableInfo()
366 seqType->SetName(seqName); in ParseSequenceableInfo()
367 seqType->SetNamespace(ast_->ParseNamespace("")); in ParseSequenceableInfo()
372 seqAst->AddSequenceableDef(seqType); in ParseSequenceableInfo()
375 ast_->AddSequenceableDef(seqType); in ParseSequenceableInfo()
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/parser/
H A Dparser.cpp262 AutoPtr<ASTSequenceableType> seqType = new ASTSequenceableType(); in ParseSequenceableInfo() local
265 seqType->SetName(seqName.substr(index + 1)); in ParseSequenceableInfo()
266 seqType->SetNamespace(ast_->ParseNamespace(seqName)); in ParseSequenceableInfo()
268 seqType->SetName(seqName); in ParseSequenceableInfo()
273 seqAst->AddSequenceableDef(seqType); in ParseSequenceableInfo()
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_manager.c1789 AuthLinkType seqType = ConvertToAuthLinkType(type); in AuthGetLatestAuthSeqListByType() local
1790 if (seqType == AUTH_LINK_TYPE_MAX) { in AuthGetLatestAuthSeqListByType()
1796 seqList[0] = authClient->lastAuthSeq[seqType]; in AuthGetLatestAuthSeqListByType()
1800 seqList[1] = authServer->lastAuthSeq[seqType]; in AuthGetLatestAuthSeqListByType()