Home
last modified time | relevance | path

Searched refs:ByteValue (Results 1 – 20 of 20) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DByteValueImpl.java31 implements ByteValue {
41 if ((obj != null) && (obj instanceof ByteValue)) { in equals()
42 return (value == ((ByteValue)obj).value()) in equals()
56 public int compareTo(ByteValue obj) { in compareTo()
DPacketStream.java233 if(!(val instanceof ByteValue)) in writeUntaggedValueChecked()
DVirtualMachineImpl.java477 public ByteValue mirrorOf(byte value) { in mirrorOf()
/external/compiler-rt/lib/esan/
Dworking_set.cpp126 u32 ByteValue = 0x1 << BitIdx; in countAndClearShadowValues() local
127 u32 WordValue = ByteValue | ByteValue << 8 | ByteValue << 16 | in countAndClearShadowValues()
128 ByteValue << 24; in countAndClearShadowValues()
138 if (BytePtr[j] & ByteValue) { in countAndClearShadowValues()
142 BytePtr[j] |= (ByteValue << 1); in countAndClearShadowValues()
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyByteValue.java35 import com.sun.jdi.ByteValue;
38 public class LazyByteValue extends LazyComparablePrimitiveValue<ByteValue> implements ByteValue {
/external/turbine/javatests/com/google/turbine/model/
DConstTest.java59 .addEqualityGroup(new Const.ByteValue((byte) 1), new Const.ByteValue((byte) 1)) in equalsTest()
60 .addEqualityGroup(new Const.ByteValue((byte) 2), new Const.ByteValue((byte) 2)) in equalsTest()
133 assertThat(new Const.ByteValue((byte) 42).toString()).isEqualTo("(byte)0x2a"); in toStringTest()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DByteValue.java37 public interface ByteValue extends PrimitiveValue, Comparable<ByteValue> { interface
DVirtualMachine.java320 ByteValue mirrorOf(byte value); in mirrorOf()
/external/turbine/java/com/google/turbine/model/
DConst.java428 public static class ByteValue extends Value { class in Const
432 public ByteValue(byte value) { in ByteValue() method in Const.ByteValue
457 return obj instanceof ByteValue && value == ((ByteValue) obj).value; in equals()
/external/kotlinpoet/interop/kotlinx-metadata/src/main/kotlin/com/squareup/kotlinpoet/metadata/specs/
DkmAnnotations.kt29 import kotlinx.metadata.KmAnnotationArgument.ByteValue in <lambda>()
61 is ByteValue -> CodeBlock.of("%L", value) in toCodeBlock()
/external/kotlinpoet/interop/kotlinx-metadata/src/test/kotlin/com/squareup/kotlinpoet/metadata/specs/
DKmAnnotationsTest.kt25 import kotlinx.metadata.KmAnnotationArgument.ByteValue
56 mapOf("value" to ByteValue(2)), in byteValue()
/external/sfntly/cpp/src/sfntly/table/
Dbyte_array_table_builder.h33 virtual int32_t ByteValue(int32_t index);
Dbyte_array_table_builder.cc23 int32_t ByteArrayTableBuilder::ByteValue(int32_t index) { in ByteValue() function in sfntly::ByteArrayTableBuilder
/external/turbine/java/com/google/turbine/binder/
DConstEvaluator.java408 result = String.valueOf(((Const.ByteValue) value).value()); in toString()
424 result = (char) ((Const.ByteValue) value).value(); in asChar()
447 private Const.ByteValue asByte(int position, Value value) { in asByte()
454 return (Const.ByteValue) value; in asByte()
473 return new Const.ByteValue(result); in asByte()
483 result = ((Const.ByteValue) value).value(); in asShort()
512 result = ((Const.ByteValue) value).value(); in asInt()
541 result = ((Const.ByteValue) value).value(); in asLong()
570 result = ((Const.ByteValue) value).value(); in asFloat()
599 result = ((Const.ByteValue) value).value(); in asDouble()
/external/skia/src/sfnt/
DSkOTTable_glyf.h188 struct ByteValue { struct
/external/turbine/java/com/google/turbine/bytecode/
DAnnotationWriter.java83 writeConst('B', pool.integer(((Const.ByteValue) value).value())); in writeConstElementValue()
DAttributeWriter.java149 output.writeShort(pool.integer(((Const.ByteValue) value).value())); in writeConstantValue()
DClassReader.java345 return new ConstValue(new Const.ByteValue((byte) readInt(constantPool))); in readElementValue()
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java188 return new Const.ByteValue((byte) asInt(value)); in bindConstValue()
/external/turbine/java/com/google/turbine/processing/
DTurbineElements.java403 return new Const.ByteValue((Byte) value).toString(); in getConstantExpression()