| /NextBSD/contrib/llvm/tools/llvm-pdbdump/ |
| HD | TypeDumper.cpp | 45 while (auto Typedef = Typedefs->getNext()) in start() local 46 Typedef->dump(*this); in start()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | ClangASTType.cpp | 144 case clang::Type::Typedef: in GetCompleteQualType() 215 case clang::Type::Typedef: in IsAggregateType() 271 case clang::Type::Typedef: in IsArrayType() 434 case clang::Type::Typedef: in IsFunctionType() 539 case clang::Type::Typedef: in IsHomogeneousAggregate() 594 case clang::Type::Typedef: in IsFunctionPointerType() 671 case clang::Type::Typedef: in IsPointerType() 730 case clang::Type::Typedef: in IsPointerOrReferenceType() 768 case clang::Type::Typedef: in IsReferenceType() 950 case clang::Type::Typedef: in IsPossibleDynamicType() [all …]
|
| /NextBSD/contrib/llvm/include/llvm/DebugInfo/PDB/ |
| HD | PDBSymbolTypeTypedef.h | 25 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Typedef)
|
| HD | PDBTypes.h | 288 Typedef, enumerator
|
| /NextBSD/contrib/llvm/tools/clang/lib/Analysis/ |
| HD | FormatString.cpp | 878 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); in namedTypeToLengthModifier() local 881 const IdentifierInfo *Identifier = Typedef->getIdentifier(); in namedTypeToLengthModifier() 900 QualType T = Typedef->getUnderlyingType(); in namedTypeToLengthModifier() 904 Typedef = cast<TypedefType>(T)->getDecl(); in namedTypeToLengthModifier()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaTemplateInstantiateDecl.cpp | 388 TypedefNameDecl *Typedef; in InstantiateTypedefNameDecl() local 390 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(), in InstantiateTypedefNameDecl() 393 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(), in InstantiateTypedefNameDecl() 396 Typedef->setInvalidDecl(); in InstantiateTypedefNameDecl() 405 newTag->setTypedefNameForAnonDecl(Typedef); in InstantiateTypedefNameDecl() 418 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef); in InstantiateTypedefNameDecl() 420 Typedef->setPreviousDecl(InstPrevTypedef); in InstantiateTypedefNameDecl() 423 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef); in InstantiateTypedefNameDecl() 425 Typedef->setAccess(D->getAccess()); in InstantiateTypedefNameDecl() 427 return Typedef; in InstantiateTypedefNameDecl() [all …]
|
| HD | TreeTransform.h | 807 QualType RebuildTypedefType(TypedefNameDecl *Typedef) { in RebuildTypedefType() argument 808 return SemaRef.Context.getTypeDeclType(Typedef); in RebuildTypedefType() 4872 TypedefNameDecl *Typedef in TransformTypedefType() local 4875 if (!Typedef) in TransformTypedefType() 4880 Typedef != T->getDecl()) { in TransformTypedefType() 4881 Result = getDerived().RebuildTypedefType(Typedef); in TransformTypedefType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | TypePrinter.cpp | 179 case Type::Typedef: in canPrefixQualifiers() 883 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl()) in AppendScope() local 884 OS << Typedef->getIdentifier()->getName() << "::"; in AppendScope() 918 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) { in printTag() local 919 assert(Typedef->getIdentifier() && "Typedef without identifier?"); in printTag() 920 OS << Typedef->getIdentifier()->getName(); in printTag()
|
| HD | Comment.cpp | 230 case Decl::Typedef: { in fill()
|
| HD | Type.cpp | 55 else if (ty->getTypeClass() == Type::Typedef) in getBaseTypeIdentifier() 865 TRIVIAL_TYPE_CLASS(Typedef) in TRIVIAL_TYPE_CLASS() 2313 case Typedef: in isSpecifierType()
|
| HD | ASTContext.cpp | 1740 case Type::Typedef: { in getTypeInfoImpl() 1741 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl(); in getTypeInfoImpl() local 1742 TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr()); in getTypeInfoImpl() 1746 if (unsigned AttrAlign = Typedef->getMaxAlignment()) { in getTypeInfoImpl() 3081 if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl)) in getTypeDeclTypeSlow() local 3082 return getTypedefType(Typedef); in getTypeDeclTypeSlow() 3115 TypedefType(Type::Typedef, Decl, Canonical); in getTypedefType()
|
| HD | ASTImporter.cpp | 652 case Type::Typedef: in IsStructurallyEquivalent() 2491 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { in VisitEnumDecl() local 2492 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) in VisitEnumDecl() 2580 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { in VisitRecordDecl() local 2581 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) in VisitRecordDecl()
|
| HD | DeclBase.cpp | 559 case Typedef: in getIdentifierNamespaceForKind()
|
| HD | ItaniumMangle.cpp | 1545 case Type::Typedef: in mangleUnresolvedTypeOrSimpleId()
|
| /NextBSD/contrib/llvm/lib/DebugInfo/PDB/ |
| HD | PDBSymbol.cpp | 84 FACTORY_SYMTAG_CASE(Typedef, PDBSymbolTypeTypedef) in create()
|
| HD | PDBExtras.cpp | 230 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Typedef, OS) in operator <<()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | DeclNodes.td | 22 def Typedef : DDecl<TypedefName>;
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTCommon.cpp | 160 case Decl::Typedef: in isRedeclarableDeclKind()
|
| HD | ASTReader.cpp | 3700 if (const TypedefType *Typedef = FileType->getAs<TypedefType>()) in InitializeContext() local 3701 Context.setFILEDecl(Typedef->getDecl()); in InitializeContext() 3721 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>()) in InitializeContext() local 3722 Context.setjmp_bufDecl(Typedef->getDecl()); in InitializeContext() 3742 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>()) in InitializeContext() local 3743 Context.setsigjmp_bufDecl(Typedef->getDecl()); in InitializeContext() 3778 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>()) in InitializeContext() local 3779 Context.setucontext_tDecl(Typedef->getDecl()); in InitializeContext()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | TypeNodes.def | 83 NON_CANONICAL_TYPE(Typedef, Type)
|
| HD | CommentCommands.td | 223 def Typedef : DeclarationVerbatimLineCommand<"typedef">;
|
| HD | Decl.h | 2651 : TypedefNameDecl(Typedef, C, DC, StartLoc, IdLoc, Id, TInfo) {} in TypedefDecl() 2663 static bool classofKind(Kind K) { return K == Typedef; } in classofKind()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | ASTConsumers.cpp | 423 case Decl::Typedef: in PrintDeclContext()
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGDecl.cpp | 116 case Decl::Typedef: // typedef int X; in EmitDecl()
|
| HD | CodeGenFunction.cpp | 1634 case Type::Typedef: in EmitVariablyModifiedType()
|