Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DProperties.java656 char[] uu = new char[6]; in writeComments() local
657 uu[0] = '\\'; in writeComments()
658 uu[1] = 'u'; in writeComments()
665 uu[2] = toHex((c >> 12) & 0xf); in writeComments()
666 uu[3] = toHex((c >> 8) & 0xf); in writeComments()
667 uu[4] = toHex((c >> 4) & 0xf); in writeComments()
668 uu[5] = toHex( c & 0xf); in writeComments()
669 bw.write(new String(uu)); in writeComments()
/libcore/ojluni/src/main/java/sun/misc/
DVersion.java282 String uu = cs.subSequence(1, 3).toString(); in initVersions() local
283 jvm_update_version = Integer.parseInt(uu); in initVersions()