Lines Matching refs:edit
68 void TestFormatContext::Report(const std::optional<DataEdit> &edit) { in Report() argument
69 if (edit) { in Report()
70 std::string str{edit->descriptor}; in Report()
71 if (edit->repeat != 1) { in Report()
72 str = std::to_string(edit->repeat) + '*' + str; in Report()
74 if (edit->variation) { in Report()
75 str += edit->variation; in Report()
77 if (edit->width) { in Report()
78 str += std::to_string(*edit->width); in Report()
80 if (edit->digits) { in Report()
81 str += "."s + std::to_string(*edit->digits); in Report()
83 if (edit->expoDigits) { in Report()
84 str += "E"s + std::to_string(*edit->expoDigits); in Report()