HomeSort by relevance Sort by last modified time
    Searched full:translationunitdecl (Results 1 - 25 of 68) 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 120 class CallGraphViewer : public Checker< check::ASTDecl<TranslationUnitDecl> > {
122 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager& mgr,
125 CG.addToCallGraph(const_cast<TranslationUnitDecl*>(TU));
140 class CallGraphDumper : public Checker< check::ASTDecl<TranslationUnitDecl> > {
142 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager& mgr,
145 CG.addToCallGraph(const_cast<TranslationUnitDecl*>(TU));
170 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU,
CheckerDocumentation.cpp 179 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU,
LLVMConventionsChecker.cpp 48 return isa<TranslationUnitDecl>(ND->getDeclContext());
  /external/lldb/include/lldb/Core/
ClangForward.h 118 class TranslationUnitDecl;
  /external/clang/lib/Frontend/
ASTMerge.cpp 59 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
ASTConsumers.cpp 44 TranslationUnitDecl *D = Context.getTranslationUnitDecl();
  /external/clang/test/Misc/
ast-dump-decl.c 24 // CHECK-TU: TranslationUnitDecl
  /frameworks/compile/slang/
slang_rs_context.cpp 124 clang::TranslationUnitDecl *TUDecl = mCtx.getTranslationUnitDecl();
211 clang::TranslationUnitDecl *TUDecl = mCtx.getTranslationUnitDecl();
slang_rs_check_ast.cpp 275 clang::TranslationUnitDecl *TUDecl = C.getTranslationUnitDecl();
  /external/clang/lib/AST/
Mangle.cpp 237 assert((isa<TranslationUnitDecl>(DC) || isa<NamedDecl>(DC)) &&
238 "expected a TranslationUnitDecl or a NamedDecl");
DeclPrinter.cpp 48 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
177 ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
332 void DeclPrinter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
    [all...]
Decl.cpp 653 !isa<TranslationUnitDecl>(DC);
    [all...]
DeclBase.cpp 258 TranslationUnitDecl *Decl::getTranslationUnitDecl() {
259 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this))
270 return cast<TranslationUnitDecl>(DC);
706 if (isa<TranslationUnitDecl>(this) ||
    [all...]
  /external/clang/lib/ARCMigrate/
Transforms.h 123 void traverse(TranslationUnitDecl *TU);
TransGCAttrs.cpp 124 if (isa<TranslationUnitDecl>(D))
  /external/clang/tools/libclang/
CursorVisitor.h 204 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 326 REGISTER_MATCHER(translationUnitDecl);
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 360 void runCheckersOnEndOfTranslationUnit(const TranslationUnitDecl *TU,
448 typedef CheckerFn<void (const TranslationUnitDecl *,
Checker.h 66 const TranslationUnitDecl *TU,
  /external/clang/include/clang/AST/
Decl.h 76 /// TranslationUnitDecl - The top declaration context.
77 class TranslationUnitDecl : public Decl, public DeclContext {
85 explicit TranslationUnitDecl(ASTContext &ctx)
95 static TranslationUnitDecl *Create(ASTContext &C);
99 static DeclContext *castToDeclContext(const TranslationUnitDecl *D) {
100 return static_cast<DeclContext *>(const_cast<TranslationUnitDecl*>(D));
102 static TranslationUnitDecl *castFromDeclContext(const DeclContext *DC) {
103 return static_cast<TranslationUnitDecl *>(const_cast<DeclContext*>(DC));
127 explicit ExternCContextDecl(TranslationUnitDecl *TU)
132 TranslationUnitDecl *TU)
    [all...]
DeclBase.h 55 class TranslationUnitDecl;
395 TranslationUnitDecl *getTranslationUnitDecl();
396 const TranslationUnitDecl *getTranslationUnitDecl() const {
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTypeVendor.cpp 157 clang::TranslationUnitDecl *translation_unit_decl = m_type_vendor.m_ast_ctx.getASTContext()->getTranslationUnitDecl();
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 260 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
484 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
    [all...]

Completed in 1017 milliseconds

1 2 3