Home | History | Annotate | Download | only in Sema

Lines Matching refs:FT1

4177 /// \brief Determine whether the function template \p FT1 is at least as
4181 FunctionTemplateDecl *FT1,
4185 FunctionDecl *FD1 = FT1->getTemplatedDecl();
4288 // All template arguments were deduced. FT1 is at least as specialized
4348 /// \param FT1 the first function template
4355 /// \param NumCallArguments1 The number of arguments in the call to FT1, used
4364 FT1,
4370 bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC,
4372 bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC,
4376 return Better1 ? FT1 : FT2;
4384 bool Variadic1 = isVariadicFunctionTemplate(FT1);
4387 return Variadic1? FT2 : FT1;