Home | History | Annotate | Download | only in Edit

Lines Matching refs:suff

697   struct Suff {
698 static bool has(StringRef suff, StringRef &text) {
699 if (text.endswith(suff)) {
700 text = text.substr(0, text.size()-suff.size());
708 if (Suff::has("u", text)) {
710 } else if (Suff::has("U", text)) {
712 } else if (Suff::has("ll", text)) {
714 } else if (Suff::has("LL", text)) {
716 } else if (Suff::has("l", text)) {
718 } else if (Suff::has("L", text)) {
720 } else if (isFloat && Suff::has("f", text)) {
722 } else if (isFloat && Suff::has("F", text)) {