Home
last modified time | relevance | path

Searched refs:toQuote (Results 1 – 4 of 4) sorted by relevance

/external/jackson-core/src/test/java/com/fasterxml/jackson/failing/
DSurrogate223Test.java22 final String toQuote = new String(Character.toChars(0x1F602)); in testSurrogatesByteBacked() local
23 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() local
60 assertEquals(2, toQuote.length()); // just sanity check in testSurrogatesCharBacked()
68 g.writeString(toQuote); in testSurrogatesCharBacked()
85 g.writeString(toQuote); in testSurrogatesCharBacked()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DUnicodeSetPrettyPrinter.java40 private UnicodeSet toQuote = new UnicodeSet(PATTERN_WHITESPACE); field in UnicodeSetPrettyPrinter
98 return toQuote; in getToQuote()
105 public UnicodeSetPrettyPrinter setToQuote(UnicodeSet toQuote) { in setToQuote() argument
106 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()
/external/parameter-framework/upstream/utility/test/
Dutility.cpp140 auto quote = [](std::string toQuote) { return '"' + toQuote + '"'; }; in __anona8aa82380402() argument
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/draft/
DUnicodeSetFormat.java81 if (toQuote.contains(codePoint)) { in appendQuoted()
236 private static final UnicodeSet toQuote = new UnicodeSet( field in UnicodeSetFormat