Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOverload.cpp1638 QualType ToPointeeType = ToTypePtr->getPointeeType(); in IsPointerConversion() local
1639 if (FromType->isObjCObjectPointerType() && ToPointeeType->isVoidType() && in IsPointerConversion()
1643 ToPointeeType, in IsPointerConversion()
1655 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion()
1662 ToPointeeType->isVoidType()) { in IsPointerConversion()
1664 ToPointeeType, in IsPointerConversion()
1672 ToPointeeType->isVoidType()) { in IsPointerConversion()
1674 ToPointeeType, in IsPointerConversion()
1682 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
1684 ToPointeeType, in IsPointerConversion()
[all …]
DSemaExprCXX.cpp2025 if (const BuiltinType *ToPointeeType in IsStringLiteralToNonConstPointerConversion() local
2030 ((StrLit->isWide() && ToPointeeType->isWideCharType()) || in IsStringLiteralToNonConstPointerConversion()
2032 (ToPointeeType->getKind() == BuiltinType::Char_U || in IsStringLiteralToNonConstPointerConversion()
2033 ToPointeeType->getKind() == BuiltinType::Char_S)))) in IsStringLiteralToNonConstPointerConversion()
/external/clang/lib/AST/
DASTImporter.cpp1399 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitPointerType() local
1400 if (ToPointeeType.isNull()) in VisitPointerType()
1403 return Importer.getToContext().getPointerType(ToPointeeType); in VisitPointerType()
1408 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitBlockPointerType() local
1409 if (ToPointeeType.isNull()) in VisitBlockPointerType()
1412 return Importer.getToContext().getBlockPointerType(ToPointeeType); in VisitBlockPointerType()
1418 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitLValueReferenceType() local
1419 if (ToPointeeType.isNull()) in VisitLValueReferenceType()
1422 return Importer.getToContext().getLValueReferenceType(ToPointeeType); in VisitLValueReferenceType()
1428 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitRValueReferenceType() local
[all …]