Home
last modified time | relevance | path

Searched refs:TParams (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/ncurses/progs/
H A Dtparm_type.c43 TParams
51 TParams result = Numbers; in tparm_type()
54 TParams code; in tparm_type()
79 TParams
82 TParams result = Other; in guess_tparm_type()
H A Dtparm_type.h52 } TParams; typedef
54 extern TParams tparm_type(const char *name);
55 extern TParams guess_tparm_type(int nparam, char **p_is_s);
H A Dtput.c251 TParams paramType; in tput_cmd()
H A Dtic.c2251 TParams expect; in check_1_infotocap()
2252 TParams actual; in check_1_infotocap()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp93 SmallVector<const TParamCommandComment *, 4> TParams; member
164 TParams.push_back(TPCC); in FullCommentParts()
195 llvm::stable_sort(TParams, TParamCommandCommentComparePosition()); in FullCommentParts()
465 if (Parts.TParams.size() != 0) { in visitFullComment()
467 for (unsigned i = 0, e = Parts.TParams.size(); i != e; ++i) in visitFullComment()
468 visit(Parts.TParams[i]); in visitFullComment()
978 if (Parts.TParams.size() != 0) { in visitFullComment()
980 for (unsigned i = 0, e = Parts.TParams.size(); i != e; ++i) in visitFullComment()
981 visit(Parts.TParams[i]); in visitFullComment()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp362 DINodeArray TParams, uint32_t AlignInBits, in createTemplateAlias() argument
367 TParams.get(), Annotations); in createTemplateAlias()
859 DITemplateParameterArray TParams, DISubprogram *Decl, in createFunction() argument
866 SPFlags, IsDefinition ? CUNode : nullptr, TParams, Decl, nullptr, in createFunction()
879 DITemplateParameterArray TParams, DISubprogram *Decl, in createTempFunctionFwdDecl() argument
885 IsDefinition ? CUNode : nullptr, TParams, in createTempFunctionFwdDecl()
894 DISubprogram::DISPFlags SPFlags, DITemplateParameterArray TParams, in createMethod() argument
904 Flags, SPFlags, IsDefinition ? CUNode : nullptr, TParams, nullptr, in createMethod()
1207 DINodeArray TParams) { in replaceArrays() argument
1212 if (TParams) in replaceArrays()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h326 DINodeArray TParams,
806 DITemplateParameterArray TParams = nullptr,
819 DITemplateParameterArray TParams = nullptr,
848 DITemplateParameterArray TParams = nullptr,
1040 DINodeArray TParams = DINodeArray());
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp402 SmallVector<Type *, 2> TParams; in cloneInstruction() local
412 TParams.push_back(OldInst.getType()); in cloneInstruction()
414 TParams.push_back(OldInst.getOperand(I - 1)->getType()); in cloneInstruction()
428 Intrinsic::getDeclaration(NewFunc->getParent(), CIID, TParams); in cloneInstruction()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp546 ArrayRef<NamedDecl *> TParams, SourceLocation RAngleLoc, in ActOnLambdaExplicitTemplateParameterList() argument
555 assert(!TParams.empty() && in ActOnLambdaExplicitTemplateParameterList()
557 LSI->TemplateParams.append(TParams.begin(), TParams.end()); in ActOnLambdaExplicitTemplateParameterList()
558 LSI->NumExplicitTemplateParams = TParams.size(); in ActOnLambdaExplicitTemplateParameterList()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h236 void addTemplateParams(DIE &Buffer, DINodeArray TParams);
H A DDwarfUnit.cpp516 void DwarfUnit::addTemplateParams(DIE &Buffer, DINodeArray TParams) { in addTemplateParams() argument
518 for (const auto *Element : TParams) { in addTemplateParams()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1087 const TemplateParameterList *TParams = in VisitCXXRecordDecl() local
1092 printTemplateArguments(TArgAsWritten->arguments(), TParams); in VisitCXXRecordDecl()
1094 printTemplateArguments(S->getTemplateArgs().asArray(), TParams); in VisitCXXRecordDecl()
H A DTypePrinter.cpp1505 const TemplateParameterList *TParams = in printTag() local
1512 TParams); in printTag()
1515 TParams); in printTag()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h448 void setTemplateParameters(TemplateParameterList *TParams) { in setTemplateParameters() argument
449 TemplateParams = TParams; in setTemplateParameters()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp2267 MultiTemplateParamsArg TParams; in ParseClassSpecifier() local
2269 TParams = in ParseClassSpecifier()
2277 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier()
H A DParseDecl.cpp5473 MultiTemplateParamsArg TParams; in ParseEnumSpecifier() local
5491 TParams = MultiTemplateParamsArg(TemplateInfo.TemplateParams->data(), in ParseEnumSpecifier()
5493 SS.setTemplateParamLists(TParams); in ParseEnumSpecifier()
5542 TParams, Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h8818 ArrayRef<NamedDecl *> TParams,