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

References

tools/clang/lib/Format/Format.cpp
 1275              !Input.startswith("\"")) ||
 1277              !Input.startswith("\'")))
 1300         for (size_t i = 1; i < Input.size() - 1; i++) {
 1301           switch (Input[i]) {
 1303             if (!Escaped && i + 1 < Input.size() &&
 1304                 ((IsSingle && Input[i + 1] == '"') ||
 1305                  (!IsSingle && Input[i + 1] == '\''))) {
 1315             if (!Escaped && IsSingle == (Input[i] == '\'')) {