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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 36 /// getValueType - Return the MVT::SimpleValueType that the specified TableGen
38 MVT::SimpleValueType llvm::getValueType(Record *Rec) {
391 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);
203 MVT::SimpleValueType getValueType() const { return Ty; }
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenTarget.cpp 34 /// getValueType - Return the MVT::SimpleValueType that the specified TableGen
36 MVT::SimpleValueType llvm::getValueType(Record *Rec) {
308 Ty = ::getValueType(R->getValueAsDef("Ty"));
423 VT = getValueType(TyEl->getValueAsDef("VT"));
457 VT = getValueType(TyEl->getValueAsDef("VT"));
CodeGenTarget.h 50 /// getValueType - Return the MVT::SimpleValueType that the specified TableGen
52 MVT::SimpleValueType getValueType(Record *Rec);
180 MVT::SimpleValueType getValueType() const { return Ty; }
  /frameworks/base/core/java/android/os/
StatsDimensionsValue.java 36 * The type of value held can be retrieved using {@link #getValueType()}, which returns one of the
110 * @return the {@link String} held if {@link #getValueType()} == {@link #STRING_VALUE_TYPE},
125 * @return the int held if {@link #getValueType()} == {@link #INT_VALUE_TYPE}, 0 otherwise
139 * @return the long held if {@link #getValueType()} == {@link #LONG_VALUE_TYPE}, 0 otherwise
153 * @return the boolean held if {@link #getValueType()} == {@link #BOOLEAN_VALUE_TYPE},
168 * @return the float held if {@link #getValueType()} == {@link #FLOAT_VALUE_TYPE}, 0 otherwise
184 * if {@link #getValueType()} == {@link #TUPLE_VALUE_TYPE},
218 public int getValueType() {
225 * @param valueType int representing the type of value stored, as used in {@link #getValueType}
226 * @return true if {@link #getValueType()} is equal to {@code valueType}
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVEntry.cpp 131 SPIRVEntry::getValueType(SPIRVId TheId)const {

Completed in 1207 milliseconds

1 2 3 4 5 6 7 8 91011>>