• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/AST/

Lines Matching refs:ToType

319                                    QualType ToType, bool PrintTree,
373 QualType ToType =
374 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType));
376 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
391 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType;
623 void SetTypeDiff(QualType FromType, QualType ToType, bool FromDefault,
628 FlatTree[CurrentNode].ToArgInfo.ArgType = ToType;
788 void GetTypeDiff(QualType &FromType, QualType &ToType) {
791 ToType = FlatTree[ReadNode].ToArgInfo.ArgType;
1111 QualType ToType,
1114 if (FromType.isNull() || ToType.isNull())
1117 if (Context.hasSameType(FromType, ToType))
1121 ToArgTST = GetTemplateSpecializationType(Context, ToType);
1135 QualType ToType = GetType(ToIter);
1138 bool ToDefault = ToIter.isEnd() && !ToType.isNull();
1142 if (OnlyPerformTypeDiff(Context, FromType, ToType, FromArgTST, ToArgTST)) {
1143 Tree.SetTypeDiff(FromType, ToType, FromDefault, ToDefault);
1144 Tree.SetSame(!FromType.isNull() && !ToType.isNull() &&
1145 Context.hasSameType(FromType, ToType));
1150 ToQual = ToType.getQualifiers();
1471 QualType FromType, ToType;
1472 Tree.GetTypeDiff(FromType, ToType);
1473 PrintTypeNames(FromType, ToType, Tree.FromDefault(), Tree.ToDefault(),
1627 void PrintTypeNames(QualType FromType, QualType ToType,
1629 assert((!FromType.isNull() || !ToType.isNull()) &&
1637 if (!FromType.isNull() && !ToType.isNull() &&
1639 ToType.getLocalUnqualifiedType()) {
1641 ToQual = ToType.getLocalQualifiers();
1649 std::string ToTypeStr = ToType.isNull() ? "(no argument)"
1650 : ToType.getAsString(Policy);
1656 std::string ToCanTypeStr = ToType.getCanonicalType().getAsString(Policy);
2010 QualType ToType, bool PrintTree, bool PrintFromType,
2018 FromTemplateType(PrintFromType ? FromType : ToType),
2019 ToTemplateType(PrintFromType ? ToType : FromType),
2074 QualType ToType, bool PrintTree,
2079 TemplateDiff TD(OS, Context, FromType, ToType, PrintTree, PrintFromType,