Home
last modified time | relevance | path

Searched refs:RightBraceQuote (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp323 RightBraceQuote = Style.Cpp11BracedListStyle ? "\"}" : "\" }"; in BreakableStringLiteralUsingOperators()
331 RightBraceQuote = Style.SpacesInParensOptions.Other ? "' )" : "')"; in BreakableStringLiteralUsingOperators()
342 RightBraceQuote = Style.SpacesInParensOptions.Other ? "\" )" : "\")"; in BreakableStringLiteralUsingOperators()
359 return UnbreakableTailLength + (BracesNeeded ? RightBraceQuote.size() : 1) + in getRemainingLength()
405 /*PreviousPostfix=*/RightBraceQuote, in updateAfterBroken()
H A DBreakableToken.h321 StringRef RightBraceQuote; variable