Searched refs:toQuote (Results 1 – 3 of 3) sorted by relevance
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 = (UnicodeSet) 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 __anonda3c65fc0402() argument
81 if (toQuote.contains(codePoint)) { in appendQuoted()236 private static final UnicodeSet toQuote = (UnicodeSet) new UnicodeSet( field in UnicodeSetFormat