Home
last modified time | relevance | path

Searched refs:hasDefaultArg (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dtemplate.h135 virtual bool hasDefaultArg() = 0;
158 bool hasDefaultArg();
190 bool hasDefaultArg();
211 bool hasDefaultArg();
228 bool hasDefaultArg();
H A Ddtemplate.d4121 …ile (i < dim && ((*tempdecl.parameters)[i].dependent || (*tempdecl.parameters)[i].hasDefaultArg())) in visit()
5348 abstract bool hasDefaultArg();
5439 override final bool hasDefaultArg() in hasDefaultArg() function
5580 override bool hasDefaultArg() in hasDefaultArg() function
5677 override bool hasDefaultArg() in hasDefaultArg() function
5766 override bool hasDefaultArg() in hasDefaultArg() function
7157 if (!(*td.parameters)[i].hasDefaultArg())
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtemplate.h152 virtual bool hasDefaultArg() = 0;
186 bool hasDefaultArg();
227 bool hasDefaultArg();
255 bool hasDefaultArg();
276 bool hasDefaultArg();
H A Ddtemplate.c3766 (*tempdecl->parameters)[i]->hasDefaultArg())) in deduceType()
5179 bool TemplateTypeParameter::hasDefaultArg() in hasDefaultArg() function
5453 bool TemplateAliasParameter::hasDefaultArg() in hasDefaultArg() function
5673 bool TemplateValueParameter::hasDefaultArg() in hasDefaultArg() function
5813 bool TemplateTupleParameter::hasDefaultArg() in hasDefaultArg() function
7263 if (!(*td->parameters)[i]->hasDefaultArg()) in needsTypeInference()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexDecl.cpp95 if (Parm->hasDefaultArg() && !Parm->hasUninstantiatedDefaultArg() && in handleDeclarator()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp2822 bool ParmVarDecl::hasDefaultArg() const { in hasDefaultArg() function in ParmVarDecl
3378 if (!Param->hasDefaultArg()) in getMinRequiredArguments()
3389 [](ParmVarDecl *P) { return P->hasDefaultArg(); })); in hasOneParamOrDefaultArgs()
H A DASTImporter.cpp4127 } else if (FromParam->hasDefaultArg()) { in ImportDefaultArgOfParmVarDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DRecursiveASTVisitor.h2161 if (D->hasDefaultArg() && D->hasUninstantiatedDefaultArg() &&
2165 if (D->hasDefaultArg() && !D->hasUninstantiatedDefaultArg() &&
H A DDecl.h1740 bool hasDefaultArg() const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp441 return P->hasDefaultArg() && !P->hasInheritedDefaultArg(); in functionDeclHasDefaultArgument()
517 bool OldParamHasDfl = OldParam ? OldParam->hasDefaultArg() : false; in MergeCXXFunctionDecl()
518 bool NewParamHasDfl = NewParam->hasDefaultArg(); in MergeCXXFunctionDecl()
644 assert(NewParam->hasDefaultArg()); in MergeCXXFunctionDecl()
1602 if (Param->hasDefaultArg()) in CheckCXXDefaultArguments()
1613 if (!Param->hasDefaultArg() && !Param->isParameterPack() && in CheckCXXDefaultArguments()
15429 if (FnDecl->getParamDecl(0)->hasDefaultArg()) in CheckOperatorNewDeclaration()
15534 if (Param->hasDefaultArg()) in CheckOverloadedOperatorDeclaration()
15819 if (Param->hasDefaultArg()) { in CheckLiteralOperatorDeclaration()
H A DSemaCodeComplete.cpp3010 if (Param->hasDefaultArg() && !InOptional) { in AddFunctionParameterChunks()
3031 if (Param->hasDefaultArg()) in AddFunctionParameterChunks()
3706 if (Function && Function->getParamDecl(P)->hasDefaultArg() && !InOptional) { in AddOverloadParameterChunks()
3732 if (Param->hasDefaultArg()) in AddOverloadParameterChunks()
H A DSemaExprCXX.cpp8746 if (Param->hasDefaultArg()) in ActOnStartRequiresExpr()
H A DSemaTemplate.cpp2401 if (OldParam->hasDefaultArg()) { in transformFunctionTypeParam()
H A DSemaOverload.cpp6627 if (!P->hasDefaultArg()) in convertArgsForAvailabilityChecks()
H A DSemaExpr.cpp5683 assert(Param->hasDefaultArg() && "can't build nonexistent default arg"); in BuildCXXDefaultArgExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7693 return Node.hasDefaultArg(); in AST_MATCHER()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp4045 assert(PD->hasDefaultArg() && "ctor closure lacks default args"); in getAddrOfCXXCtorClosure()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtraits.d1427 static if (is(typeof(hasDefaultArg())))