Searched refs:tempBuffer (Results 1 – 3 of 3) sorted by relevance
86 String tempBuffer = messageFormatter.format(params); in Test4074764() local87 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 …]
141 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()
210 String tempBuffer = segments[0].toString(); in applyPattern() local211 if (tempBuffer.equals("\u221E")) { in applyPattern()213 } else if (tempBuffer.equals("-\u221E")) { in applyPattern()216 startValue = Double.parseDouble(tempBuffer); in applyPattern()