Searched refs:startValue (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/java/text/ |
D | ChoiceFormat.java | 185 double startValue = 0; in applyPattern() local 207 startValue = Double.POSITIVE_INFINITY; in applyPattern() 209 startValue = Double.NEGATIVE_INFINITY; in applyPattern() 211 startValue = Double.parseDouble(segments[0].toString()); in applyPattern() 216 if (ch == '<' && startValue != Double.POSITIVE_INFINITY && in applyPattern() 217 startValue != Double.NEGATIVE_INFINITY) { in applyPattern() 218 startValue = nextDouble(startValue); in applyPattern() 220 if (startValue <= oldStartValue) { in applyPattern() 230 newChoiceLimits[count] = startValue; in applyPattern() 233 oldStartValue = startValue; in applyPattern() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
D | DoubleBufferTest.java | 657 double startValue, int length) { in assertContentLikeTestData1() argument 658 double value = startValue; in assertContentLikeTestData1()
|
D | FloatBufferTest.java | 667 int startIndex, float startValue, int length) { in assertContentLikeTestData1() argument 668 float value = startValue; in assertContentLikeTestData1()
|
D | IntBufferTest.java | 643 int startIndex, int startValue, int length) { in assertContentLikeTestData1() argument 644 int value = startValue; in assertContentLikeTestData1()
|
D | ShortBufferTest.java | 630 int startIndex, short startValue, int length) { in assertContentLikeTestData1() argument 631 short value = startValue; in assertContentLikeTestData1()
|
D | LongBufferTest.java | 650 int startIndex, long startValue, int length) { in assertContentLikeTestData1() argument 651 long value = startValue; in assertContentLikeTestData1()
|
D | CharBufferTest.java | 849 char startValue, int length) { in assertContentLikeTestData1() argument 850 char value = startValue; in assertContentLikeTestData1()
|
D | ByteBufferTest.java | 2103 int startIndex, byte startValue, int length) { in assertContentLikeTestData1() argument 2104 byte value = startValue; in assertContentLikeTestData1()
|