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

1 2 3 4 5

  /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() + "[]";
AnnotationAccess.java 673 Class<?> componentType = type.getComponentType();
674 Object array = Array.newInstance(componentType, size);
676 Array.set(array, i, decodeValue(context, componentType, dex, reader));
  /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/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/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;
  /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...]
validationES.cpp 280 GLenum componentType = gl::GetComponentType(internalformat, context->getClientVersion());
281 if ((componentType == GL_UNSIGNED_INT || componentType == GL_INT) && samples > 0)
    [all...]
  /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);
Clear11.cpp 226 GLenum componentType = gl::GetComponentType(internalFormat, clientVersion);
228 !(componentType == GL_FLOAT || componentType == GL_UNSIGNED_NORMALIZED || componentType == GL_SIGNED_NORMALIZED))
formatutils11.cpp     [all...]
  /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.hpp 114 VertexComponentType componentType; //!< Component type.
123 : componentType (componentType_)
133 : componentType (VTX_COMP_TYPE_LAST)
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...]
  /external/deqp/modules/gles3/functional/
es3fFboStateQueryTests.cpp 502 GLenum componentType;
548 checkColorAttachmentParam(m_testCtx, *this, GL_FRAMEBUFFER, GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE, requiredColorformats[ndx].componentType);
    [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);
  /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,
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 661 void componentType () throws IOException
684 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/cf/code/
RopperMachine.java 408 Type componentType = ((CstType) cst).getClassType();
410 componentType = componentType.getComponentType();
416 if (componentType.isPrimitive()) {
423 CstFieldRef.forPrimitiveType(componentType);
434 new CstType(componentType));
    [all...]
  /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/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;
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 550 Type componentType;
554 componentType = comp;
566 return componentType;
573 StringBuffer sbuf = new StringBuffer(componentType.toString());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
naptypes.h 155 UINT32 componentType;
  /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 630 milliseconds

1 2 3 4 5