HomeSort by relevance Sort by last modified time
    Searched full:translationunitdecl (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/clang/docs/
ClangCheck.rst 22 (TranslationUnitDecl 0x7ff3a3029ed0 <<invalid sloc>>
IntroductionToTheClangAST.rst 52 TranslationUnitDecl 0x5aea0d0 <<invalid sloc>>
112 `TranslationUnitDecl <http://clang.llvm.org/doxygen/classclang_1_1TranslationUnitDecl.html>`_
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 123 class CallGraphViewer : public Checker< check::ASTDecl<TranslationUnitDecl> > {
125 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager& mgr,
128 CG.addToCallGraph(const_cast<TranslationUnitDecl*>(TU));
143 class CallGraphDumper : public Checker< check::ASTDecl<TranslationUnitDecl> > {
145 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager& mgr,
148 CG.addToCallGraph(const_cast<TranslationUnitDecl*>(TU));
173 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU,
PaddingChecker.cpp 33 class PaddingChecker : public Checker<check::ASTDecl<TranslationUnitDecl>> {
40 void checkASTDecl(const TranslationUnitDecl *TUD, AnalysisManager &MGR,
67 visitor.TraverseDecl(const_cast<TranslationUnitDecl *>(TUD));
CheckerDocumentation.cpp 189 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU,
LLVMConventionsChecker.cpp 48 return isa<TranslationUnitDecl>(ND->getDeclContext());
  /external/clang/lib/Frontend/
ASTMerge.cpp 61 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
ASTConsumers.cpp 44 TranslationUnitDecl *D = Context.getTranslationUnitDecl();
  /external/clang/test/Misc/
ast-dump-decl.c 24 // CHECK-TU: TranslationUnitDecl
  /external/clang/lib/AST/
Mangle.cpp 235 assert((isa<TranslationUnitDecl>(DC) || isa<NamedDecl>(DC)) &&
236 "expected a TranslationUnitDecl or a NamedDecl");
Decl.cpp 47 TranslationUnitDecl::TranslationUnitDecl(ASTContext &ctx)
660 !isa<TranslationUnitDecl>(DC);
    [all...]
DeclBase.cpp 296 TranslationUnitDecl *Decl::getTranslationUnitDecl() {
297 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this))
308 return cast<TranslationUnitDecl>(DC);
746 if (isa<TranslationUnitDecl>(this) ||
    [all...]
DeclPrinter.cpp 57 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
187 ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
370 void DeclPrinter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
    [all...]
  /external/clang/lib/Tooling/Core/
Lookup.cpp 99 isa<TranslationUnitDecl>(FromDecl->getDeclContext());
  /frameworks/compile/slang/
slang_rs_context.cpp 174 clang::TranslationUnitDecl *TUDecl = mCtx.getTranslationUnitDecl();
232 clang::TranslationUnitDecl *TUDecl = mCtx.getTranslationUnitDecl();
slang_rs_check_ast.cpp 304 clang::TranslationUnitDecl *TUDecl = C.getTranslationUnitDecl();
  /external/clang/lib/ARCMigrate/
Transforms.h 123 void traverse(TranslationUnitDecl *TU);
TransGCAttrs.cpp 124 if (isa<TranslationUnitDecl>(D))
  /external/clang/tools/libclang/
CursorVisitor.h 205 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 360 REGISTER_MATCHER(translationUnitDecl);
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 375 void runCheckersOnEndOfTranslationUnit(const TranslationUnitDecl *TU,
463 typedef CheckerFn<void (const TranslationUnitDecl *,
Checker.h 66 const TranslationUnitDecl *TU,
  /external/clang/include/clang/AST/
Decl.h 78 /// TranslationUnitDecl - The top declaration context.
79 class TranslationUnitDecl : public Decl, public DeclContext {
87 explicit TranslationUnitDecl(ASTContext &ctx);
94 static TranslationUnitDecl *Create(ASTContext &C);
98 static DeclContext *castToDeclContext(const TranslationUnitDecl *D) {
99 return static_cast<DeclContext *>(const_cast<TranslationUnitDecl*>(D));
101 static TranslationUnitDecl *castFromDeclContext(const DeclContext *DC) {
102 return static_cast<TranslationUnitDecl *>(const_cast<DeclContext*>(DC));
126 explicit ExternCContextDecl(TranslationUnitDecl *TU)
131 TranslationUnitDecl *TU)
    [all...]
DeclBase.h 55 class TranslationUnitDecl;
407 TranslationUnitDecl *getTranslationUnitDecl();
408 const TranslationUnitDecl *getTranslationUnitDecl() const {
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 241 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
540 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
    [all...]

Completed in 1589 milliseconds

1 2 3