/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | Value.java | 188 public long getLongValue() { in getLongValue() method in Value 286 return getLongValue() == value0.getLongValue(); in equals() 296 return getLongValue() == value0.getLongValue(); in equals() 322 return "long: " + getLongValue(); in toString() 326 return "StringID: " + getLongValue(); in toString() 328 return "ArrayID: " + getLongValue(); in toString() 330 return "ClassLoaderID: " + getLongValue(); in toString() 332 return "ClassObjectID: " + getLongValue(); in toString() 334 return "ObjectID: " + getLongValue(); in toString() 336 return "ThreadGroupID: " + getLongValue(); in toString() [all …]
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/async/ |
D | AsyncNumberCoercionTest.java | 31 assertEquals(1L, p.getLongValue()); in testToIntCoercion() 71 assertEquals(big, p.getLongValue()); in testToIntFailing() 84 assertEquals(small, p.getLongValue()); in testToIntFailing() 151 assertEquals(1L, p.getLongValue()); in testToLongCoercion() 159 assertEquals(biggish, p.getLongValue()); in testToLongCoercion() 166 assertEquals(2L, p.getLongValue()); in testToLongCoercion() 173 assertEquals(10, p.getLongValue()); in testToLongCoercion() 189 p.getLongValue(); in testToLongFailing() 201 p.getLongValue(); in testToLongFailing() 231 assertEquals(Long.MAX_VALUE, p.getLongValue()); in testToBigIntegerCoercion() [all …]
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/ |
D | NumberCoercionTest.java | 26 assertEquals(1L, p.getLongValue()); in testToIntCoercion() 63 assertEquals(big, p.getLongValue()); in testToIntFailing() 76 assertEquals(small, p.getLongValue()); in testToIntFailing() 145 assertEquals(1L, p.getLongValue()); in testToLongCoercion() 153 assertEquals(biggish, p.getLongValue()); in testToLongCoercion() 160 assertEquals(2L, p.getLongValue()); in testToLongCoercion() 167 assertEquals(10, p.getLongValue()); in testToLongCoercion() 186 p.getLongValue(); in testToLongFailing() 198 p.getLongValue(); in testToLongFailing() 230 assertEquals(Long.MAX_VALUE, p.getLongValue()); in testToBigIntegerCoercion() [all …]
|
D | NumberParsingTest.java | 103 assertEquals((long) EXP_I, p.getLongValue()); in _testSimpleInt() 118 assertEquals((long) EXP_I, p.getLongValue()); in _testSimpleInt() 217 assertEquals(EXP_L, p.getLongValue()); in _testSimpleLong() 241 assertEquals(Long.MAX_VALUE, p.getLongValue()); in testLongRange() 245 assertEquals(Long.MIN_VALUE, p.getLongValue()); in testLongRange() 249 assertEquals(aboveMaxInt, p.getLongValue()); in testLongRange() 253 assertEquals(belowMinInt, p.getLongValue()); in testLongRange() 464 assertEquals(-13L, p.getLongValue()); in _testNumbers() 469 assertEquals(8100200300L, p.getLongValue()); in _testNumbers() 482 assertEquals(13L, p.getLongValue()); in _testNumbers() [all …]
|
D | NumberOverflowTest.java | 41 long x = p.getLongValue(); in testSimpleLongOverflow() 51 long x = p.getLongValue(); in testSimpleLongOverflow() 72 p.getLongValue(); in testMaliciousLongOverflow()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | ZipEightByteInteger.java | 115 public long getLongValue() { in getLongValue() method in ZipEightByteInteger 165 public static long getLongValue(final byte[] bytes, final int offset) { in getLongValue() method in ZipEightByteInteger 195 public static long getLongValue(final byte[] bytes) { in getLongValue() method in ZipEightByteInteger 196 return getLongValue(bytes, 0); in getLongValue()
|
D | ZipFile.java | 766 ze.setSize(z64.getSize().getLongValue()); 772 ze.setCompressedSize(z64.getCompressedSize().getLongValue()); 778 ze.setLocalHeaderOffset(z64.getRelativeHeaderOffset().getLongValue()); 920 archive.position(ZipEightByteInteger.getLongValue(dwordBuf)); 931 archive.position(ZipEightByteInteger.getLongValue(dwordBuf));
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/ |
D | GetValuesTest.java | 135 long longValue = fieldValue.getLongValue(); in testGetValues001() 142 long objectIdValue = fieldValue.getLongValue(); in testGetValues001() 146 long stringIDValue = fieldValue.getLongValue(); in testGetValues001() 150 long arrayIDValue = fieldValue.getLongValue(); in testGetValues001()
|
D | GetValues002Test.java | 152 long longValue = fieldValue.getLongValue(); in testGetValues002() 156 long objectIDValue = fieldValue.getLongValue(); in testGetValues002()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | GetValues002Test.java | 111 long checkedObjectID = checkedObjectFieldValue.getLongValue(); in testGetValues002() 170 long longValue = fieldValue.getLongValue(); in testGetValues002() 176 long stringIDValue = fieldValue.getLongValue(); in testGetValues002() 180 long objectIDValue = fieldValue.getLongValue(); in testGetValues002() 220 long arrayIDValue = fieldValue.getLongValue(); in testGetValues002()
|
D | GetValuesTest.java | 110 long checkedObjectID = checkedObjectFieldValue.getLongValue(); in testGetValues001() 169 long longValue = fieldValue.getLongValue(); in testGetValues001() 182 long objectIDValue = fieldValue.getLongValue(); in testGetValues001()
|
D | GetValues003Test.java | 110 long checkedObjectID = checkedObjectFieldValue.getLongValue(); in testGetValues003() 162 long objectIDValue = fieldValue.getLongValue(); in testGetValues003()
|
D | InvokeMethod003Test.java | 126 long receiverObjectID = fieldValue.getLongValue(); in testInvokeMethod_toString() 159 long stringID = returnValue.getLongValue(); in testInvokeMethod_toString()
|
D | IsCollectedTest.java | 110 long checkedObject_01ID = checkedObjectFieldValue.getLongValue(); in testIsCollected001() 124 long checkedObject_02ID = checkedObjectFieldValue.getLongValue(); in testIsCollected001()
|
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/ |
D | StressTestClientTest.java | 152 assertTrue("qps: " + gauge.getLongValue(), gauge.getLongValue() > 0); in gaugesShouldBeExported() 158 assertTrue("qps: " + gauge1.getLongValue(), gauge1.getLongValue() > 0); in gaugesShouldBeExported()
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/testsupport/ |
D | AsyncReaderWrapper.java | 62 public long getLongValue() throws IOException { return _streamReader.getLongValue(); } in getLongValue() method in AsyncReaderWrapper
|
/external/opencensus-java/api/src/main/java/io/opencensus/trace/ |
D | AttributeValue.java | 207 return longFunction.apply(getLongValue()); in match() 217 return longFunction.apply(getLongValue()); in match() 220 abstract Long getLongValue(); in getLongValue() method in AttributeValue.AttributeValueLong
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/ |
D | TestTreeTraversingParser.java | 322 p.getLongValue(); in testNumberOverflowLong() 334 p.getLongValue(); in testNumberOverflowLong() 347 p.getLongValue(); in testNumberOverflowLong() 363 assertEquals(okValue, p.getLongValue()); in testNumberOverflowLong()
|
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/ |
D | GaugeResponse.php | 55 public function getLongValue() function in Grpc\\Testing\\GaugeResponse
|
/external/jackson-core/src/test/java/perf/ |
D | ManualSmallTokenRead.java | 64 p.getLongValue(); in _stream()
|
D | ManualReadPerfWithMedia.java | 76 p.getLongValue(); in _stream()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | ProxyThisObjectTest.java | 51 assertEquals("Unexpected object id", proxyObjectValue.getLongValue(), in testThisObject()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/ |
D | GetValuesTest.java | 141 long arrayID = value.getLongValue(); in checkArrayValues() 220 long stringID = value.getLongValue(); in checkArrayRegion()
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/ |
D | JsonParserDelegate.java | 188 public long getLongValue() throws IOException { return delegate.getLongValue(); } in getLongValue() method in JsonParserDelegate
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/ |
D | ZipEightByteIntegerTest.java | 58 assertEquals("longValue from bytes", 0xAB12345678l, zl.getLongValue()); in testLongFromBytes()
|