Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/animation/
DAnimatorInflater.java280 int toType = hasTo ? tvTo.type : 0; in getPVH() local
284 if ((hasFrom && isColorType(fromType)) || (hasTo && isColorType(toType))) { in getPVH()
340 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
351 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
370 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
372 } else if (isColorType(toType)) { in getPVH()
383 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
385 } else if (isColorType(toType)) { in getPVH()
571 boolean getFloats, boolean hasFrom, int fromType, boolean hasTo, int toType) { in setupValues() argument
584 if (toType == TypedValue.TYPE_DIMENSION) { in setupValues()
[all …]
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
DAnimatorInflaterCompat.java211 int toType = hasTo ? tvTo.type : 0; in getPVH() local
215 if ((hasFrom && isColorType(fromType)) || (hasTo && isColorType(toType))) { in getPVH()
271 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
282 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
301 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
303 } else if (isColorType(toType)) { in getPVH()
314 if (toType == TypedValue.TYPE_DIMENSION) { in getPVH()
316 } else if (isColorType(toType)) { in getPVH()
660 int toType = hasTo ? tvTo.type : 0; in inferValueTypeFromValues() local
664 if ((hasFrom && isColorType(fromType)) || (hasTo && isColorType(toType))) { in inferValueTypeFromValues()
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/ext/
Delement_ext.kt101 fun AnnotationValue.toType(): TypeMirror { in toType() method
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/
DEntityProcessor.kt23 import android.arch.persistence.room.ext.toType in <lambda>()
523 getAnnotationValue(a, "entity").toType() in <lambda>()
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
DSetterStore.java380 String toType = getQualifiedName(conversionMethod.getReturnType()); in addConversionMethod() local
387 convertTo.put(toType, methodDescription); in addConversionMethod()
414 for (String toType : convertTos.keySet()) { in clear()
415 MethodDescription methodDescription = convertTos.get(toType); in clear()
417 removedConversions.add(toType); in clear()