Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp644 std::vector<std::unique_ptr<ASTUnit>> &ASTs; member in __anon53ec47410411::ASTBuilderAction
647 ASTBuilderAction(std::vector<std::unique_ptr<ASTUnit>> &ASTs) : ASTs(ASTs) {} in ASTBuilderAction() argument
662 ASTs.push_back(std::move(AST)); in runInvocation()
669 int ClangTool::buildASTs(std::vector<std::unique_ptr<ASTUnit>> &ASTs) { in buildASTs() argument
670 ASTBuilderAction Action(ASTs); in buildASTs()
693 std::vector<std::unique_ptr<ASTUnit>> ASTs; in buildASTFromCodeWithArgs() local
694 ASTBuilderAction Action(ASTs); in buildASTFromCodeWithArgs()
719 assert(ASTs.size() == 1); in buildASTFromCodeWithArgs()
720 return std::move(ASTs[0]); in buildASTFromCodeWithArgs()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A 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()
H A DSMTConstraintManager.h319 std::vector<llvm::SMTExprRef> ASTs; in REGISTER_TRAIT_WITH_PROGRAMSTATE() local
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticASTKinds.td452 // Importing ASTs
501 // Importing Objective-C ASTs
572 // Importing C++ ASTs
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def43 /// created only for explicit casts; dependent ASTs aren't required
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2953 Group<Action_Group>, HelpText<"Build ASTs and then lower to ClangIR">;
7657 HelpText<"Build ASTs and then pretty-print them">;
7659 HelpText<"Build ASTs and print the list of declaration node qualified names">;
7661 HelpText<"Build ASTs and then debug dump them">;
7663 HelpText<"Build ASTs and then debug dump them in the specified format. "
7666 HelpText<"Build ASTs and then debug dump them, forcing deserialization">;
7668 HelpText<"Build ASTs and then debug dump them in the specified format, "
7676 HelpText<"Build ASTs and then debug dump their name lookup tables">,
7679 HelpText<"Build ASTs and view them with GraphViz">;
7691 HelpText<"Build ASTs and convert to LLVM, discarding output">;
[all …]