Home
last modified time | relevance | path

Searched refs:ToPointeeType (Results 1 – 3 of 3) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaOverload.cpp2016 QualType ToPointeeType = ToTypePtr->getPointeeType(); in IsPointerConversion() local
2017 if (FromType->isObjCObjectPointerType() && ToPointeeType->isVoidType() && in IsPointerConversion()
2021 ToPointeeType, in IsPointerConversion()
2033 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion()
2040 ToPointeeType->isVoidType()) { in IsPointerConversion()
2042 ToPointeeType, in IsPointerConversion()
2050 ToPointeeType->isVoidType()) { in IsPointerConversion()
2052 ToPointeeType, in IsPointerConversion()
2060 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2062 ToPointeeType, in IsPointerConversion()
[all …]
H A DSemaExprCXX.cpp2526 if (const BuiltinType *ToPointeeType in IsStringLiteralToNonConstPointerConversion() local
2538 return (ToPointeeType->getKind() == BuiltinType::Char_U || in IsStringLiteralToNonConstPointerConversion()
2539 ToPointeeType->getKind() == BuiltinType::Char_S); in IsStringLiteralToNonConstPointerConversion()
2541 return ToPointeeType->isWideCharType(); in IsStringLiteralToNonConstPointerConversion()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DASTImporter.cpp1479 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitPointerType() local
1480 if (ToPointeeType.isNull()) in VisitPointerType()
1483 return Importer.getToContext().getPointerType(ToPointeeType); in VisitPointerType()
1488 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitBlockPointerType() local
1489 if (ToPointeeType.isNull()) in VisitBlockPointerType()
1492 return Importer.getToContext().getBlockPointerType(ToPointeeType); in VisitBlockPointerType()
1498 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitLValueReferenceType() local
1499 if (ToPointeeType.isNull()) in VisitLValueReferenceType()
1502 return Importer.getToContext().getLValueReferenceType(ToPointeeType); in VisitLValueReferenceType()
1508 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitRValueReferenceType() local
[all …]