Searched refs:componentType (Results 1 - 14 of 14) sorted by relevance

/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/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
H A Dext.kt56 val componentType : String;
58 'Z' -> componentType = "boolean"
59 'B' -> componentType = "byte"
60 'C' -> componentType = "char"
61 'L' -> componentType = name.substring(numArray + 1, name.length - 1).replace('$', '.');
62 'D' -> componentType = "double"
63 'F' -> componentType = "float"
64 'I' -> componentType = "int"
65 'J' -> componentType = "long"
66 'S' -> 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) :
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationTypeUtil.java78 final String componentType = getDescription(arrayType.getComponentType());
79 return ARRAY + componentType;
/frameworks/rs/rsov/compiler/spirit/
H A Dmodule.cpp295 TypeVectorInst *Module::getVectorType(Instruction *componentType, int width) { argument
296 return getGlobalSection()->getVectorType(componentType, width);
762 TypeVectorInst *GlobalSection::getVectorType(Instruction *componentType,
764 // TODO: verify that componentType is basic numeric types
768 return vecTy->mOperand1.mInstruction == componentType &&
772 return mBuilder->MakeTypeVector(componentType, width);
H A Dmodule.h157 TypeVectorInst *getVectorType(Instruction *componentType, int width);
410 TypeVectorInst *getVectorType(Instruction *componentType, int width);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp500 EGLint componentType = EGL_COLOR_COMPONENT_TYPE_FIXED_EXT; local
502 &componentType);
519 if (componentType == EGL_COLOR_COMPONENT_TYPE_FIXED_EXT) {
530 if (componentType == EGL_COLOR_COMPONENT_TYPE_FIXED_EXT) {
/frameworks/base/core/java/android/widget/
H A DGridLayout.java2347 Class<?> componentType = a.getClass().getComponentType();
2348 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java2237 Class<?> componentType = a.getClass().getComponentType();
2238 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
/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/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java3770 @Nullable ComponentName component, @ComponentType int componentType, int userId) {
3791 return !isComponentVisibleToInstantApp(component, componentType);
3769 filterAppAccessLPr(@ullable PackageSetting ps, int callingUid, @Nullable ComponentName component, @ComponentType int componentType, int userId) argument
[all...]

Completed in 3135 milliseconds