Home
last modified time | relevance | path

Searched refs:getByteValue (Results 1 – 14 of 14) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DValue.java161 public byte getByteValue() { in getByteValue() method in Value
270 return getByteValue() == value0.getByteValue(); in equals()
312 return "byte: " + getByteValue(); in toString()
DPacket.java1050 this.setNextValueAsByte(value.getByteValue()); in setNextValueAsUntaggedValue()
1150 this.setNextValueAsByte(array.getValue(i).getByteValue()); in setNextValueAsArrayRegion()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DJsonParserDelegate.java170 public byte getByteValue() throws IOException { return delegate.getByteValue(); } in getByteValue() method in JsonParserDelegate
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DGetValues002Test.java164 byte byteValue = fieldValue.getByteValue(); in testGetValues002()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DForceEarlyReturnTest.java63 return (new Byte(value.getByteValue())).toString(); in toString()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DGetValues002Test.java190 byte byteValue = fieldValue.getByteValue(); in testGetValues002()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/filter/
DFilteringParserDelegate.java858 public byte getByteValue() throws IOException { return delegate.getByteValue(); } in getByteValue() method in FilteringParserDelegate
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DNumberDeserializers.java268 return p.getByteValue(); in deserialize()
293 return p.getByteValue(); in _parseByte()
297 return p.getByteValue(); in _parseByte()
DPrimitiveArrayDeserializers.java499 value = p.getByteValue(); // note: may throw due to overflow in deserialize()
532 value = p.getByteValue(); // note: may throw due to overflow in handleSingleElementUnwrapped()
DStdDeserializer.java568 return p.getByteValue(); in _parseBytePrimitive()
570 return p.getByteValue(); in _parseBytePrimitive()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonParser.java1373 public byte getByteValue() throws IOException { in getByteValue() method in JsonParser
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DNumberParsingTest.java78 assertEquals((byte) EXP_I, p.getByteValue()); in _testSimpleInt()
82 p.getByteValue(); in _testSimpleInt()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/filter/
DBasicParserFilteringTest.java400 assertEquals((byte)3, p.getByteValue()); in testTokensSingleMatchWithPath()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestDelegates.java251 assertEquals((byte)1, del.getByteValue()); in testParserDelegate()