Home
last modified time | relevance | path

Searched refs:HasDefaultArg (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp3317 bool HasDefaultArg = false; in AddTemplateParameterChunks() local
3333 HasDefaultArg = TTP->hasDefaultArgument(); in AddTemplateParameterChunks()
3339 HasDefaultArg = NTTP->hasDefaultArgument(); in AddTemplateParameterChunks()
3352 HasDefaultArg = TTP->hasDefaultArgument(); in AddTemplateParameterChunks()
3355 if (HasDefaultArg && !InDefaultArg) { in AddTemplateParameterChunks()
3771 bool HasDefaultArg = false; in createCodeCompletionStringForDecl() local
3775 HasDefaultArg = TTP->hasDefaultArgument(); in createCodeCompletionStringForDecl()
3778 HasDefaultArg = NTTP->hasDefaultArgument(); in createCodeCompletionStringForDecl()
3781 HasDefaultArg = in createCodeCompletionStringForDecl()
3785 if (!HasDefaultArg) in createCodeCompletionStringForDecl()
H A DSemaTemplate.cpp5285 ArrayRef<TemplateArgument> CanonicalConverted, bool &HasDefaultArg) { in SubstDefaultTemplateArgumentIfAvailable() argument
5286 HasDefaultArg = false; in SubstDefaultTemplateArgumentIfAvailable()
5292 HasDefaultArg = true; in SubstDefaultTemplateArgumentIfAvailable()
5306 HasDefaultArg = true; in SubstDefaultTemplateArgumentIfAvailable()
5320 HasDefaultArg = true; in SubstDefaultTemplateArgumentIfAvailable()
5890 bool HasDefaultArg; in CheckTemplateArgumentList() local
5899 CTAI.CanonicalConverted, HasDefaultArg); in CheckTemplateArgumentList()
5902 if (!HasDefaultArg) { in CheckTemplateArgumentList()
H A DSemaTemplateDeduction.cpp3057 bool HasDefaultArg = false; in ConvertDeducedTemplateArguments() local
3081 CTAI.SugaredConverted, CTAI.CanonicalConverted, HasDefaultArg); in ConvertDeducedTemplateArguments()
3092 return HasDefaultArg ? TemplateDeductionResult::SubstitutionFailure in ConvertDeducedTemplateArguments()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11844 ArrayRef<TemplateArgument> CanonicalConverted, bool &HasDefaultArg);