Searched refs:Pointee (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h1973 PointerType(QualType Pointee, QualType CanonicalPtr) : argument
1974 Type(Pointer, CanonicalPtr, Pointee->isDependentType(),
1975 Pointee->isInstantiationDependentType(),
1976 Pointee->isVariablyModifiedType(),
1977 Pointee->containsUnexpandedParameterPack()),
1978 PointeeType(Pointee) {
1992 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) { argument
1993 ID.AddPointer(Pointee.getAsOpaquePtr());
2039 /// "void (^)(int)", etc. Pointee is required to always be a function type.
2043 BlockPointerType(QualType Pointee, QualTyp argument
2063 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) argument
2160 MemberPointerType(QualType Pointee, const Type *Cls, QualType CanonicalPtr) argument
2195 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee, const Type *Class) argument
4448 ObjCObjectPointerType(QualType Canonical, QualType Pointee) argument
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp2300 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
2301 QualType PointeeElem = Context.getBaseElementType(Pointee);
2303 if (unsigned AddressSpace = Pointee.getAddressSpace())
2306 << Pointee.getUnqualifiedType() << AddressSpace;
2309 if (Pointee->isVoidType() && !isSFINAEContext()) {
2315 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
2318 } else if (!Pointee->isDependentType()) {
2319 if (!RequireCompleteType(StartLoc, Pointee,
2332 if (Pointee
[all...]
H A DSemaDecl.cpp4436 QualType Pointee = PTy->getPointeeType(); local
4438 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp2400 QualType Pointee = Pointer->getPointeeType();
2401 return Pointee->isVoidType() || Pointee->isRecordType();
H A DExpr.cpp3082 QualType Pointee = PT->getPointeeType(); local
3083 if (!Pointee.hasQualifiers() &&
3084 Pointee->isVoidType() && // to void*
H A DASTContext.cpp2055 QualType Pointee = ptr->getPointeeType(); local
2056 if (Pointee->isAnyPointerType()) {
2057 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
H A DExprConstant.cpp4663 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
4664 return HandleLValueArrayAdjustment(Info, E, Result, Pointee,
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp4832 QualType Pointee = readType(*Loc.F, Record, Idx); local
4833 return Context.getObjCObjectPointerType(Pointee);

Completed in 297 milliseconds