HomeSort by relevance Sort by last modified time
    Searched defs:getValueType (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
EncodedValue.java 47 int getValueType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseNullEncodedValue.java 55 return Ints.compare(getValueType(), o.getValueType());
58 public int getValueType() { return ValueType.NULL; }
BaseAnnotationEncodedValue.java 62 int res = Ints.compare(getValueType(), o.getValueType());
70 public int getValueType() {
BaseArrayEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.ARRAY; }
BaseBooleanEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
64 public int getValueType() { return ValueType.BOOLEAN; }
BaseByteEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.BYTE; }
BaseCharEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
64 public int getValueType() { return ValueType.CHAR; }
BaseDoubleEncodedValue.java 60 int res = Ints.compare(getValueType(), o.getValueType());
65 public int getValueType() { return ValueType.DOUBLE; }
BaseEnumEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.ENUM; }
BaseFieldEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.FIELD; }
BaseFloatEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.FLOAT; }
BaseIntEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.INT; }
BaseLongEncodedValue.java 61 int res = Ints.compare(getValueType(), o.getValueType());
66 public int getValueType() { return ValueType.LONG; }
BaseMethodEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.METHOD; }
BaseShortEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
64 public int getValueType() { return ValueType.SHORT; }
BaseStringEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.STRING; }
BaseTypeEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
63 public int getValueType() { return ValueType.TYPE; }
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectGraphMeasurer.java 200 primitives.add(chain.getValueType());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
OdexedFieldInstructionMapper.java 159 private static int getValueType(char type) {
226 opcodeValueTypeMap.put(fieldOpcode.quickOpcode, getValueType(fieldOpcode.type));
229 opcodeValueTypeMap.put(fieldOpcode.volatileOpcode, getValueType(fieldOpcode.type));
253 return valueType == getValueType(type);
  /packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
VehicleNetworkTest.java 102 config.getValueType());
107 assertEquals(config.getValueType(), value.getValueType());
132 if (config.getValueType() == VehicleValueType.VEHICLE_VALUE_TYPE_INT32) {
135 setValueType(config.getValueType()).
144 setValueType(config.getValueType()).
183 config.getValueType());
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 36 /// getValueType - Return the MVT::SimpleValueType that the specified TableGen
38 MVT::SimpleValueType llvm::getValueType(Record *Rec) {
396 Ty = ::getValueType(R->getValueAsDef("Ty"));
516 VT = getValueType(TyEl->getValueAsDef("VT"));
552 VT = getValueType(TyEl->getValueAsDef("VT"));
CodeGenTarget.h 51 /// getValueType - Return the MVT::SimpleValueType that the specified TableGen
53 MVT::SimpleValueType getValueType(Record *Rec);
208 MVT::SimpleValueType getValueType() const { return Ty; }
  /packages/services/Car/service/src/com/android/car/hal/
HvacHalService.java 146 mHalPropToValueType.put(p.getProp(), p.getValueType());
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarRadioManagerTest.java 61 assertEquals(value.getValueType(), VehicleValueType.VEHICLE_VALUE_TYPE_INT32_VEC4);
86 assertEquals(value.getValueType(), VehicleValueType.VEHICLE_VALUE_TYPE_INT32_VEC4);
  /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
VehicleNetwork.java 332 assertVectorLength(v.getInt32ValuesCount(), property, v.getValueType());
343 assertVectorLength(v.getInt32ValuesCount(), property, v.getValueType());
367 assertVectorLength(v.getFloatValuesCount(), property, v.getValueType());
378 assertVectorLength(v.getFloatValuesCount(), property, v.getValueType());
716 if (!isCustom && v.getValueType() != valueType) {
719 " got:0x" + Integer.toHexString(v.getValueType())

Completed in 379 milliseconds

1 2 3 4 5 6