reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
 1010       End = Nested ? Text.find_first_of("%|}", End + 2)
 1010       End = Nested ? Text.find_first_of("%|}", End + 2)
 1011                    : Text.find_first_of('%', End + 2);
 1012     while (End < Text.size() - 1 && Text[End] == '%' &&
 1012     while (End < Text.size() - 1 && Text[End] == '%' &&
 1013            (Text[End + 1] == '%' || Text[End + 1] == '|'));
 1013            (Text[End + 1] == '%' || Text[End + 1] == '|'));
 1015     if (End) {
 1016       Parsed.push_back(New<TextPiece>(Text.slice(0, End), "diagtext"));
 1017       Text = Text.slice(End, StringRef::npos);