Home | History | Annotate | Download | only in Sema

Lines Matching defs:Function

42     OR_No_Viable_Function,  ///< No viable function found.
44 OR_Deleted ///< Succeeded, but refers to a deleted function.
64 ICK_Function_To_Pointer, ///< Function-to-pointer (C++ 4.3)
65 ICK_Function_Conversion, ///< Function pointer conversion (C++17 4.13)
145 /// function-to-pointer conversion.
155 /// or a function conversion.
183 /// \brief Whether we're binding to a function lvalue.
190 /// non-static member function without a ref-qualifier.
260 /// a conversion function (12.3.2), the initial standard
262 /// object parameter of the conversion function.
274 /// conversion function was resolved from an overloaded set having
282 /// ConversionFunction - The function that will perform the
594 /// This conversion function template specialization candidate is not
603 /// This candidate function was not viable because an enable_if
625 /// Function - The actual function that this candidate
628 /// function pointer or reference (C++ [over.call.object]).
629 FunctionDecl *Function;
637 /// candidate. Only valid when Function is NULL.
640 /// Surrogate - The conversion function for which this candidate
644 /// The conversion sequences used to convert the function arguments
645 /// to the function parameters.
655 /// surrogate for a conversion to a function pointer or reference
660 /// argument's conversion, which for this function represents the
662 /// when the candidate is a static member function (where the
664 /// non-static member function when the call doesn't have an
673 /// to be used while performing partial ordering of function templates.
679 /// FinalConversion - For a conversion function (where Function is
682 /// of calling the conversion function to the required type.
716 if (Function)
717 return Function->getNumParams();
730 /// Lookup of operator function candidates in a call using operator
845 /// Find the best viable function on this overload set, if it exists.