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

References

lib/Support/YAMLParser.cpp
 1810   if (!Raw.empty() && Raw != "!") {
 1810   if (!Raw.empty() && Raw != "!") {
 1812     if (Raw.find_last_of('!') == 0) {
 1814       Ret += Raw.substr(1);
 1816     } else if (Raw.startswith("!!")) {
 1818       Ret += Raw.substr(2);
 1821       StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1);
 1821       StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1);
 1832       Ret += Raw.substr(Raw.find_last_of('!') + 1);
 1832       Ret += Raw.substr(Raw.find_last_of('!') + 1);