Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/escape/
DEscapers.java239 char[] surrogateChars = new char[2]; in wrap()
240 Character.toChars(cp, surrogateChars, 0); in wrap() argument
241 char[] hiChars = escaper.escape(surrogateChars[0]); in wrap()
242 char[] loChars = escaper.escape(surrogateChars[1]); in wrap()
262 output[0] = surrogateChars[0]; in wrap()
269 output[hiCount] = surrogateChars[1]; in wrap()