Searched defs:Pointee (Results 1 - 5 of 5) sorted by path

/external/clang/include/clang/AST/
H A DType.h1972 PointerType(QualType Pointee, QualType CanonicalPtr) : argument
1973 Type(Pointer, CanonicalPtr, Pointee->isDependentType(),
1974 Pointee->isInstantiationDependentType(),
1975 Pointee->isVariablyModifiedType(),
1976 Pointee->containsUnexpandedParameterPack()),
1977 PointeeType(Pointee) {
1991 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) { argument
1992 ID.AddPointer(Pointee.getAsOpaquePtr());
2058 /// "void (^)(int)", etc. Pointee is required to always be a function type.
2062 BlockPointerType(QualType Pointee, QualTyp argument
2082 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) argument
2179 MemberPointerType(QualType Pointee, const Type *Cls, QualType CanonicalPtr) argument
2215 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee, const Type *Class) argument
4475 ObjCObjectPointerType(QualType Canonical, QualType Pointee) argument
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2058 QualType Pointee = ptr->getPointeeType(); local
2059 if (Pointee->isAnyPointerType()) {
2060 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
H A DExpr.cpp3122 QualType Pointee = PT->getPointeeType(); local
3123 if (!Pointee.hasQualifiers() &&
3124 Pointee->isVoidType() && // to void*
/external/clang/lib/Sema/
H A DSemaDecl.cpp4599 QualType Pointee = PTy->getPointeeType(); local
4601 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
/external/clang/lib/Serialization/
H A DASTReader.cpp5384 QualType Pointee = readType(*Loc.F, Record, Idx); local
5385 return Context.getObjCObjectPointerType(Pointee);

Completed in 2010 milliseconds