HomeSort by: relevance | last modified time | path
    Searched refs:Typedef (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeTypeTypedef.cpp 8 codeview::UDTSym Typedef)
9 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id),
10 Record(std::move(Typedef)) {}
NativeExeSymbol.cpp 58 case PDB_SymType::Typedef:
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeTypeTypedef.h 1 //===- NativeTypeTypedef.h - info about typedef ------------------*- C++-*-===//
24 codeview::UDTSym Typedef);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeTypedef.h 1 //===- PDBSymbolTypeTypedef.h - typedef type info ---------------*- C++ -*-===//
21 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Typedef)
PDBTypes.h 26 typedef uint32_t SymIndexId;
261 Typedef,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyTypeDumper.cpp 37 typedef bool (*CompareFunc)(const LayoutPtr &S1, const LayoutPtr &S2);
156 const PDBSymbolTypeTypedef &Typedef) {
157 return Printer.IsTypeExcluded(Typedef.getName(), Typedef.getLength());
llvm-pdbutil.cpp 242 cl::opt<bool> Typedefs("typedefs", cl::desc("Display typedef types"),
1035 SymTypes.push_back(PDB_SymType::Typedef);
1128 case PDB_SymType::Typedef: {
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 79 typedef std::vector<Param> ParamsSeq;
132 typedef std::vector<NullabilityKind> NullabilitySeq;
165 typedef std::vector<Method> MethodsSeq;
214 typedef std::vector<Property> PropertiesSeq;
253 typedef std::vector<Class> ClassesSeq;
294 typedef std::vector<Function> FunctionsSeq;
329 typedef std::vector<GlobalVariable> GlobalVariablesSeq;
359 typedef std::vector<EnumConstant> EnumConstantsSeq;
422 typedef std::vector<Tag> TagsSeq;
456 struct Typedef {
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 55 $(LREF Typedef)
7811 // Check all floating point comparisons for both Proxy and Typedef,
7812 // also against int and a Typedef!int, to be as regression-proof
7829 static foreach (T1; AliasSeq!(MyFloatImpl, Typedef!float, Typedef!double,
7830 float, real, Typedef!int, int))
7832 static foreach (T2; AliasSeq!(MyFloatImpl, Typedef!float))
7860 $(B Typedef) allows the creation of a unique type which is
7862 $(B Typedef) ensures the two types are not considered as equals.
7870 Note: If a library routine cannot handle the Typedef type
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 172 // If we have a typedef to a template specialization with exactly one
323 case Decl::Typedef: {
325 // If this is a typedef / using to something we consider a function, extract
328 K == Decl::Typedef
FormatString.cpp 980 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl();
983 const IdentifierInfo *Identifier = Typedef->getIdentifier();
1002 QualType T = Typedef->getUnderlyingType();
1006 Typedef = cast<TypedefType>(T)->getDecl();
TypePrinter.cpp 214 case Type::Typedef:
931 // cdecl function typedef used to declare a member function with the
1259 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl())
1260 OS << Typedef->getIdentifier()->getName() << "::";
1297 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) {
1298 assert(Typedef->getIdentifier() && "Typedef without identifier?");
1299 OS << Typedef->getIdentifier()->getName();
1364 // Find the outermost typedef or alias template.
ODRHash.cpp 240 typedef ConstDeclVisitor<ODRDeclVisitor> Inherited;
460 case Decl::Typedef:
658 typedef TypeVisitor<ODRTypeVisitor> Inherited;
709 // Return the RecordType if the typedef only strips away a keyword.
Type.cpp 82 else if (ty->getTypeClass() == Type::Typedef)
378 // If this is a typedef for an array type, strip the typedef off without
379 // losing all typedef information.
653 // If this is a typedef for a structure type, strip the typedef off without
654 // losing all typedef information.
672 // If this is a typedef for a union type, strip the typedef off without
673 // losing all typedef information
    [all...]
ASTContext.cpp 172 // Allow association with Y across {} in `typedef struct X {} Y`.
179 // If location of the typedef name is in a macro, it is because being
590 // Attach any tag type's documentation to its typedef if latter
1873 // An alignment on a typedef overrides anything else.
1883 // If we had an array type, its element type might be a typedef
2323 case Type::Typedef: {
2324 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl();
2325 TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
2326 // If the typedef has an aligned attribute on it, it overrides any computed
2329 if (unsigned AttrAlign = Typedef->getMaxAlignment())
    [all...]
DeclBase.cpp 770 case Typedef:
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp 82 FACTORY_SYMTAG_CASE(Typedef, PDBSymbolTypeTypedef)
PDBExtras.cpp 256 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Typedef, OS)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 876 // Create the new typedef
877 TypedefNameDecl *Typedef;
879 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
882 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
885 Typedef->setInvalidDecl();
887 // If the old typedef was the name for linkage purposes of an anonymous
888 // tag decl, re-establish that relationship for the new typedef.
894 newTag->setTypedefNameForAnonDecl(Typedef);
906 // If the typedef types are not identical, reject them.
907 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 100 TKCASE(Typedef);
495 case Type::Typedef:
593 TKIND(Typedef);
CXCursor.cpp 1223 if (const TypedefType *Typedef = Ty->getAs<TypedefType>())
1224 return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU);
1457 typedef llvm::DenseMap<CXCursor, unsigned> CXCursorSet_Impl;
1547 typedef SmallVector<CXCursor, 2> CursorVec;
CIndex.cpp 834 // If we have a function declared directly (without the use of a typedef),
1365 if (const TypedefType *Typedef = dyn_cast<TypedefType>(T))
1366 return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU));
1575 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
1577 MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(), TU));
3374 typedef SmallVector<SourceRange, 4> RefNamePieces;
4555 typedef enum CXChildVisitResult (^CXCursorVisitorBlock)(CXCursor cursor,
4566 typedef struct _CXChildVisitResult {
6255 } else if (const TypedefDecl *Typedef = dyn_cast<TypedefDecl>(D)) {
6256 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InterfaceStubFunctionsConsumer.cpp 187 case Decl::Kind::Typedef:
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTCommon.cpp 353 case Decl::Typedef:
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexSymbol.cpp 173 case Decl::Typedef:

Completed in 45 milliseconds

1 2