HomeSort by relevance Sort by last modified time
    Searched refs:clang (Results 76 - 100 of 1202) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/compile/slang/
slang.h 28 #include "clang/Basic/TargetOptions.h"
29 #include "clang/Lex/ModuleLoader.h"
43 namespace clang { namespace
56 } // namespace clang
60 class Slang : public clang::ModuleLoader {
61 static clang::LangOptions LangOpts;
62 static clang::CodeGenOptions CodeGenOpts;
85 llvm::OwningPtr<clang::Diagnostic> mDiag;
88 clang::DiagnosticsEngine *mDiagEngine;
95 llvm::IntrusiveRefCntPtr<clang::TargetOptions> mTargetOpts
    [all...]
slang_rs_backend.h 29 namespace clang { namespace
47 clang::SourceManager &mSourceMgr;
65 void AnnotateFunction(clang::FunctionDecl *FD);
77 virtual bool HandleTopLevelDecl(clang::DeclGroupRef D);
79 virtual void HandleTranslationUnitPre(clang::ASTContext &C);
85 clang::DiagnosticsEngine *DiagEngine,
86 const clang::CodeGenOptions &CodeGenOpts,
87 const clang::TargetOptions &TargetOpts,
91 clang::SourceManager &SourceMgr,
  /external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/
RewriteScopedPtrCtorNull.cpp 5 // This implements a Clang tool to convert all instances of std::string("") to
8 // should be run using the tools/clang/scripts/run_tool.py helper.
10 #include "clang/ASTMatchers/ASTMatchers.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
12 #include "clang/Basic/SourceManager.h"
13 #include "clang/Frontend/FrontendActions.h"
14 #include "clang/Tooling/CommonOptionsParser.h"
15 #include "clang/Tooling/Refactoring.h"
16 #include "clang/Tooling/Tooling.h"
19 using clang::ast_matchers::MatchFinder
    [all...]
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough.cpp 15 case 0: {// expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
17 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
19 case 3: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
22 case 4: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
25 case 5: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
34 case 6: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
55 [[clang::fallthrough]];
58 [[clang::fallthrough]];
63 [[clang::fallthrough]];
70 [[clang::fallthrough]]
    [all...]
switch-implicit-fallthrough-macro.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wimplicit-fallthrough -DCOMMAND_LINE_FALLTHROUGH=[[clang::fallthrough]] %s
15 #define COMPATIBILITY_FALLTHROUGH [ [ /* test */ clang /* test */ \
35 #define M1 [[clang::fallthrough]]
42 #define WRONG_MACRO1 clang::fallthrough
43 #define WRONG_MACRO2 [[clang::fallthrough]
44 #define WRONG_MACRO3 [[clang::fall through]]
45 #define WRONG_MACRO4 [[clang::fallthrough]]]
67 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
70 #define TOO_LATE [[clang::fallthrough]]
77 #define MACRO_WITH_HISTORY [[clang::fallthrough]
    [all...]
  /external/chromium_org/tools/clang/empty_string/
EmptyStringConverter.cpp 5 // This implements a Clang tool to convert all instances of std::string("") to
8 // should be run using the tools/clang/scripts/run_tool.py helper.
10 #include "clang/ASTMatchers/ASTMatchers.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
12 #include "clang/Basic/SourceManager.h"
13 #include "clang/Frontend/FrontendActions.h"
14 #include "clang/Tooling/CommonOptionsParser.h"
15 #include "clang/Tooling/Refactoring.h"
16 #include "clang/Tooling/Tooling.h"
19 using clang::ast_matchers::MatchFinder
    [all...]
  /external/chromium_org/tools/clang/rewrite_scoped_array/
RewriteScopedArray.cpp 5 // This implements a Clang tool to rewrite all instances of scoped_array<T> to
9 #include "clang/AST/ASTContext.h"
10 #include "clang/ASTMatchers/ASTMatchers.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
12 #include "clang/Basic/SourceManager.h"
13 #include "clang/Frontend/FrontendActions.h"
14 #include "clang/Lex/Lexer.h"
15 #include "clang/Tooling/CommonOptionsParser.h"
16 #include "clang/Tooling/Refactoring.h"
17 #include "clang/Tooling/Tooling.h
    [all...]
  /external/clang/tools/libclang/
CXTranslationUnit.h 17 #include "clang-c/Index.h"
20 namespace clang { namespace
24 } // namespace clang
27 clang::CIndexer *CIdx;
28 clang::ASTUnit *TheASTUnit;
29 clang::cxstring::CXStringPool *StringPool;
32 clang::SimpleFormatContext *FormatContext;
36 namespace clang { namespace
64 }} // end namespace clang::cxtu
CXType.h 17 #include "clang-c/Index.h"
18 #include "clang/AST/Type.h"
20 namespace clang { namespace
28 }} // end namespace clang::cxtype
  /external/clang/utils/VtableTest/
check-zti 9 sed -n "/^__ZTI.*s$i:/,/\.[sg][el]/p" test-clang.s |
10 grep -v '\.[sg][el]' | sed 's/(\([0-9][0-9]*\))/\1/' >test-clang-zti
13 diff -U3 test-gcc-zti test-clang-zti
check-ztt 9 sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-clang.s |
10 grep -v '\.[sgm][elo]' | sed -e 's/[()]//g' -e '/^$/d' >test-clang-ztt
13 diff -U3 test-gcc-ztt test-clang-ztt
check-zvt 9 sed -n "/^__ZTV.*s$i:/,/\.[sg][el]/p" test-clang.s | grep -v '\.[sg][el]' >test-clang-ztv
11 diff -U3 test-gcc-ztv test-clang-ztv
  /external/clang/test/PCH/
pragma-diag-section.cpp 11 #pragma clang diagnostic push
12 #pragma clang diagnostic ignored "-Wtautological-compare"
20 #pragma clang diagnostic pop
rdar8852495.c 16 #pragma clang diagnostic ignored "-Wtautological-compare"
  /external/clang/include/clang/Basic/
DiagnosticCategories.h 13 namespace clang { namespace
18 #include "clang/Basic/DiagnosticGroups.inc"
24 } // end namespace clang
Lambda.h 20 namespace clang { namespace
41 } // end namespace clang
  /external/clang/include/clang/Driver/
Util.h 13 #include "clang/Basic/LLVM.h"
16 namespace clang { namespace
30 } // end namespace clang
  /external/clang/include/clang/Sema/
SemaInternal.h 18 #include "clang/AST/ASTContext.h"
19 #include "clang/Sema/Sema.h"
20 #include "clang/Sema/SemaDiagnostic.h"
22 namespace clang { namespace
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SummaryManager.h 21 namespace clang { namespace
45 } // end namespace clang::summMgr
59 } // end clang namespace
  /external/clang/lib/CodeGen/
CGBuilder.h 15 namespace clang { namespace
26 } // end namespace clang
  /external/clang/lib/Driver/
Phases.cpp 10 #include "clang/Driver/Phases.h"
14 using namespace clang::driver;
  /external/clang/test/Analysis/
virtualcall.h 2 #pragma clang system_header
  /external/clang/unittests/AST/
ASTVectorTest.cpp 15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/ASTVector.h"
18 using namespace clang;
  /external/clang/utils/TableGen/
Makefile 11 TOOLNAME = clang-tblgen
  /external/clang/test/CodeGenCXX/
captured-statements.cpp 22 #pragma clang __debug captured
51 #pragma clang __debug captured
71 #pragma clang __debug captured
85 #pragma clang __debug captured
105 #pragma clang __debug captured
116 #pragma clang __debug captured
124 #pragma clang __debug captured
160 #pragma clang __debug captured
180 #pragma clang __debug captured

Completed in 902 milliseconds

1 2 34 5 6 7 8 91011>>