| /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| Android.bp | 3 defaults: ["clang-defaults"],
|
| /external/clang/lib/StaticAnalyzer/Core/ |
| Android.bp | 3 defaults: ["clang-defaults"],
|
| /external/clang/lib/StaticAnalyzer/Frontend/ |
| Android.bp | 3 defaults: ["clang-defaults"],
|
| /external/clang/lib/Tooling/ |
| Android.bp | 3 defaults: ["clang-defaults"],
|
| /external/clang/lib/Tooling/Core/ |
| Android.bp | 3 defaults: ["clang-defaults"],
|
| /external/clang/test/Index/Inputs/ |
| crash-recovery-reparse-remap.c | 8 #pragma clang __debug crash
|
| retain-comments-from-system-headers.h | 1 #pragma clang system_header
|
| /external/clang/test/Modules/Inputs/AutolinkTBD.framework/ |
| AutolinkTBD.tbd | 1 empty file - clang only needs to check if it exists.
|
| /external/clang/test/Modules/Inputs/multiple-include/ |
| b.h | 1 #pragma clang __debug macro C_H
|
| /external/clang/test/Preprocessor/ |
| missing-system-header.h | 1 #pragma clang system_header
|
| pushable-diagnostics.c | 3 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}} 5 #pragma clang diagnostic puhs // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}} 9 #pragma clang diagnostic push 10 #pragma clang diagnostic ignored "-Wmultichar" 13 #pragma clang diagnostic pop 17 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}} 22 #pragma clang diagnostic push // now push 24 #pragma clang diagnostic warning "-Weverything" 27 #pragma clang diagnostic push // push again 28 #pragma clang diagnostic ignored "-Weverything" // Set to ignore in this level [all...] |
| /external/clang/tools/libclang/ |
| Android.bp | 3 defaults: ["clang-defaults"],
|
| /external/pdfium/ |
| .clang-format | 1 # http://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
| /external/v8/tools/clang/blink_gc_plugin/ |
| README.chromium | 1 This clang plugin checks various invariants of the Blink garbage
|
| /frameworks/compile/slang/ |
| .clang-format | 1 # See http://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
| slang_rs_ast_replace.h | 20 #include "clang/AST/StmtVisitor.h" 23 #include "clang/AST/ASTContext.h" 25 namespace clang { namespace 33 class RSASTReplace : public clang::StmtVisitor<RSASTReplace> { 35 const clang::ASTContext &C; 36 clang::Stmt *mOuterStmt; 37 clang::Stmt *mOldStmt; 38 clang::Stmt *mNewStmt; 39 clang::Expr *mOldExpr; 40 clang::Expr *mNewExpr [all...] |
| slang_rs_object_ref_count.cpp | 19 #include "clang/AST/DeclGroup.h" 20 #include "clang/AST/Expr.h" 21 #include "clang/AST/NestedNameSpecifier.h" 22 #include "clang/AST/OperationKinds.h" 23 #include "clang/AST/RecursiveASTVisitor.h" 24 #include "clang/AST/Stmt.h" 25 #include "clang/AST/StmtVisitor.h" 37 clang::FunctionDecl * 39 clang::FunctionDecl * 42 void RSObjectRefCount::GetRSRefCountingFunctions(clang::ASTContext &C) [all...] |
| /external/clang/test/Parser/ |
| pragma-loop.cpp | 8 #pragma clang loop vectorize_width(V) interleave_count(I) 13 #pragma clang loop vectorize_width(V + 4) interleave_count(I + 4) 21 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop vectorize_width(V) 26 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop vectorize_width(V / 2) 34 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop interleave_count(I) 39 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop interleave_count(2 % I) 47 /* expected-error {{invalid argument of type 'char'; expected an integer type}} */ #pragma clang loop vectorize_width(V) 55 /* expected-error {{invalid argument of type 'bool'; expected an integer type}} */ #pragma clang loop vectorize_width(V) 63 /* expected-error {{use of undeclared identifier 'Vec'}} */ #pragma clang loop vectorize_width(Vec) interleave_count(I) 64 /* expected-error {{use of undeclared identifier 'Int'}} */ #pragma clang loop vectorize_width(V) interleave_count(Int [all...] |
| /development/vndk/tools/header-checker/header-abi-dumper/src/ |
| abi_wrappers.h | 21 #include <clang/AST/AST.h> 22 #include <clang/AST/ASTConsumer.h> 23 #include <clang/AST/Mangle.h> 24 #include <clang/AST/VTableBuilder.h> 25 #include <clang/Frontend/CompilerInstance.h> 39 ABIWrapper(clang::MangleContext *mangle_contextp, 40 clang::ASTContext *ast_contextp, 41 const clang::CompilerInstance *cip, 45 static std::string GetDeclSourceFile(const clang::Decl *decl, 46 const clang::CompilerInstance *cip) [all...] |
| ast_processing.h | 21 #include <clang/AST/AST.h> 22 #include <clang/AST/ASTConsumer.h> 23 #include <clang/AST/Mangle.h> 24 #include <clang/AST/RecursiveASTVisitor.h> 25 #include <clang/Frontend/CompilerInstance.h> 26 #include <clang/Lex/PPCallbacks.h> 31 : public clang::RecursiveASTVisitor<HeaderASTVisitor> { 33 HeaderASTVisitor(clang::MangleContext *mangle_contextp, 34 clang::ASTContext *ast_contextp, 35 const clang::CompilerInstance *compiler_instance_p [all...] |
| /external/v8/tools/clang/plugins/ |
| CheckIPCVisitor.h | 32 #include "clang/AST/AST.h" 33 #include "clang/AST/ASTConsumer.h" 34 #include "clang/AST/RecursiveASTVisitor.h" 35 #include "clang/Frontend/CompilerInstance.h" 42 explicit CheckIPCVisitor(clang::CompilerInstance& compiler); 44 void set_context(clang::ASTContext* context) { context_ = context; } 46 void BeginDecl(clang::Decl* decl); 49 clang::TemplateSpecializationType* spec); 50 void VisitCallExpr(clang::CallExpr* call_expr); 57 bool ValidateWriteParam(const clang::CallExpr* call_expr) [all...] |
| /external/v8/tools/clang/value_cleanup/ |
| ListValueRewriter.h | 14 #include "clang/ASTMatchers/ASTMatchFinder.h" 15 #include "clang/Tooling/Refactoring.h" 20 std::set<clang::tooling::Replacement>* replacements); 22 void RegisterMatchers(clang::ast_matchers::MatchFinder* match_finder); 26 : public clang::ast_matchers::MatchFinder::MatchCallback { 29 std::set<clang::tooling::Replacement>* replacements); 32 const clang::ast_matchers::MatchFinder::MatchResult& result) override; 35 std::set<clang::tooling::Replacement>* const replacements_; 41 std::set<clang::tooling::Replacement>* replacements); 44 const clang::ast_matchers::MatchFinder::MatchResult& result) override [all...] |
| /external/clang/docs/ |
| doxygen-mainpage.dox | 1 /// \mainpage clang 4 /// Welcome to the clang project. 7 /// up clang, not the **external** use of clang. There are no instructions 8 /// here on how to use clang, only the APIs that make up the software. For 14 /// Since clang is constantly under active development, what you're about to
|
| /external/clang/utils/ |
| clang-completion-mode.el | 0 ;;; Clang Code-Completion minor mode, for use with C/Objective-C/C++. 5 ;; This minor mode uses Clang's command line interface for code 7 ;; and C++ source files. When enabled, Clang will provide 10 ;; space), Clang will provide the names of all structs visible from 12 ;; Clang will provide the names of all of the members of whatever 15 ;; completion based on Clang. It needs your help to make it better! 17 ;; To use the Clang code completion mode, first make sure that the 18 ;; "clang" variable below refers to the "clang" executable, 20 ;; clang-completion-mode.el somewhere in your Emacs load path. You ca 54 (defcustom clang "clang" function [all...] |
| /external/clang/tools/driver/ |
| CMakeLists.txt | 19 option(CLANG_PLUGIN_SUPPORT "Build clang with plugin support" ON) 27 add_clang_tool(clang 33 target_link_libraries(clang 44 set_target_properties(clang PROPERTIES VERSION ${CLANG_EXECUTABLE_VERSION}) 49 export_executable_symbols(clang) 52 add_dependencies(clang clang-headers) 55 set(CLANG_LINKS_TO_CREATE clang++ clang-cl) 63 add_clang_symlink(${link} clang) [all...] |