Lines Matching +refs:clang +refs:prefix +refs:header
26 mkdir ~/clang-llvm && cd ~/clang-llvm
29 git clone http://llvm.org/git/clang.git
30 cd clang/tools
31 git clone http://llvm.org/git/clang-tools-extra.git extra
39 cd ~/clang-llvm
46 cd ~/clang-llvm
58 cd ~/clang-llvm
63 ninja clang-test # Test Clang only.
70 in both the llvm and clang directories should fix any problems.
76 cd ~/clang-llvm/build
82 ``/usr/bin/clang++``, or wherever you installed it. Press ``'c'`` to
92 already exists as ``clang-check``, it's important to understand what's
96 that it exists. As this is not going to be a core clang tool, it will
101 cd ~/clang-llvm/llvm/tools/clang
130 // Declares clang::SyntaxOnlyAction.
131 #include "clang/Frontend/FrontendActions.h"
132 #include "clang/Tooling/CommonOptionsParser.h"
133 #include "clang/Tooling/Tooling.h"
137 using namespace clang::tooling;
156 return Tool.run(newFrontendActionFactory<clang::SyntaxOnlyAction>().get());
164 cd ~/clang-llvm/build
168 ``~/clang-llvm/build/bin``, on any source file. Try it!
271 #include "clang/ASTMatchers/ASTMatchers.h"
272 #include "clang/ASTMatchers/ASTMatchFinder.h"
274 using namespace clang;
275 using namespace clang::ast_matchers;
284 if (const ForStmt *FS = Result.Nodes.getNodeAs<clang::ForStmt>("forLoop"))
311 cd ~/clang-llvm/llvm/llvm_build/
425 (UnaryOperator 0x173b0b0 'int' lvalue prefix '++'
474 #include "clang/AST/ASTContext.h"
501 // We do not want to convert header files!