Searched refs:QuoteStyle (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | BreakableToken.cpp | 296 const FormatToken &Tok, QuoteStyleType QuoteStyle, bool UnindentPlus, in BreakableStringLiteralUsingOperators() argument 300 Tok, StartColumn, /*Prefix=*/QuoteStyle == SingleQuotes ? "'" in BreakableStringLiteralUsingOperators() 301 : QuoteStyle == AtDoubleQuotes ? "@\"" in BreakableStringLiteralUsingOperators() 303 /*Postfix=*/QuoteStyle == SingleQuotes ? "'" : "\"", in BreakableStringLiteralUsingOperators() 306 QuoteStyle(QuoteStyle) { in BreakableStringLiteralUsingOperators() 321 assert(QuoteStyle == DoubleQuotes); in BreakableStringLiteralUsingOperators() 329 if (QuoteStyle == SingleQuotes) { in BreakableStringLiteralUsingOperators() 335 if (QuoteStyle == AtDoubleQuotes) { in BreakableStringLiteralUsingOperators() 373 (QuoteStyle == AtDoubleQuotes ? 2 : 1))); in getContentStartColumn() 380 Tok, /*Offset=*/(QuoteStyle == AtDoubleQuotes ? 2 : 1) + TailOffset + in insertBreak()
|
H A D | BreakableToken.h | 302 const FormatToken &Tok, QuoteStyleType QuoteStyle, bool UnindentPlus, 317 QuoteStyleType QuoteStyle; variable
|
H A D | ContinuationIndenter.cpp | 2364 BreakableStringLiteralUsingOperators::QuoteStyleType QuoteStyle; in createBreakableToken() local 2367 QuoteStyle = BreakableStringLiteralUsingOperators::SingleQuotes; in createBreakableToken() 2370 QuoteStyle = BreakableStringLiteralUsingOperators::AtDoubleQuotes; in createBreakableToken() 2372 QuoteStyle = BreakableStringLiteralUsingOperators::DoubleQuotes; in createBreakableToken() 2377 Current, QuoteStyle, in createBreakableToken()
|