Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/text/
DChoiceFormat.java189 double startValue = 0; in applyPattern() local
212 startValue = Double.POSITIVE_INFINITY; in applyPattern()
214 startValue = Double.NEGATIVE_INFINITY; in applyPattern()
216 startValue = Double.parseDouble(tempBuffer); in applyPattern()
219 if (ch == '<' && startValue != Double.POSITIVE_INFINITY && in applyPattern()
220 startValue != Double.NEGATIVE_INFINITY) { in applyPattern()
221 startValue = nextDouble(startValue); in applyPattern()
223 if (startValue <= oldStartValue) { in applyPattern()
234 newChoiceLimits[count] = startValue; in applyPattern()
237 oldStartValue = startValue; in applyPattern()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DShortBufferTest.java630 int startIndex, short startValue, int length) { in assertContentLikeTestData1() argument
631 short value = startValue; in assertContentLikeTestData1()
DIntBufferTest.java643 int startIndex, int startValue, int length) { in assertContentLikeTestData1() argument
644 int value = startValue; in assertContentLikeTestData1()
DFloatBufferTest.java667 int startIndex, float startValue, int length) { in assertContentLikeTestData1() argument
668 float value = startValue; in assertContentLikeTestData1()
DLongBufferTest.java650 int startIndex, long startValue, int length) { in assertContentLikeTestData1() argument
651 long value = startValue; in assertContentLikeTestData1()
DDoubleBufferTest.java668 double startValue, int length) { in assertContentLikeTestData1() argument
669 double value = startValue; in assertContentLikeTestData1()
DCharBufferTest.java849 char startValue, int length) { in assertContentLikeTestData1() argument
850 char value = startValue; in assertContentLikeTestData1()
DByteBufferTest.java2129 int startIndex, byte startValue, int length) { in assertContentLikeTestData1() argument
2130 byte value = startValue; in assertContentLikeTestData1()