/external/clang/test/Preprocessor/ |
missing-system-header.h | 1 #pragma clang system_header
|
pragma-captured.c | 3 // Test pragma clang __debug captured, for Captured Statements 7 #pragma clang __debug captured 12 // CHECK: #pragma clang __debug captured
|
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}}
|
/external/clang/lib/Analysis/ |
Dominators.cpp | 1 //=- Dominators.cpp - Implementation of dominators tree for Clang CFG C++ -*-=// 10 #include "clang/Analysis/Analyses/Dominators.h" 12 using namespace clang;
|
/external/clang/lib/Frontend/ |
ChainedDiagnosticConsumer.cpp | 10 #include "clang/Frontend/ChainedDiagnosticConsumer.h" 12 using namespace clang;
|
/external/clang/lib/Lex/ |
PPCallbacks.cpp | 10 #include "clang/Lex/PPCallbacks.h" 12 using namespace clang;
|
/external/clang/lib/Sema/ |
SemaConsumer.cpp | 10 #include "clang/Sema/SemaConsumer.h" 12 using namespace clang;
|
/external/clang/include/ |
Makefile | 2 DIRS := clang clang-c
|
/external/clang/test/Driver/ |
crash-report.c | 3 // RUN: not env TMPDIR=%t TEMP=%t TMP=%t RC_DEBUG_OPTIONS=1 %clang -fsyntax-only %s \ 15 // RUN: not env FORCE_CLANG_DIAGNOSTICS_CRASH=1 %clang -fsyntax-only -x c /dev/null 2>&1 | FileCheck %s 20 #pragma clang __debug parser_crash
|
/external/clang/test/Frontend/Inputs/ |
rewrite-includes1.h | 1 #pragma clang system_header
|
/external/clang/test/Index/Inputs/ |
pragma_disable_warning.h | 1 #pragma clang diagnostic ignored "-Wunused-parameter"
|
retain-comments-from-system-headers.h | 1 #pragma clang system_header
|
/external/clang/test/Index/ |
crash-recovery.c | 7 #pragma clang __debug crash
|
/external/clang/test/Sema/Inputs/ |
pragma-arc-cf-code-audited.h | 16 #pragma clang arc_cf_code_audited begin
|
/external/clang/test/Sema/ |
pragma-arc-cf-code-audited.c | 3 #pragma clang arc_cf_code_audited foo // expected-error {{expected 'begin' or 'end'}} 5 #pragma clang arc_cf_code_audited begin foo // expected-warning {{extra tokens at end of #pragma directive}} 7 #pragma clang arc_cf_code_audited end 8 #pragma clang arc_cf_code_audited end // expected-error {{not currently inside '#pragma clang arc_cf_code_audited'}} 10 #pragma clang arc_cf_code_audited begin // expected-note {{#pragma entered here}} 11 #pragma clang arc_cf_code_audited begin // expected-error {{already inside '#pragma clang arc_cf_code_audited'}} expected-note {{#pragma entered here}} 13 #include "Inputs/pragma-arc-cf-code-audited.h" // expected-error {{cannot #include files inside '#pragma clang arc_cf_code_audited'}} 16 // expected-error@Inputs/pragma-arc-cf-code-audited.h:16 {{'#pragma clang arc_cf_code_audited' was not ended within this file} [all...] |
/external/clang/include/clang/Basic/ |
CapturedStmt.h | 14 namespace clang { namespace 21 } // end namespace clang
|
/external/clang/lib/StaticAnalyzer/Core/ |
SubEngine.cpp | 10 #include "clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h" 12 using namespace clang::ento;
|
/external/clang/test/Modules/Inputs/ |
diag_pragma.h | 3 #pragma clang diagnostic ignored "-Wparentheses"
|
/frameworks/compile/slang/ |
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 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_check_ast.h | 21 #include "clang/AST/ASTContext.h" 22 #include "clang/AST/StmtVisitor.h" 29 class RSCheckAST : public clang::StmtVisitor<RSCheckAST> { 31 clang::ASTContext &C; 32 clang::DiagnosticsEngine &mDiagEngine; 33 clang::SourceManager &mSM; 45 void WarnOnSetElementAt(clang::CallExpr*); 48 explicit RSCheckAST(clang::ASTContext &Con, unsigned int TargetAPI, 56 void VisitStmt(clang::Stmt *S); 58 void VisitCallExpr(clang::CallExpr *CE) [all...] |
slang_rs_object_ref_count.h | 23 #include "clang/AST/StmtVisitor.h" 28 namespace clang { namespace 45 class RSObjectRefCount : public clang::StmtVisitor<RSObjectRefCount> { 49 clang::CompoundStmt *mCS; // Associated compound statement ({ ... }) 50 std::list<clang::VarDecl*> mRSO; // Declared RS objects in this scope 53 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) { 57 inline void addRSObject(clang::VarDecl* VD) { 62 void ReplaceRSObjectAssignment(clang::BinaryOperator *AS); 64 void AppendRSObjectInit(clang::VarDecl *VD, 65 clang::DeclStmt *DS [all...] |
/external/clang/test/Index/Inputs/Headers/ |
crash.h | 3 # pragma clang __debug crash
|
/external/clang/test/Parser/ |
captured-statements.c | 5 #pragma clang __debug captured x // expected-warning {{extra tokens at end of #pragma clang __debug captured directive}} 12 #pragma clang __debug captured
|
crash-report.c | 5 ma clang __debug crash
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ProgramState_Fwd.h | 13 #include "clang/Basic/LLVM.h" 16 namespace clang { namespace 26 template <> struct IntrusiveRefCntPtrInfo<const clang::ento::ProgramState> { 27 static void retain(const clang::ento::ProgramState *state) { 28 clang::ento::ProgramStateRetain(state); 30 static void release(const clang::ento::ProgramState *state) { 31 clang::ento::ProgramStateRelease(state); 36 namespace clang { namespace
|