Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOverload.cpp2030 QualType ToPointeeType = ToTypePtr->getPointeeType(); in IsPointerConversion() local
2031 if (FromType->isObjCObjectPointerType() && ToPointeeType->isVoidType() && in IsPointerConversion()
2035 ToPointeeType, in IsPointerConversion()
2047 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion()
2054 ToPointeeType->isVoidType()) { in IsPointerConversion()
2056 ToPointeeType, in IsPointerConversion()
2064 ToPointeeType->isVoidType()) { in IsPointerConversion()
2066 ToPointeeType, in IsPointerConversion()
2074 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2076 ToPointeeType, in IsPointerConversion()
[all …]
HDSemaExprCXX.cpp2869 if (const BuiltinType *ToPointeeType in IsStringLiteralToNonConstPointerConversion() local
2881 return (ToPointeeType->getKind() == BuiltinType::Char_U || in IsStringLiteralToNonConstPointerConversion()
2882 ToPointeeType->getKind() == BuiltinType::Char_S); in IsStringLiteralToNonConstPointerConversion()
2884 return ToPointeeType->isWideCharType(); in IsStringLiteralToNonConstPointerConversion()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTImporter.cpp1523 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitPointerType() local
1524 if (ToPointeeType.isNull()) in VisitPointerType()
1527 return Importer.getToContext().getPointerType(ToPointeeType); in VisitPointerType()
1532 QualType ToPointeeType = Importer.Import(T->getPointeeType()); in VisitBlockPointerType() local
1533 if (ToPointeeType.isNull()) in VisitBlockPointerType()
1536 return Importer.getToContext().getBlockPointerType(ToPointeeType); in VisitBlockPointerType()
1542 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitLValueReferenceType() local
1543 if (ToPointeeType.isNull()) in VisitLValueReferenceType()
1546 return Importer.getToContext().getLValueReferenceType(ToPointeeType); in VisitLValueReferenceType()
1552 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); in VisitRValueReferenceType() local
[all …]