Home | History | Annotate | Download | only in Format

Lines Matching refs:IsSingle

854         bool IsSingle = Style.JavaScriptQuotes == FormatStyle::JSQS_Single;
861 Replace(Start, 1, IsSingle ? "'" : "\"");
863 IsSingle ? "'" : "\"");
872 ((IsSingle && Input[i + 1] == '"') ||
873 (!IsSingle && Input[i + 1] == '\''))) {
884 if (!Escaped && IsSingle == (Input[i] == '\'')) {