Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/text/Format/MessageFormat/
DMessageRegression.java86 String tempBuffer = messageFormatter.format(params); in Test4074764() local
87 if (!tempBuffer.equals("Message with param:BUG")) in Test4074764()
89 logln("Formatted with one extra param : " + tempBuffer); in Test4074764()
93 tempBuffer = messageFormatter.format(null); in Test4074764()
94 if (!tempBuffer.equals("Message without param")) in Test4074764()
96 logln("Formatted with no params : " + tempBuffer); in Test4074764()
98 tempBuffer = messageFormatter.format(params); in Test4074764()
99 if (!tempBuffer.equals("Message without param")) in Test4074764()
100 … errln("Formatted with arguments > subsitution failed. result = " + tempBuffer.toString()); in Test4074764()
101 logln("Formatted with extra params : " + tempBuffer); in Test4074764()
[all …]
/libcore/ojluni/src/test/java/util/zip/
DDeInflate.java141 byte[] tempBuffer = new byte[1024]; in check()
150 int temp_counter = def.deflate(tempBuffer); in check()
152 baos.write(tempBuffer, 0, temp_counter); in check()
160 int temp_counter = inf.inflate(tempBuffer); in check()
162 baos.write(tempBuffer, 0, temp_counter); in check()
/libcore/ojluni/src/main/java/java/text/
DChoiceFormat.java210 String tempBuffer = segments[0].toString(); in applyPattern() local
211 if (tempBuffer.equals("\u221E")) { in applyPattern()
213 } else if (tempBuffer.equals("-\u221E")) { in applyPattern()
216 startValue = Double.parseDouble(tempBuffer); in applyPattern()