Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOverload.cpp2155 QualType ToPointeeType = ToTypePtr->getPointeeType(); in IsPointerConversion() local
2156 if (FromType->isObjCObjectPointerType() && ToPointeeType->isVoidType() && in IsPointerConversion()
2160 ToPointeeType, in IsPointerConversion()
2172 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion()
2179 ToPointeeType->isVoidType()) { in IsPointerConversion()
2181 ToPointeeType, in IsPointerConversion()
2189 ToPointeeType->isVoidType()) { in IsPointerConversion()
2191 ToPointeeType, in IsPointerConversion()
2199 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2201 ToPointeeType, in IsPointerConversion()
[all …]
DSemaExprCXX.cpp3151 if (const BuiltinType *ToPointeeType in IsStringLiteralToNonConstPointerConversion() local
3163 return (ToPointeeType->getKind() == BuiltinType::Char_U || in IsStringLiteralToNonConstPointerConversion()
3164 ToPointeeType->getKind() == BuiltinType::Char_S); in IsStringLiteralToNonConstPointerConversion()
3167 QualType(ToPointeeType, 0)); in IsStringLiteralToNonConstPointerConversion()
/external/clang/lib/AST/
DASTImporter.cpp1606 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitPointerType() local
1607 if (ToPointeeType.isNull()) in VisitPointerType()
1610 return Importer.getToContext().getPointerType(ToPointeeType); in VisitPointerType()
1615 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitBlockPointerType() local
1616 if (ToPointeeType.isNull()) in VisitBlockPointerType()
1619 return Importer.getToContext().getBlockPointerType(ToPointeeType); in VisitBlockPointerType()
1625 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitLValueReferenceType() local
1626 if (ToPointeeType.isNull()) in VisitLValueReferenceType()
1629 return Importer.getToContext().getLValueReferenceType(ToPointeeType); in VisitLValueReferenceType()
1635 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitRValueReferenceType() local
[all …]