Lines Matching refs:s1
1743 bool ETSChecker::AreOverrideEquivalent(Signature *const s1, Signature *const s2)
1748 // Signatures s1 and s2 are override-equivalent only if s1 and s2 are the same.
1751 return s1->Function()->Id()->Name() == s2->Function()->Id()->Name() && Relation()->IsCompatibleTo(s1, s2);
1754 bool ETSChecker::IsReturnTypeSubstitutable(Signature *const s1, Signature *const s2)
1756 auto *const r1 = s1->ReturnType();
2151 std::stringstream s1;
2153 sig1->Params()[ix]->TsType()->ToAssemblerTypeWithRank(s1);
2155 if (s1.str() != s2.str()) {
2180 std::stringstream s1;
2182 rv1->TsType()->ToAssemblerTypeWithRank(s1);
2184 return s1.str() == s2.str();