Lines Matching defs:callable
1013 void codeCompleteCallSignature(const ast::CallableDecl *callable,
1020 strOS << callable->getName()->getName() << "(";
1029 llvm::interleaveComma(callable->getInputs(), strOS, formatParamFn);
1030 strOS << ") -> " << callable->getResultType();
1033 // Format the documentation for the callable.
1035 getDocumentationFor(sourceMgr, callable))
1229 // Try to extract the callable of this call.
1231 const auto *callable =
1234 if (!callable)
1238 for (const auto &it : llvm::zip(expr->getArguments(), callable->getInputs()))