Lines Matching defs:callableDecl
2690 ast::CallableDecl *callableDecl = tryExtractCallableDecl(parentExpr);
2691 if (!callableDecl) {
2698 if (isa<ast::UserConstraintDecl>(callableDecl))
2704 if (isa<ast::UserRewriteDecl>(callableDecl))
2707 if (isNegated && cast<ast::UserConstraintDecl>(callableDecl)->getBody())
2713 ArrayRef<ast::VariableDecl *> callArgs = callableDecl->getInputs();
2719 callableDecl->getCallableType(), callArgs.size(),
2721 callableDecl->getLoc(),
2723 callableDecl->getName()->getName()));
2729 callableDecl->getName()->getName()),
2730 callableDecl->getLoc());
2739 callableDecl->getResultType(), isNegated);
3170 ast::CallableDecl *callableDecl = tryExtractCallableDecl(parent);
3171 if (!callableDecl)
3174 codeCompleteContext->codeCompleteCallSignature(callableDecl, currentNumArgs);