Searched refs:toQuote (Results 1 – 4 of 4) sorted by relevance
22 final String toQuote = new String(Character.toChars(0x1F602)); in testSurrogatesByteBacked() local23 assertEquals(2, toQuote.length()); // just sanity check in testSurrogatesByteBacked()31 g.writeString(toQuote); in testSurrogatesByteBacked()48 g.writeString(toQuote); in testSurrogatesByteBacked()59 final String toQuote = new String(Character.toChars(0x1F602)); in testSurrogatesCharBacked() local60 assertEquals(2, toQuote.length()); // just sanity check in testSurrogatesCharBacked()68 g.writeString(toQuote); in testSurrogatesCharBacked()85 g.writeString(toQuote); in testSurrogatesCharBacked()
40 private UnicodeSet toQuote = new UnicodeSet(PATTERN_WHITESPACE); field in UnicodeSetPrettyPrinter98 return toQuote; in getToQuote()105 public UnicodeSetPrettyPrinter setToQuote(UnicodeSet toQuote) { in setToQuote() argument106 if (toQuote != null) { in setToQuote()107 toQuote = toQuote.cloneAsThawed(); in setToQuote()108 toQuote.addAll(PATTERN_WHITESPACE); in setToQuote()109 this.toQuote = toQuote; in setToQuote()192 if (!toQuote.contains(cp) && !QUOTED_SYNTAX.contains(cp)) { in addSpaceAsNeededBefore()225 if (toQuote.containsSome(s) && quoter != null) { in appendQuoted()238 if (toQuote.contains(codePoint)) { in appendQuoted()
140 auto quote = [](std::string toQuote) { return '"' + toQuote + '"'; }; in __anona8aa82380402() argument
81 if (toQuote.contains(codePoint)) { in appendQuoted()236 private static final UnicodeSet toQuote = new UnicodeSet( field in UnicodeSetFormat