Home | History | Annotate | Download | only in Sema

Lines Matching defs:Functions

62 /// or the parts of an AST node using the various transformation functions,
77 /// \c TransformXXX functions (where XXX is the name of an AST node, e.g.,
82 /// functions to control how AST nodes are rebuilt when their operands change.
87 /// There are a handful of other functions that can be overridden, allowing one
299 /// transformations) or some set of the TransformXXXType functions
10097 // Compute the transformed set of functions (and function templates) to be
10099 UnresolvedSet<16> Functions;
10103 Functions.append(ULE->decls_begin(), ULE->decls_end());
10110 Functions.addDecl(ND);
10113 // Add any functions found via argument-dependent lookup.
10121 return SemaRef.CreateOverloadedUnaryOp(OpLoc, Opc, Functions, First);
10146 = SemaRef.CreateOverloadedBinOp(OpLoc, Opc, Functions, Args[0], Args[1]);