Searched defs:componentType (Results 1 - 3 of 3) sorted by last modified time

/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
H A DVMRuntime_Delegate.java31 /*package*/ static Object newUnpaddedArray(VMRuntime runtime, Class<?> componentType, argument
35 if (!componentType.isPrimitive()) {
37 return java.lang.reflect.Array.newInstance(componentType, size);
38 } else if (componentType == char.class) {
44 } else if (componentType == int.class) {
47 } else if (componentType == byte.class) {
53 } else if (componentType == boolean.class) {
59 } else if (componentType == short.class) {
65 } else if (componentType == float.class) {
68 } else if (componentType
[all...]
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DTypeReference.java199 private static final Class<?> getArrayClass(Class<?> componentType) { argument
200 return Array.newInstance(componentType, 0).getClass();
209 Type componentType = getComponentType(mType);
211 return (componentType != null) ?
212 createSpecializedTypeReference(componentType) :

Completed in 132 milliseconds