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

References

tools/clang/lib/Format/FormatToken.h
  463     if (Content.startswith("\"") || Content.startswith("'"))
  463     if (Content.startswith("\"") || Content.startswith("'"))
  464       Content = Content.drop_front(1);
  464       Content = Content.drop_front(1);
  465     if (Content.endswith("\"") || Content.endswith("'"))
  465     if (Content.endswith("\"") || Content.endswith("'"))
  466       Content = Content.drop_back(1);
  466       Content = Content.drop_back(1);
  467     Content = Content.trim();
  467     Content = Content.trim();
  468     return Content.size() > 1 &&
  469            (Content.back() == ':' || Content.back() == '=');
  469            (Content.back() == ':' || Content.back() == '=');