Home
last modified time | relevance | path

Searched refs:componentType (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
DVMRuntime_Delegate.java31 /*package*/ static Object newUnpaddedArray(VMRuntime runtime, Class<?> componentType, in newUnpaddedArray() argument
35 if (!componentType.isPrimitive()) { in newUnpaddedArray()
37 return java.lang.reflect.Array.newInstance(componentType, size); in newUnpaddedArray()
38 } else if (componentType == char.class) { in newUnpaddedArray()
44 } else if (componentType == int.class) { in newUnpaddedArray()
47 } else if (componentType == byte.class) { in newUnpaddedArray()
53 } else if (componentType == boolean.class) { in newUnpaddedArray()
59 } else if (componentType == short.class) { in newUnpaddedArray()
65 } else if (componentType == float.class) { in newUnpaddedArray()
68 } else if (componentType == long.class) { in newUnpaddedArray()
[all …]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
Dext.kt61 val componentType : String; in Delegates() constant
63 'Z' -> componentType = "boolean" in Delegates()
64 'B' -> componentType = "byte" in Delegates()
65 'C' -> componentType = "char" in Delegates()
66 … 'L' -> componentType = name.substring(numArray + 1, name.length() - 1).replace('$', '.'); in Delegates()
67 'D' -> componentType = "double" in Delegates()
68 'F' -> componentType = "float" in Delegates()
69 'I' -> componentType = "int" in Delegates()
70 'J' -> componentType = "long" in Delegates()
71 'S' -> componentType = "short" in Delegates()
[all …]
/frameworks/base/core/java/android/hardware/camera2/utils/
DTypeReference.java199 private static final Class<?> getArrayClass(Class<?> componentType) { in getArrayClass() argument
200 return Array.newInstance(componentType, 0).getClass(); in getArrayClass()
209 Type componentType = getComponentType(mType); in getComponentType() local
211 return (componentType != null) ? in getComponentType()
212 createSpecializedTypeReference(componentType) : in getComponentType()
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
DAnnotationTypeUtil.java78 final String componentType = getDescription(arrayType.getComponentType()); in getDescription() local
79 return ARRAY + componentType; in getDescription()
/frameworks/base/core/java/android/widget/
DGridLayout.java2330 Class<?> componentType = a.getClass().getComponentType();
2331 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
DGridLayout.java2224 Class<?> componentType = a.getClass().getComponentType();
2225 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
/frameworks/data-binding/prebuilds/1.0-rc0/
Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/ ...