HomeSort by relevance Sort by last modified time
    Searched refs:componentType (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/libcore/reflect/
GenericArrayTypeImpl.java 24 private final Type componentType;
26 public GenericArrayTypeImpl(Type componentType) {
27 this.componentType = componentType;
32 return ((ParameterizedTypeImpl)componentType).getResolvedType();
34 return componentType;
53 return componentType.toString() + "[]";
  /frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
VMRuntime_Delegate.java 31 /*package*/ static Object newUnpaddedArray(VMRuntime runtime, Class<?> componentType,
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 == long.class)
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigArrayType.java 26 private ITypeReference componentType;
28 public SigArrayType(ITypeReference componentType) {
29 this.componentType = componentType;
33 return componentType;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericArrayTypeTest.java 39 Type componentType = ((GenericArrayType) genericType).getGenericComponentType();
40 assertEquals(getTypeParameter(clazz), componentType);
41 assertInstanceOf(TypeVariable.class, componentType);
42 TypeVariable<?> componentTypeVariable = (TypeVariable<?>) componentType;
58 Type componentType = arrayType.getGenericComponentType();
59 assertInstanceOf(ParameterizedType.class, componentType);
60 ParameterizedType parameteriezdType = (ParameterizedType) componentType;
  /libcore/luni/src/test/java/dalvik/system/
VMRuntimeTest.java 27 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) {
30 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, -1);
36 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, Integer.MIN_VALUE);
43 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, i);
45 assertEquals(array.getClass().getComponentType(), componentType);
81 private void doTestNewUnpaddedArray(Class<?> componentType, int step, int maxLength) {
84 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, -1);
90 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, Integer.MIN_VALUE);
97 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, i);
99 assertEquals(array.getClass().getComponentType(), componentType);
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 315 * dimensions. Equivalent to {@code new componentType[d0][d1]...[dn]} for a
325 public static Object newInstance(Class<?> componentType, int... dimensions) throws NegativeArraySizeException, IllegalArgumentException {
329 if (componentType == void.class) {
332 if (componentType == null) {
333 throw new NullPointerException("componentType == null");
335 return createMultiArray(componentType, dimensions);
341 private static native Object createMultiArray(Class<?> componentType, int[] dimensions) throws NegativeArraySizeException;
345 * Equivalent to {@code new componentType[size]}.
352 public static Object newInstance(Class<?> componentType, int size) throws NegativeArraySizeException {
353 if (!componentType.isPrimitive())
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
vsbackup.h 131 STDMETHOD_(HRESULT,AddComponent)(THIS_ VSS_ID instanceId,VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName) PURE;
137 STDMETHOD_(HRESULT,SetBackupSucceeded)(THIS_ VSS_ID instanceId,VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,BOOLEAN bSucceeded) PURE;
138 STDMETHOD_(HRESULT,SetBackupOptions)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,LPCWSTR wszBackupOptions) PURE;
139 STDMETHOD_(HRESULT,SetSelectedForRestore)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,BOOLEAN bSelectedForRestore) PURE;
140 STDMETHOD_(HRESULT,SetRestoreOptions)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,LPCWSTR wszRestoreOptions) PURE;
141 STDMETHOD_(HRESULT,SetAdditionalRestores)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,BOOLEAN bAdditionalResources) PURE;
142 STDMETHOD_(HRESULT,SetPreviousBackupStamp)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,LPCWSTR wszPreviousBackupStamp) PURE;
145 STDMETHOD_(HRESULT,AddAlternativeLocationMapping)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,LPCWSTR wszPath,LPCWSTR wszFilespec,BOOLEAN bRecursive,LPCWSTR wszDestination) PURE;
146 STDMETHOD_(HRESULT,AddRestoreSubcomponent)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,LPCWSTR wszSubComponentLogicalPath,LPCWSTR wszSubComponentName,BOOLEAN bRepair) PURE;
147 STDMETHOD_(HRESULT,SetFileRestoreStatus)(THIS_ VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName,VSS_FILE_RESTORE_STATUS status) PURE
    [all...]
naptypes.h 155 UINT32 componentType;
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 253 public native Object newNonMovableArray(Class<?> componentType, int length);
258 * componentType and the memory allocator implementation.
260 public native Object newUnpaddedArray(Class<?> componentType, int minLength);
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 199 private static final Class<?> getArrayClass(Class<?> componentType) {
200 return Array.newInstance(componentType, 0).getClass();
209 Type componentType = getComponentType(mType);
211 return (componentType != null) ?
212 createSpecializedTypeReference(componentType) :
  /external/deqp/framework/opengl/
gluDrawUtil.cpp 44 VertexComponentType componentType;
59 , componentType (componentType_)
70 , componentType (VTX_COMP_TYPE_LAST)
278 const int elementSize = getVtxCompSize(va.pointer.componentType)*va.pointer.numComponents;
285 va.pointer.componentType,
303 DE_ASSERT(dstVA.componentType == srcPtr.componentType &&
307 const int elementSize = getVtxCompSize(dstVA.componentType)*dstVA.numComponents;
394 vertexArray.pointer.componentType,
405 const bool isIntType = de::inRange<int>(va.componentType, VTX_COMP_UNSIGNED_INT8, VTX_COMP_SIGNED_INT32)
    [all...]
gluDrawUtil.hpp 114 VertexComponentType componentType; //!< Component type.
123 : componentType (componentType_)
133 : componentType (VTX_COMP_TYPE_LAST)
  /cts/tools/signature-tools/src/signature/model/util/
ITypeFactory.java 47 * @param componentType
51 public SigArrayType getArrayType(ITypeReference componentType);
TypePool.java 70 public SigArrayType getArrayType(ITypeReference componentType) {
71 assert componentType != null;
72 return new SigArrayType(componentType);
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 289 private Type componentType;
512 this.componentType = null;
860 if (componentType == null) {
865 componentType = intern(descriptor.substring(1));
868 return componentType;
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 273 private Type componentType;
445 this.componentType = null;
793 if (componentType == null) {
798 componentType = intern(descriptor.substring(1));
801 return componentType;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
PixelTransfer11.cpp 241 GLenum componentType = gl::GetComponentType(internalFormat, clientVersion);
243 if (componentType == GL_SIGNED_NORMALIZED || componentType == GL_UNSIGNED_NORMALIZED)
245 componentType = GL_FLOAT;
248 auto shaderMapIt = mBufferToTexturePSMap.find(componentType);
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 274 private Type componentType;
446 this.componentType = null;
794 if (componentType == null) {
799 componentType = intern(descriptor.substring(1));
802 return componentType;
  /hardware/ti/omap4-aah/domx/omx_core/src/
OMX_Core.c 167 * Description: This method will create the handle of the COMPONENTTYPE
196 OMX_COMPONENTTYPE *componentType;
313 componentType = (OMX_COMPONENTTYPE *) * pHandle;
314 componentType->nSize = sizeof(OMX_COMPONENTTYPE);
316 componentType->nVersion.s.nVersionMajor = 1;
317 componentType->nVersion.s.nVersionMinor = 1;
318 componentType->nVersion.s.nRevision = 0;
319 componentType->nVersion.s.nStep = 0;
326 (componentType->SetCallbacks) (*pHandle, pCallBacks,
  /hardware/ti/omap4xxx/domx/omx_core/src/
OMX_Core.c 160 * Description: This method will create the handle of the COMPONENTTYPE
189 OMX_COMPONENTTYPE *componentType;
300 componentType = (OMX_COMPONENTTYPE *) * pHandle;
301 componentType->nSize = sizeof(OMX_COMPONENTTYPE);
303 componentType->nVersion.s.nVersionMajor = 1;
304 componentType->nVersion.s.nVersionMinor = 1;
305 componentType->nVersion.s.nRevision = 0;
306 componentType->nVersion.s.nStep = 0;
313 (componentType->SetCallbacks) (*pHandle, pCallBacks,
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java     [all...]
ObjectInputStream.java     [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 146 * Description: This method will create the handle of the COMPONENTTYPE
174 OMX_COMPONENTTYPE *componentType;
269 componentType = (OMX_COMPONENTTYPE*) *pHandle;
270 componentType->nSize = sizeof(OMX_COMPONENTTYPE);
273 err = (componentType->SetCallbacks)(*pHandle, pCallBacks, pAppData);
  /external/chromium_org/third_party/angle/src/libGLESv2/
DynamicHLSL.cpp 30 std::string HLSLComponentTypeString(GLenum componentType)
32 switch (componentType)
43 std::string HLSLComponentTypeString(GLenum componentType, int componentCount)
45 return HLSLComponentTypeString(componentType) + (componentCount > 1 ? Str(componentCount) : "");
322 GLenum componentType = UniformComponentType(transposedType);
324 typeString = gl_d3d::HLSLComponentTypeString(componentType, columnCount);
366 GLenum componentType = mRenderer->getVertexComponentType(vertexFormat);
367 structHLSL += " " + gl_d3d::HLSLComponentTypeString(componentType, UniformComponentCount(shaderAttribute.type));
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
EmitUtils.java 103 Type componentType = TypeUtils.getComponentType(type);
116 e.array_load(componentType);
117 callback.processElement(componentType);
135 Type componentType = TypeUtils.getComponentType(type);
150 e.array_load(componentType);
153 e.array_load(componentType);
154 callback.processElement(componentType);
355 private static Class remapComponentType(Class componentType) {
356 if (componentType.equals(Type.class))
358 return componentType;
    [all...]

Completed in 1788 milliseconds

1 2 3 4 5 6