Home
last modified time | relevance | path

Searched refs:valueType (Results 1 – 5 of 5) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/util/
DCollections.java2535 Class<V> valueType) {
2536 return new CheckedMap<K, V>(m, keyType, valueType);
2592 Class<K> keyType, Class<V> valueType) {
2593 return new CheckedSortedMap<K, V>(m, keyType, valueType);
3110 Class<V> valueType;
3119 private CheckedMap(Map<K, V> m, Class<K> keyType, Class<V> valueType) {
3120 if (m == null || keyType == null || valueType == null) {
3125 this.valueType = valueType;
3167 return m.put(checkType(key, keyType), checkType(value, valueType));
3192 checkType(e.getValue(), valueType);
[all …]
/dalvik/vm/reflect/
DAnnotation.c386 u1 valueType, valueArg; in processAnnotationValue() local
390 valueType = *ptr++; in processAnnotationValue()
391 valueArg = valueType >> kDexAnnotationValueArgShift; in processAnnotationValue()
395 valueType & kDexAnnotationValueTypeMask, valueArg, ptr-1, in processAnnotationValue()
398 pValue->type = valueType & kDexAnnotationValueTypeMask; in processAnnotationValue()
400 switch (valueType & kDexAnnotationValueTypeMask) { in processAnnotationValue()
599 valueType, valueType & kDexAnnotationValueTypeMask); in processAnnotationValue()
949 u1 valueType, valueArg; in skipAnnotationValue() local
952 valueType = *ptr++; in skipAnnotationValue()
953 valueArg = valueType >> kDexAnnotationValueArgShift; in skipAnnotationValue()
[all …]
/dalvik/vm/analysis/
DCodeVerify.c3646 RegType valueType; in verifyInstruction() local
3670 valueType = primitiveTypeToRegType( in verifyInstruction()
3672 assert(valueType != kRegTypeUnknown); in verifyInstruction()
4343 RegType objType, valueType; in verifyInstruction() local
4365 valueType = getRegisterType(workRegs, insnRegCount, decInsn.vA, in verifyInstruction()
4369 if (!regTypeIsReference(valueType)) { in verifyInstruction()
4376 if (valueType != kRegTypeZero) { in verifyInstruction()
4377 valueClass = regTypeInitializedReferenceToClass(valueType); in verifyInstruction()
4589 RegType valueType; in verifyInstruction() local
4606 valueType = getRegisterType(workRegs, insnRegCount, decInsn.vA, in verifyInstruction()
[all …]
/dalvik/libcore/luni/src/main/java/java/io/
DObjectInputStream.java1313 Class<?> valueType = toSet.getClass(); in readFieldValues() local
1314 if (!fieldType.isAssignableFrom(valueType)) { in readFieldValues()
1317 fieldType.toString(), valueType.toString(), in readFieldValues()
/dalvik/libdex/
DDexSwapVerify.c2094 u4 valueType = headerByte & kDexAnnotationValueTypeMask; in verifyEncodedValue() local
2097 switch (valueType) { in verifyEncodedValue()
2199 LOGE("Bogus value_type 0x%x\n", valueType); in verifyEncodedValue()