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

/frameworks/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/support/core/ktx/src/main/java/androidx/core/os/
H A DBundle.kt64 val componentType = value::class.java.componentType
67 Parcelable::class.java.isAssignableFrom(componentType) -> {
70 String::class.java.isAssignableFrom(componentType) -> {
73 CharSequence::class.java.isAssignableFrom(componentType) -> {
76 Serializable::class.java.isAssignableFrom(componentType) -> {
80 val valueType = componentType.canonicalName
H A DPersistableBundle.kt63 val componentType = value::class.java.componentType
66 String::class.java.isAssignableFrom(componentType) -> {
70 val valueType = componentType.canonicalName
/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/support/room/compiler/src/main/kotlin/androidx/room/processor/
H A DShortcutParameterProcessor.kt98 val entity = typeMirror.componentType
H A DInsertionMethodProcessor.kt103 val param = arrayType.componentType
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/
H A DTypeAdapterStore.kt304 } else if (typeMirror is ArrayType && typeMirror.componentType.kind != TypeKind.BYTE) {
306 findRowAdapter(typeMirror.componentType, query) ?: return null
412 } else if (typeMirror is ArrayType && typeMirror.componentType.kind != TypeKind.BYTE) {
413 val component = typeMirror.componentType
/frameworks/rs/rsov/compiler/spirit/
H A Dmodule.cpp302 TypeVectorInst *Module::getVectorType(Instruction *componentType, int width) { argument
303 return getGlobalSection()->getVectorType(componentType, width);
787 TypeVectorInst *GlobalSection::getVectorType(Instruction *componentType,
789 // TODO: verify that componentType is basic numeric types
793 return vecTy->mOperand1.mInstruction == componentType &&
797 return mBuilder->MakeTypeVector(componentType, width);
H A Dmodule.h159 TypeVectorInst *getVectorType(Instruction *componentType, int width);
414 TypeVectorInst *getVectorType(Instruction *componentType, int width);
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp617 EGLint componentType = EGL_COLOR_COMPONENT_TYPE_FIXED_EXT; local
618 cnx->egl.eglGetConfigAttrib(dpy, config, EGL_COLOR_COMPONENT_TYPE_EXT, &componentType);
646 if (componentType == EGL_COLOR_COMPONENT_TYPE_FIXED_EXT) {
657 if (componentType == EGL_COLOR_COMPONENT_TYPE_FIXED_EXT) {
/frameworks/base/core/java/android/widget/
H A DGridLayout.java2353 Class<?> componentType = a.getClass().getComponentType();
2354 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
/frameworks/support/gridlayout/src/main/java/androidx/gridlayout/widget/
H A DGridLayout.java2240 Class<?> componentType = a.getClass().getComponentType();
2241 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.java4169 @Nullable ComponentName component, @ComponentType int componentType, int userId) {
4201 return !isComponentVisibleToInstantApp(component, componentType);
4168 filterAppAccessLPr(@ullable PackageSetting ps, int callingUid, @Nullable ComponentName component, @ComponentType int componentType, int userId) argument
[all...]

Completed in 491 milliseconds