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

References

tools/clang/include/clang/Basic/JsonSupport.h
   37     Pos = Str.find('\\', Pos);
   37     Pos = Str.find('\\', Pos);
   38     if (Pos == std::string::npos)
   42     size_t TempPos = (Pos != 0) ? Pos - 1 : 0;
   42     size_t TempPos = (Pos != 0) ? Pos - 1 : 0;
   45     if (TempPos != Str.find("\\\\", Pos)) {
   46       Str.insert(Pos, "\\");
   47       ++Pos; // As we insert the backslash move plus one.
   50     ++Pos;
   54   Pos = 0;
   56     Pos = Str.find('\"', Pos);
   56     Pos = Str.find('\"', Pos);
   57     if (Pos == std::string::npos)
   61     size_t TempPos = (Pos != 0) ? Pos - 1 : 0;
   61     size_t TempPos = (Pos != 0) ? Pos - 1 : 0;
   64     if (TempPos != Str.find("\\\"", Pos)) {
   65       Str.insert(Pos, "\\");
   66       ++Pos; // As we insert the escape-character move plus one.
   69     ++Pos;