/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ByteValueImpl.java | 31 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()
|
D | PacketStream.java | 233 if(!(val instanceof ByteValue)) in writeUntaggedValueChecked()
|
D | VirtualMachineImpl.java | 477 public ByteValue mirrorOf(byte value) { in mirrorOf()
|
/external/compiler-rt/lib/esan/ |
D | working_set.cpp | 126 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/ |
D | LazyByteValue.java | 35 import com.sun.jdi.ByteValue; 38 public class LazyByteValue extends LazyComparablePrimitiveValue<ByteValue> implements ByteValue {
|
/external/turbine/javatests/com/google/turbine/model/ |
D | ConstTest.java | 59 .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/ |
D | ByteValue.java | 37 public interface ByteValue extends PrimitiveValue, Comparable<ByteValue> { interface
|
D | VirtualMachine.java | 320 ByteValue mirrorOf(byte value); in mirrorOf()
|
/external/turbine/java/com/google/turbine/model/ |
D | Const.java | 428 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/ |
D | kmAnnotations.kt | 29 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/ |
D | KmAnnotationsTest.kt | 25 import kotlinx.metadata.KmAnnotationArgument.ByteValue 56 mapOf("value" to ByteValue(2)), in byteValue()
|
/external/sfntly/cpp/src/sfntly/table/ |
D | byte_array_table_builder.h | 33 virtual int32_t ByteValue(int32_t index);
|
D | byte_array_table_builder.cc | 23 int32_t ByteArrayTableBuilder::ByteValue(int32_t index) { in ByteValue() function in sfntly::ByteArrayTableBuilder
|
/external/turbine/java/com/google/turbine/binder/ |
D | ConstEvaluator.java | 408 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/ |
D | SkOTTable_glyf.h | 188 struct ByteValue { struct
|
/external/turbine/java/com/google/turbine/bytecode/ |
D | AnnotationWriter.java | 83 writeConst('B', pool.integer(((Const.ByteValue) value).value())); in writeConstElementValue()
|
D | AttributeWriter.java | 149 output.writeShort(pool.integer(((Const.ByteValue) value).value())); in writeConstantValue()
|
D | ClassReader.java | 345 return new ConstValue(new Const.ByteValue((byte) readInt(constantPool))); in readElementValue()
|
/external/turbine/java/com/google/turbine/binder/bytecode/ |
D | BytecodeBinder.java | 188 return new Const.ByteValue((byte) asInt(value)); in bindConstValue()
|
/external/turbine/java/com/google/turbine/processing/ |
D | TurbineElements.java | 403 return new Const.ByteValue((Byte) value).toString(); in getConstantExpression()
|