Searched refs:componentType (Results 1 – 7 of 7) sorted by relevance
/frameworks/layoutlib/bridge/src/dalvik/system/ |
D | VMRuntime_Delegate.java | 31 /*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/base/core/java/android/hardware/camera2/utils/ |
D | TypeReference.java | 203 private static final Class<?> getArrayClass(Class<?> componentType) { in getArrayClass() argument 204 return Array.newInstance(componentType, 0).getClass(); in getArrayClass() 213 Type componentType = getComponentType(mType); in getComponentType() local 215 return (componentType != null) ? in getComponentType() 216 createSpecializedTypeReference(componentType) : in getComponentType()
|
/frameworks/base/services/core/java/com/android/server/media/ |
D | MediaSessionService.java | 924 int componentType = getComponentType(component); in rememberMediaButtonReceiverLocked() local 927 String.valueOf(componentType)); in rememberMediaButtonReceiverLocked() 2167 int componentType = mCurrentFullUserRecord in dispatchMediaKeyEventLocked() local 2173 + receiver + ", type=" + componentType); in dispatchMediaKeyEventLocked() 2177 switch (componentType) { in dispatchMediaKeyEventLocked() 2191 + receiver + ", type=" + componentType, e); in dispatchMediaKeyEventLocked()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_platform_entries.cpp | 630 EGLint componentType = EGL_COLOR_COMPONENT_TYPE_FIXED_EXT; in getNativePixelFormat() local 631 cnx->egl.eglGetConfigAttrib(dpy, config, EGL_COLOR_COMPONENT_TYPE_EXT, &componentType); in getNativePixelFormat() 659 if (componentType == EGL_COLOR_COMPONENT_TYPE_FIXED_EXT) { in getNativePixelFormat() 670 if (componentType == EGL_COLOR_COMPONENT_TYPE_FIXED_EXT) { in getNativePixelFormat()
|
/frameworks/base/core/java/android/widget/ |
D | GridLayout.java | 2370 Class<?> componentType = a.getClass().getComponentType(); 2371 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 4258 @Nullable ComponentName component, @ComponentType int componentType, int userId) { 4290 return !isComponentVisibleToInstantApp(component, componentType);
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 103793 Ljava/lang/Class;->componentType:Ljava/lang/Class;
|