Home | History | Annotate | Download | only in vendor

Lines Matching refs:tryConvert

177         // Try to convert a T1 to a T2 by plugging into tryConvert
178 static fail tryConvert(...);
179 static succeed tryConvert(const T2&);
183 // Disable spurious loss of precision warnings in tryConvert(makeT1())
188 // Standard trick: the (...) version of tryConvert will be chosen from
193 sizeof(tryConvert(makeT1())) == sizeof(succeed);