Lines Matching refs:edit
74 void TestFormatContext::Report(const DataEdit &edit) { in Report() argument
75 std::string str{edit.descriptor}; in Report()
76 if (edit.repeat != 1) { in Report()
77 str = std::to_string(edit.repeat) + '*' + str; in Report()
79 if (edit.variation) { in Report()
80 str += edit.variation; in Report()
82 if (edit.width) { in Report()
83 str += std::to_string(*edit.width); in Report()
85 if (edit.digits) { in Report()
86 str += "."s + std::to_string(*edit.digits); in Report()
88 if (edit.expoDigits) { in Report()
89 str += "E"s + std::to_string(*edit.expoDigits); in Report()