Home
last modified time | relevance | path

Searched refs:Typedef (Results 1 – 25 of 46) sorted by relevance

12

/external/clang/test/Index/
Dannotate-comments-typedef.m20Typedef file="{{[^"]+}}annotate-comments-typedef.m" line="[[@LINE-1]]" column="3"><Name>&lt;anonym…
31Typedef file="{{[^"]+}}annotate-comments-typedef.m" line="[[@LINE-2]]" column="16"><Name>E</Name><…
38Typedef file="{{[^"]+}}annotate-comments-typedef.m" line="[[@LINE-1]]" column="11"><Name>&lt;anony…
48Typedef file="{{[^"]+}}annotate-comments-typedef.m" line="[[@LINE-2]]" column="21"><Name>Foo1T</Na…
/external/clang/include/clang/Analysis/Visitors/
DCFGRecStmtDeclVisitor.h65 DISPATCH_CASE(Typedef) in VisitDecl()
85 DEFAULT_DISPATCH(Typedef) in DEFAULT_DISPATCH()
/external/clang/lib/Analysis/
DFormatString.cpp775 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); in namedTypeToLengthModifier() local
778 const IdentifierInfo *Identifier = Typedef->getIdentifier(); in namedTypeToLengthModifier()
797 QualType T = Typedef->getUnderlyingType(); in namedTypeToLengthModifier()
801 Typedef = cast<TypedefType>(T)->getDecl(); in namedTypeToLengthModifier()
/external/clang/lib/Sema/
DSemaTemplateInstantiateDecl.cpp218 TypedefNameDecl *Typedef; in InstantiateTypedefNameDecl() local
220 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(), in InstantiateTypedefNameDecl()
223 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(), in InstantiateTypedefNameDecl()
226 Typedef->setInvalidDecl(); in InstantiateTypedefNameDecl()
235 newTag->setTypedefNameForAnonDecl(Typedef); in InstantiateTypedefNameDecl()
248 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef); in InstantiateTypedefNameDecl()
250 Typedef->setPreviousDeclaration(InstPrevTypedef); in InstantiateTypedefNameDecl()
253 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef); in InstantiateTypedefNameDecl()
255 Typedef->setAccess(D->getAccess()); in InstantiateTypedefNameDecl()
257 return Typedef; in InstantiateTypedefNameDecl()
[all …]
/external/clang/tools/libclang/
DCXType.cpp82 TKCASE(Typedef); in GetTypeKind()
373 case Type::Typedef: in clang_getTypeDeclaration()
455 TKIND(Typedef); in clang_getTypeKindSpelling()
DCXCursor.cpp897 if (const TypedefType *Typedef = Ty->getAs<TypedefType>()) in getTypeRefCursor() local
898 return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU); in getTypeRefCursor()
DCIndex.cpp1230 if (const TypedefType *Typedef = dyn_cast<TypedefType>(T)) in VisitNestedNameSpecifier() local
1231 return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU)); in VisitNestedNameSpecifier()
1430 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>()) in VisitBuiltinTypeLoc() local
1431 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(), in VisitBuiltinTypeLoc()
4265 } else if (const TypedefDecl *Typedef = dyn_cast<TypedefDecl>(D)) { in getFullCursorExtent() local
4266 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo()) in getFullCursorExtent()
4437 case Decl::Typedef: in clang_getCursorDefinition()
/external/clang/lib/AST/
DTypePrinter.cpp172 case Type::Typedef: in canPrefixQualifiers()
827 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl()) in AppendScope() local
828 OS << Typedef->getIdentifier()->getName() << "::"; in AppendScope()
862 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) { in printTag() local
863 assert(Typedef->getIdentifier() && "Typedef without identifier?"); in printTag()
864 OS << Typedef->getIdentifier()->getName(); in printTag()
DComment.cpp232 case Decl::Typedef: { in fill()
DASTImporter.cpp594 case Type::Typedef: in IsStructurallyEquivalent()
2362 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { in VisitEnumDecl() local
2363 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) in VisitEnumDecl()
2448 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { in VisitRecordDecl() local
2449 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) in VisitRecordDecl()
DType.cpp55 else if (ty->getTypeClass() == Type::Typedef) in getBaseTypeIdentifier()
1335 case Typedef: in isSpecifierType()
DASTContext.cpp1556 case Type::Typedef: { in getTypeInfoImpl()
1557 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl(); in getTypeInfoImpl() local
1559 = getTypeInfo(Typedef->getUnderlyingType().getTypePtr()); in getTypeInfoImpl()
1563 if (unsigned AttrAlign = Typedef->getMaxAlignment()) in getTypeInfoImpl()
2774 if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl)) in getTypeDeclTypeSlow() local
2775 return getTypedefType(Typedef); in getTypeDeclTypeSlow()
2810 TypedefType(Type::Typedef, Decl, Canonical); in getTypedefType()
DDeclBase.cpp505 case Typedef: in getIdentifierNamespaceForKind()
/external/clang/include/clang/Basic/
DDeclNodes.td21 def Typedef : DDecl<TypedefName>;
/external/clang/lib/Serialization/
DASTCommon.cpp153 case Decl::Typedef: in isRedeclarableDeclKind()
DASTReader.cpp3058 if (const TypedefType *Typedef = FileType->getAs<TypedefType>()) in InitializeContext() local
3059 Context.setFILEDecl(Typedef->getDecl()); in InitializeContext()
3079 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>()) in InitializeContext() local
3080 Context.setjmp_bufDecl(Typedef->getDecl()); in InitializeContext()
3100 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>()) in InitializeContext() local
3101 Context.setsigjmp_bufDecl(Typedef->getDecl()); in InitializeContext()
3136 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>()) in InitializeContext() local
3137 Context.setucontext_tDecl(Typedef->getDecl()); in InitializeContext()
/external/clang/include/clang/AST/
DTypeNodes.def83 NON_CANONICAL_TYPE(Typedef, Type)
DCommentCommands.td204 def Typedef : DeclarationVerbatimLineCommand<"typedef">;
DDecl.h2335 : TypedefNameDecl(Typedef, DC, StartLoc, IdLoc, Id, TInfo) {} in TypedefDecl()
2347 static bool classofKind(Kind K) { return K == Typedef; } in classofKind()
/external/protobuf/editors/
Dproto.vim95 HiLink pbTypedef Typedef
/external/clang/lib/Frontend/
DASTConsumers.cpp412 case Decl::Typedef: in PrintDeclContext()
/external/eigen/doc/
DC03_TutorialArrayClass.dox47 <th>Typedef </th>
/external/llvm/docs/
DProgrammersManual.rst2522 * | ``Module::iterator`` - Typedef for function list iterator
2523 | ``Module::const_iterator`` - Typedef for const_iterator.
2537 * | ``Module::global_iterator`` - Typedef for global variable list iterator
2538 | ``Module::const_global_iterator`` - Typedef for const_iterator.
2635 * | ``Value::use_iterator`` - Typedef for iterator over the use-list
2636 | ``Value::const_use_iterator`` - Typedef for const_iterator over the
2708 * | ``User::op_iterator`` - Typedef for iterator over the operand list
2990 * | ``Function::iterator`` - Typedef for basic block list iterator
2991 | ``Function::const_iterator`` - Typedef for const_iterator.
3003 * | ``Function::arg_iterator`` - Typedef for the argument list iterator
[all …]
/external/chromium/testing/gmock/scripts/generator/cpp/
Dast.py272 class Typedef(_GenericDeclaration): class
1376 return Typedef(indices.start, indices.end, name.name,
/external/harfbuzz_ng/
DNEWS347 - Typedef for hb_language_t changed.

12