Home | History | Annotate | Download | only in AST

Lines Matching defs:Calls

268       // it actually calls. If it does have a simple move constructor, this
282 // it actually calls. If it does have a simple move assignment, this
987 DeclContext::lookup_const_result Calls = lookup(Name);
989 assert(!Calls.empty() && "Missing lambda call operator!");
990 assert(Calls.size() == 1 && "More than one lambda call operator!");
992 NamedDecl *CallOp = Calls.front();