Home
last modified time | relevance | path

Searched refs:MIN_VALUE (Results 1 – 25 of 181) sorted by relevance

12345678

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DStringTokenizerTest.java648 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestIndexOf()
650 int[] valid = {UnicodeSet.MIN_VALUE, UnicodeSet.MIN_VALUE+1, in TestIndexOf()
695 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestAdd_int_int()
711 us.add(UnicodeSet.MIN_VALUE, invalid[i]); in TestAdd_int_int()
719 if(!(us.add(UnicodeSet.MIN_VALUE+1, UnicodeSet.MIN_VALUE).equals(us))) in TestAdd_int_int()
721 + "the same object because start of value " + (UnicodeSet.MIN_VALUE+1) in TestAdd_int_int()
722 + " is greater than end of value " + UnicodeSet.MIN_VALUE); in TestAdd_int_int()
737 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestAdd_int()
807 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestRetain_int_int()
823 us.retain(UnicodeSet.MIN_VALUE, invalid[i]); in TestRetain_int_int()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DStringTokenizerTest.java645 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestIndexOf()
647 int[] valid = {UnicodeSet.MIN_VALUE, UnicodeSet.MIN_VALUE+1, in TestIndexOf()
692 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestAdd_int_int()
708 us.add(UnicodeSet.MIN_VALUE, invalid[i]); in TestAdd_int_int()
716 if(!(us.add(UnicodeSet.MIN_VALUE+1, UnicodeSet.MIN_VALUE).equals(us))) in TestAdd_int_int()
718 + "the same object because start of value " + (UnicodeSet.MIN_VALUE+1) in TestAdd_int_int()
719 + " is greater than end of value " + UnicodeSet.MIN_VALUE); in TestAdd_int_int()
734 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestAdd_int()
805 int[] invalid = {UnicodeSet.MIN_VALUE-1, UnicodeSet.MIN_VALUE-2, in TestRetain_int_int()
821 us.retain(UnicodeSet.MIN_VALUE, invalid[i]); in TestRetain_int_int()
[all …]
/third_party/node/test/js-native-api/test_number/
Dtest.js30 testNumber(Number.MIN_VALUE);
82 testInt32(-Number.MIN_VALUE, 0);
83 testInt32(Number.MIN_VALUE, 0);
120 testInt64(-Number.MIN_VALUE, 0);
121 testInt64(Number.MIN_VALUE, 0);
/third_party/jerryscript/tests/jerry-test-suite/15/15.07/15.07.03/15.07.03.03/
D15.07.03.03-004.js15 var b = Number.MIN_VALUE
16 Number.MIN_VALUE = 0
17 assert(Number.MIN_VALUE === b);
D15.07.03.03-003.js15 assert(Number.MIN_VALUE === 5e-324);
D15.07.03.03-005.js15 assert(!(delete Number.MIN_VALUE));
D15.07.03.03-002.js15 assert(Number.MIN_VALUE === 5e-324);
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/
DByteArrayTest.kt28 Byte.MIN_VALUE to byteArrayOf(-128), in testByte()
44 Short.MIN_VALUE to byteArrayOf(0, -128), in testShort()
61 Int.MIN_VALUE to byteArrayOf(0, 0, 0, -128), in testInt()
78 Long.MIN_VALUE to byteArrayOf(0, 0, 0, 0, 0, 0, 0, -128), in testLong()
94 ULong.MIN_VALUE to byteArrayOf(0, 0, 0, 0, 0, 0, 0, 0), in testULong()
110 Float.MIN_VALUE to byteArrayOf(1, 0, 0, 0), in testFloat()
125 Double.MIN_VALUE to byteArrayOf(1, 0, 0, 0, 0, 0, 0, 0), in testDouble()
/third_party/jerryscript/tests/jerry-test-suite/11/11.06/11.06.03/
D11.06.03-013.js15 assert(!(Number.MIN_VALUE + -Number.MIN_VALUE !== +0))
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DDecodeUtf8Test.java31 for (int i = Byte.MIN_VALUE; i <= Byte.MAX_VALUE; i++) { in testOneByte()
44 for (int i = Byte.MIN_VALUE; i <= Byte.MAX_VALUE; i++) { in testTwoBytes()
45 for (int j = Byte.MIN_VALUE; j <= Byte.MAX_VALUE; j++) { in testTwoBytes()
62 for (int i = Byte.MIN_VALUE; i <= Byte.MAX_VALUE; i++) { in testThreeBytes()
63 for (int j = Byte.MIN_VALUE; j <= Byte.MAX_VALUE; j++) { in testThreeBytes()
64 for (int k = Byte.MIN_VALUE; k <= Byte.MAX_VALUE; k++) { in testThreeBytes()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/
DUCharacterNameIterator.java150 if (start < UCharacter.MIN_VALUE) { in setRange()
151 m_start_ = UCharacter.MIN_VALUE; in setRange()
182 m_start_ = UCharacter.MIN_VALUE; in UCharacterNameIterator()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUCharacterNameIterator.java150 if (start < UCharacter.MIN_VALUE) { in setRange()
151 m_start_ = UCharacter.MIN_VALUE; in setRange()
182 m_start_ = UCharacter.MIN_VALUE; in UCharacterNameIterator()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DIntlTestNumberFormat.java132 tryIt(Integer.MIN_VALUE); in _testFormat()
134 tryIt((double)Integer.MIN_VALUE); in _testFormat()
136 tryIt(Integer.MIN_VALUE - 1.0); in _testFormat()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DIntlTestNumberFormat.java129 tryIt(Integer.MIN_VALUE); in _testFormat()
131 tryIt((double)Integer.MIN_VALUE); in _testFormat()
133 tryIt(Integer.MIN_VALUE - 1.0); in _testFormat()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DICUCurrencyMetaInfo.java88 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) { in collect()
129 long from = Long.MIN_VALUE; in collectRegion()
142 from = getDate(r.at("from"), Long.MIN_VALUE, false); in collectRegion()
/third_party/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
DICUCurrencyMetaInfo.java86 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) { in collect()
127 long from = Long.MIN_VALUE; in collectRegion()
140 from = getDate(r.at("from"), Long.MIN_VALUE, false); in collectRegion()
/third_party/jerryscript/tests/jerry-test-suite/11/11.05/11.05.02/
D11.05.02-088.js15 assert(Number.MIN_VALUE / 2 === 0)
D11.05.02-089.js15 assert(2 / Number.MIN_VALUE === Number.POSITIVE_INFINITY)
D11.05.02-044.js15 assert(isNaN(Number.NaN / Number.MIN_VALUE) === true)
/third_party/jerryscript/tests/jerry-test-suite/11/11.05/11.05.01/
D11.05.01-088.js15 assert(Number.MIN_VALUE * (-0.5) === -0)
D11.05.01-089.js15 assert(0.1 * Number.MIN_VALUE === +0)
D11.05.01-044.js15 assert(isNaN(Number.NaN * Number.MIN_VALUE) === true)
/third_party/jerryscript/tests/jerry-test-suite/15/15.08/15.08.02/15.08.02.05/
D15.08.02.05-003.js15 assert(Math.atan2(Number.MIN_VALUE, +0) === Math.PI / 2);
D15.08.02.05-014.js15 assert(Math.atan2(-0, -Number.MIN_VALUE) === -Math.PI);
D15.08.02.05-009.js15 assert(Math.atan2(+0, -Number.MIN_VALUE) === Math.PI);

12345678