Searched refs:Typedef (Results 1 - 25 of 37) sorted by relevance

12

/external/clang/test/Index/
H A Dcomment-cplus11-specific.cpp15 typedef inner::Opaque Typedef; typedef in namespace:borrow
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dir.py682 class Typedef(genpyx.Typedef, Declarator): class in inherits:genpyx.Typedef, Declarator
850 self.typedefs = {} # map names to Typedef's
1000 if isinstance(declarator, Typedef):
1036 if isinstance(declarator,Typedef):
1081 tp = decl.deepfind(Typedef)
1150 cparse.Typedef : Typedef ,
H A Dlexer.py16 #from cparse import BasicType, Qualifier, StorageClass, Typedef, Ellipses, GCCBuiltin
36 self.lookup['typedef'] = host.Typedef()
H A Dcparse.py66 class Typedef(StorageClass): class in inherits:StorageClass
515 return self.find(Typedef) is not None
H A Dgenpyx.py327 " this is the common part of pyxstr that gets called from both Declarator and Typedef "
343 #if isinstance(self,Typedef):
399 class Typedef(Declarator): class in inherits:Declarator
/external/clang/lib/Analysis/
H A DFormatString.cpp775 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); local
778 const IdentifierInfo *Identifier = Typedef->getIdentifier();
797 QualType T = Typedef->getUnderlyingType();
801 Typedef = cast<TypedefType>(T)->getDecl();
/external/clang/lib/AST/
H A DComment.cpp232 case Decl::Typedef: {
H A DTypePrinter.cpp173 case Type::Typedef:
841 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl())
842 OS << Typedef->getIdentifier()->getName() << "::";
876 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) {
877 assert(Typedef->getIdentifier() && "Typedef without identifier?");
878 OS << Typedef->getIdentifier()->getName();
H A DDeclBase.cpp507 case Typedef:
H A DASTContext.cpp1657 case Type::Typedef: {
1658 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl(); local
1660 = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
1664 if (unsigned AttrAlign = Typedef->getMaxAlignment())
2913 if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl))
2914 return getTypedefType(Typedef);
2949 TypedefType(Type::Typedef, Decl, Canonical);
H A DASTImporter.cpp608 case Type::Typedef:
1364 // Typedef/non-typedef mismatch.
2413 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
2414 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2499 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
2500 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
H A DType.cpp55 else if (ty->getTypeClass() == Type::Typedef)
1332 case Typedef:
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp225 TypedefNameDecl *Typedef; local
227 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
230 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
233 Typedef->setInvalidDecl();
242 newTag->setTypedefNameForAnonDecl(Typedef);
255 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
257 Typedef->setPreviousDeclaration(InstPrevTypedef);
260 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
262 Typedef->setAccess(D->getAccess());
264 return Typedef;
268 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false); local
274 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true); local
[all...]
/external/clang/lib/Serialization/
H A DASTCommon.cpp154 case Decl::Typedef:
H A DASTReader.cpp3226 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
3227 Context.setFILEDecl(Typedef->getDecl());
3247 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
3248 Context.setjmp_bufDecl(Typedef->getDecl());
3268 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
3269 Context.setsigjmp_bufDecl(Typedef->getDecl());
3304 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>())
3305 Context.setucontext_tDecl(Typedef->getDecl());
/external/protobuf/editors/
H A Dproto.vim95 HiLink pbTypedef Typedef
/external/clang/tools/libclang/
H A DCXType.cpp82 TKCASE(Typedef);
384 case Type::Typedef:
466 TKIND(Typedef);
H A DCXCursor.cpp922 if (const TypedefType *Typedef = Ty->getAs<TypedefType>())
923 return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU);
H A DCIndex.cpp1247 if (const TypedefType *Typedef = dyn_cast<TypedefType>(T))
1248 return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU));
1447 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
1448 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
4346 } else if (const TypedefDecl *Typedef = dyn_cast<TypedefDecl>(D)) {
4347 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo())
4518 case Decl::Typedef:
/external/chromium_org/tools/clang/plugins/
H A DFindBadConstructs.cpp400 case Type::Typedef: {
/external/clang/lib/Frontend/
H A DASTConsumers.cpp416 case Decl::Typedef:
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dast.py272 class Typedef(_GenericDeclaration): class in inherits:_GenericDeclaration
1376 return Typedef(indices.start, indices.end, name.name,
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Ddeprecated_idl_parser.pm117 struct( Typedef => {
126 # Maps 'typedef name' -> Typedef
852 my $typedef = Typedef->new();
/external/clang/include/clang/AST/
H A DDecl.h2393 : TypedefNameDecl(Typedef, DC, StartLoc, IdLoc, Id, TInfo) {}
2405 static bool classofKind(Kind K) { return K == Typedef; }
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1358 case Type::Typedef:

Completed in 761 milliseconds

12