Home
last modified time | relevance | path

Searched refs:ASTs (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/
DTooling.cpp594 std::vector<std::unique_ptr<ASTUnit>> &ASTs; member in __anon0c0437590411::ASTBuilderAction
597 ASTBuilderAction(std::vector<std::unique_ptr<ASTUnit>> &ASTs) : ASTs(ASTs) {} in ASTBuilderAction() argument
612 ASTs.push_back(std::move(AST)); in runInvocation()
619 int ClangTool::buildASTs(std::vector<std::unique_ptr<ASTUnit>> &ASTs) { in buildASTs() argument
620 ASTBuilderAction Action(ASTs); in buildASTs()
647 std::vector<std::unique_ptr<ASTUnit>> ASTs; in buildASTFromCodeWithArgs() local
648 ASTBuilderAction Action(ASTs); in buildASTFromCodeWithArgs()
673 assert(ASTs.size() == 1); in buildASTFromCodeWithArgs()
674 return std::move(ASTs[0]); in buildASTFromCodeWithArgs()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSMTConv.h76 const std::vector<llvm::SMTExprRef> &ASTs) { in fromNBinOp() argument
77 assert(!ASTs.empty()); in fromNBinOp()
82 llvm::SMTExprRef res = ASTs.front(); in fromNBinOp()
83 for (std::size_t i = 1; i < ASTs.size(); ++i) in fromNBinOp()
84 res = (Op == BO_LAnd) ? Solver->mkAnd(res, ASTs[i]) in fromNBinOp()
85 : Solver->mkOr(res, ASTs[i]); in fromNBinOp()
DSMTConstraintManager.h315 std::vector<llvm::SMTExprRef> ASTs; in REGISTER_TRAIT_WITH_PROGRAMSTATE() local
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/
DTooling.h356 int buildASTs(std::vector<std::unique_ptr<ASTUnit>> &ASTs);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DDiagnosticASTKinds.td409 // Importing ASTs
460 // Importing Objective-C ASTs
531 // Importing C++ ASTs
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOperationKinds.def43 /// created only for explicit casts; dependent ASTs aren't required
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
DOptions.td5338 HelpText<"Build ASTs and then pretty-print them">;
5340 HelpText<"Build ASTs and print the list of declaration node qualified names">;
5342 HelpText<"Build ASTs and then debug dump them">;
5344 HelpText<"Build ASTs and then debug dump them in the specified format. "
5347 HelpText<"Build ASTs and then debug dump them, forcing deserialization">;
5349 HelpText<"Build ASTs and then debug dump them in the specified format, "
5357 HelpText<"Build ASTs and then debug dump their name lookup tables">,
5360 HelpText<"Build ASTs and view them with GraphViz">;
5370 HelpText<"Build ASTs then convert to LLVM, emit .bc file">;
5372 HelpText<"Build ASTs and convert to LLVM, discarding output">;