Lines Matching refs:Paths

1567     CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,  in TryLValueToRValueCast()  local
1570 R->getPointeeType(), Paths)) in TryLValueToRValueCast()
1573 Self.BuildBasePathArray(Paths, BasePath); in TryLValueToRValueCast()
1668 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, in TryStaticDowncast() local
1670 if (!Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths)) { in TryStaticDowncast()
1698 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) { in TryStaticDowncast()
1703 if (!Paths.isRecordingPaths()) { in TryStaticDowncast()
1704 Paths.clear(); in TryStaticDowncast()
1705 Paths.setRecordingPaths(true); in TryStaticDowncast()
1706 Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths); in TryStaticDowncast()
1710 for (clang::CXXBasePath &Path : Paths) { in TryStaticDowncast()
1729 if (Paths.getDetectedVirtual() != nullptr) { in TryStaticDowncast()
1730 QualType VirtualBase(Paths.getDetectedVirtual(), 0); in TryStaticDowncast()
1740 Paths.front(), in TryStaticDowncast()
1753 Self.BuildBasePathArray(Paths, BasePath); in TryStaticDowncast()
1809 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, in TryStaticMemberPointerUpcast() local
1811 if (!Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths)) in TryStaticMemberPointerUpcast()
1815 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) { in TryStaticMemberPointerUpcast()
1816 Paths.clear(); in TryStaticMemberPointerUpcast()
1817 Paths.setRecordingPaths(true); in TryStaticMemberPointerUpcast()
1819 Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths); in TryStaticMemberPointerUpcast()
1822 std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths); in TryStaticMemberPointerUpcast()
1829 if (const RecordType *VBase = Paths.getDetectedVirtual()) { in TryStaticMemberPointerUpcast()
1839 Paths.front(), in TryStaticMemberPointerUpcast()
1873 Self.BuildBasePathArray(Paths, BasePath); in TryStaticMemberPointerUpcast()