Home
last modified time | relevance | path

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

/libcore/xml/src/main/java/com/android/org/kxml2/io/
DKXmlSerializer.java147 private final void writeEscaped(String s, int quot) throws IOException { in writeEscaped() argument
154 if(quot == -1) in writeEscaped()
169 if (c == quot) { in writeEscaped()
/libcore/ojluni/src/main/java/java/lang/
DLong.java243 long quot = (i >>> 1) / 5; in toUnsignedString() local
244 long rem = i - quot * 10; in toUnsignedString()
245 yield toString(quot) + rem; in toUnsignedString()