| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeTypedef.cpp | 8 codeview::UDTSym Typedef) in NativeTypeTypedef() argument 9 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id), in NativeTypeTypedef() 10 Record(std::move(Typedef)) {} in NativeTypeTypedef()
|
| H A D | NativeExeSymbol.cpp | 59 case PDB_SymType::Typedef: in findChildren()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyTypeDumper.cpp | 157 const PDBSymbolTypeTypedef &Typedef) { in isTypeExcluded() argument 158 return Printer.IsTypeExcluded(Typedef.getName(), Typedef.getLength()); in isTypeExcluded()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | NativeTypeTypedef.h | 25 codeview::UDTSym Typedef);
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBSymbolTypeTypedef.h | 22 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Typedef)
|
| H A D | PDBTypes.h | 201 Typedef, enumerator
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | FormatString.cpp | 964 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); in namedTypeToLengthModifier() local 967 const IdentifierInfo *Identifier = Typedef->getIdentifier(); in namedTypeToLengthModifier() 986 QualType T = Typedef->getUnderlyingType(); in namedTypeToLengthModifier() 990 Typedef = cast<TypedefType>(T)->getDecl(); in namedTypeToLengthModifier()
|
| H A D | Comment.cpp | 309 case Decl::Typedef: { in fill() 314 K == Decl::Typedef in fill()
|
| H A D | TypePrinter.cpp | 211 case Type::Typedef: in canPrefixQualifiers() 1106 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl()) in AppendScope() local 1107 OS << Typedef->getIdentifier()->getName() << "::"; in AppendScope() 1142 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) { in printTag() local 1143 assert(Typedef->getIdentifier() && "Typedef without identifier?"); in printTag() 1144 OS << Typedef->getIdentifier()->getName(); in printTag()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-private-enumerations.h | 253 Typedef enumerator
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | ClangASTContext.cpp | 2661 case clang::Type::Typedef: in GetDeclContextForType() 2785 case clang::Type::Typedef: in GetCompleteQualType() 2861 case clang::Type::Typedef: in IsAggregateType() 2899 case clang::Type::Typedef: in IsAnonymousType() 2970 case clang::Type::Typedef: in IsArrayType() 3226 case clang::Type::Typedef: in IsHomogeneousAggregate() 4219 case clang::Type::Typedef: in GetTypeInfo() 4408 case clang::Type::Typedef: in GetTypeClass() 5281 case clang::Type::Typedef: in GetEncoding() 5452 case clang::Type::Typedef: in GetFormat() [all …]
|
| H A D | ClangASTImporter.cpp | 365 case clang::Type::Typedef: in CanImport() 441 case clang::Type::Typedef: in Import()
|
| H A D | Type.cpp | 71 case CompilerContextKind::Typedef: in Dump()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 586 TypedefNameDecl *Typedef; in InstantiateTypedefNameDecl() local 594 Typedef->setInvalidDecl(); in InstantiateTypedefNameDecl() 618 Typedef->setPreviousDecl(InstPrevTypedef); in InstantiateTypedefNameDecl() 623 Typedef->setAccess(D->getAccess()); in InstantiateTypedefNameDecl() 625 return Typedef; in InstantiateTypedefNameDecl() 630 if (Typedef) in VisitTypedefDecl() 631 Owner->addDecl(Typedef); in VisitTypedefDecl() 632 return Typedef; in VisitTypedefDecl() 637 if (Typedef) in VisitTypeAliasDecl() 638 Owner->addDecl(Typedef); in VisitTypeAliasDecl() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbol.cpp | 83 FACTORY_SYMTAG_CASE(Typedef, PDBSymbolTypeTypedef) in createSymbol()
|
| H A D | PDBExtras.cpp | 218 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Typedef, OS) in operator <<()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | DeclNodes.td | 26 def Typedef : DDecl<TypedefName>;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 457 PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef, in ParseTypes() 467 case PDB_SymType::Typedef: in ParseTypes() 1417 PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef, in FindTypesByRegex() 1487 case PDB_SymType::Typedef: in FindTypesByName() 1544 case PDB_SymType::Typedef: in GetTypesForPDBSymbol()
|
| H A D | PDBASTParser.cpp | 287 case PDB_SymType::Typedef: in GetClassOrFunctionParent() 534 case PDB_SymType::Typedef: { in CreateLLDBTypeFromPDBType()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDIE.cpp | 211 CompilerContext(CompilerContextKind::Typedef, ConstString(GetName()))); in GetDeclContext()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | TypeNodes.def | 85 NON_CANONICAL_TYPE(Typedef, Type)
|
| H A D | CommentCommands.td | 223 def Typedef : DeclarationVerbatimLineCommand<"typedef">;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTCommon.cpp | 327 case Decl::Typedef: in isRedeclarableDeclKind()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 169 case Decl::Typedef: in getSymbolInfo()
|
| /freebsd-12.1/contrib/googletest/googlemock/scripts/generator/cpp/ |
| H A D | ast.py | 273 class Typedef(_GenericDeclaration): class 1389 return Typedef(indices.start, indices.end, name.name,
|