Home | History | Annotate | Download | only in Sema

Lines Matching defs:Method

1087 /// as formatting string to formatting method.
1132 // Check the attributes attached to the method/function itself.
1278 bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac,
1281 Method->isVariadic() ? VariadicMethod : VariadicDoesNotApply;
1283 checkCall(Method, Args, Method->param_size(),
1285 lbrac, Method->getSourceRange(), CallType);
2142 // current function or method.
3480 // Returns true when a c_str() conversion method is found.
3490 const CXXMethodDecl *Method = *MI;
3491 if (Method->getMinRequiredArguments() == 0 &&
3492 AT.matchesType(S.Context, Method->getReturnType())) {
6697 // If the target is bool, warn if expr is a function or method call.