Searched refs:TypedefDecl (Results 1 – 25 of 42) sorted by relevance
12
/external/clang/docs/ |
D | ClangCheck.rst | 23 (TypedefDecl 0x7ff3a302a410 <<invalid sloc>> __int128_t '__int128') 24 (TypedefDecl 0x7ff3a302a470 <<invalid sloc>> __uint128_t 'unsigned __int128') 25 (TypedefDecl 0x7ff3a302a830 <<invalid sloc>> __builtin_va_list '__va_list_tag [1]')
|
/external/clang/test/Index/ |
D | annotate-comments-typedef.m | 20 // CHECK: TypedefDecl=MyEnum:[[@LINE-1]]:3 (Definition) FullCommentAsHTML=[<p class="para-brief"> D… 31 // CHECK: TypedefDecl=E_T:[[@LINE-2]]:16 (Definition) FullCommentAsHTML=[<p class="para-brief"> Doc… 38 // CHECK: TypedefDecl=Foo:[[@LINE-1]]:11 (Definition) FullCommentAsHTML=[<p class="para-brief"> Com… 48 // CHECK: TypedefDecl=Foo1T:[[@LINE-2]]:21 (Definition) {{.*}} FullCommentAsHTML=[<p class="para-br…
|
D | complete-declarators.m | 32 // CHECK-CC0: TypedefDecl:{TypedText id} (50) 65 // CHECK-CC5: TypedefDecl:{TypedText Class} (50) 70 // CHECK-CC5: TypedefDecl:{TypedText id} (50) 74 // CHECK-CC5: TypedefDecl:{TypedText SEL} (50)
|
D | complete-at-directives.m | 33 // CHECK-CC4: TypedefDecl:{TypedText Class} 34 // CHECK-CC4: TypedefDecl:{TypedText id} 35 // CHECK-CC4: TypedefDecl:{TypedText SEL}
|
D | complete-at-exprstmt.m | 42 // CHECK-CC3: TypedefDecl:{TypedText Class} 43 // CHECK-CC3: TypedefDecl:{TypedText id} 46 // CHECK-CC3: TypedefDecl:{TypedText SEL}
|
D | complete-blocks.m | 57 // CHECK-CC5: TypedefDecl:{TypedText block_t} (50) 58 // CHECK-CC5: TypedefDecl:{TypedText Class} (50)
|
D | complete-exprs.m | 26 // CHECK-CC1: TypedefDecl:{TypedText BOOL} (50) 33 // CHECK-CC2: TypedefDecl:{TypedText BOOL} (50)
|
D | complete-lambdas.mm | 35 // CHECK-CC3: TypedefDecl:{TypedText Class} (50)
|
D | complete-objc-message.m | 242 // CHECK-CCA: TypedefDecl:{TypedText Class} (50) 246 // CHECK-CCA: TypedefDecl:{TypedText id} (50) 271 // CHECK-CCF: TypedefDecl:{TypedText Class} 274 // CHECK-CCF: TypedefDecl:{TypedText id}
|
D | complete-preprocessor.m | 70 // CHECK-CC5: TypedefDecl:{TypedText id} (50)
|
D | c-index-api-loadTU-test.m | 166 // CHECK: c-index-api-loadTU-test.m:69:19: TypedefDecl=X1:69:19 (Definition) Extent=[69:1 - 69:21]
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 189 mutable TypedefDecl *Int128Decl; 192 mutable TypedefDecl *UInt128Decl; 196 mutable TypedefDecl *BuiltinVaListDecl; 199 mutable TypedefDecl *ObjCIdDecl; 202 mutable TypedefDecl *ObjCSelDecl; 205 mutable TypedefDecl *ObjCClassDecl; 211 mutable TypedefDecl *BOOLDecl; 227 TypedefDecl *ObjCInstanceTypeDecl; 808 TypedefDecl *getInt128Decl() const; 811 TypedefDecl *getUInt128Decl() const; [all …]
|
D | Decl.h | 2332 class TypedefDecl : public TypedefNameDecl { 2333 TypedefDecl(DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, in TypedefDecl() function 2338 static TypedefDecl *Create(ASTContext &C, DeclContext *DC, 2341 static TypedefDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
/external/clang/test/Parser/ |
D | skip-function-bodies.mm | 36 // CHECK: skip-function-bodies.mm:13:13: TypedefDecl=E:13:13 (Definition) Extent=[13:3 - 13:14] 42 // CHECK-NOT: skip-function-bodies.mm:21:13: TypedefDecl=H:21:13 (Definition) Extent=[21:3 - 21:14]
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 438 else if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) { in getCommentForDecl() 769 TypedefDecl *ASTContext::getInt128Decl() const { in getInt128Decl() 772 Int128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this), in getInt128Decl() 783 TypedefDecl *ASTContext::getUInt128Decl() const { in getUInt128Decl() 786 UInt128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this), in getUInt128Decl() 4532 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() { in getObjCInstanceTypeDecl() 4534 ObjCInstanceTypeDecl = TypedefDecl::Create(*this, in getObjCInstanceTypeDecl() 5500 TypedefDecl *ASTContext::getObjCIdDecl() const { in getObjCIdDecl() 5505 ObjCIdDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this), in getObjCIdDecl() 5514 TypedefDecl *ASTContext::getObjCSelDecl() const { in getObjCSelDecl() [all …]
|
D | Comment.cpp | 236 const TypedefDecl *TD = cast<TypedefDecl>(CommentDecl); in fill()
|
D | Decl.cpp | 3282 TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3285 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo); in Create() 3290 TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3291 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl)); in CreateDeserialized() 3292 return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0); in CreateDeserialized() 3307 SourceRange TypedefDecl::getSourceRange() const { in getSourceRange()
|
D | DumpXML.cpp | 555 void visitTypedefDeclAttrs(TypedefDecl *D) { in visitTypedefDeclAttrs() 558 void visitTypedefDeclChildren(TypedefDecl *D) { in visitTypedefDeclChildren()
|
D | DeclPrinter.cpp | 49 void VisitTypedefDecl(TypedefDecl *D); 330 void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
|
/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 288 bool VisitTypedefDecl(TypedefDecl *DeclNode) { in VisitTypedefDecl() 528 const std::set<const TypedefDecl*> &Aliases = TypeAliases[CanonicalType]; in typeHasMatchingAlias() 529 for (std::set<const TypedefDecl*>::const_iterator in typeHasMatchingAlias() 543 llvm::DenseMap<const Type*, std::set<const TypedefDecl*> > TypeAliases;
|
/external/clang/tools/libclang/ |
D | CursorVisitor.h | 205 bool VisitTypedefDecl(TypedefDecl *D);
|
D | CIndexUSRs.cpp | 82 void VisitTypedefDecl(const TypedefDecl *D); 459 void USRGenerator::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
|
/external/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 548 } else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(FoundDecl)) { in LookupInlineAsmField()
|
D | JumpDiagnostics.cpp | 216 if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) { in GetDiagForGotoScopeDecl()
|
/external/clang/include/clang/Sema/ |
D | Template.h | 398 Decl *VisitTypedefDecl(TypedefDecl *D);
|
12