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

1 2 3

  /libcore/luni/src/main/java/libcore/reflect/
GenericArrayTypeImpl.java 23 private final Type componentType;
25 public GenericArrayTypeImpl(Type componentType) {
26 this.componentType = componentType;
31 return ((ParameterizedTypeImpl)componentType).getResolvedType();
33 return componentType;
38 return componentType.toString() + "[]";
  /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/tests/api/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/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...]
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 207 public native Object newNonMovableArray(Class<?> componentType, int length);
  /libcore/libdvm/src/main/java/dalvik/system/
VMRuntime.java 207 public native Object newNonMovableArray(Class<?> componentType, int length);
  /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/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/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...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 395 Type componentType = ((CstType) cst).getClassType();
397 componentType = componentType.getComponentType();
403 if (componentType.isPrimitive()) {
410 CstFieldRef.forPrimitiveType(componentType);
421 new CstType(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);
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 288 Class<Object> componentType = (Class<Object>)type.getComponentType();
291 size += packSingle(Array.get(value, i), buffer, componentType, nativeType, sizeOnly);
381 Class<?> componentType = type.getComponentType();
386 MetadataMarshalClass<?> marshaler = getMarshaler(componentType, nativeType);
403 array = Array.newInstance(componentType, arraySize);
405 Object elem = unpackSingle(buffer, componentType, nativeType);
414 Object elem = unpackSingle(buffer, componentType, nativeType);
418 array = arrayList.toArray((T[]) Array.newInstance(componentType, 0));
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 550 Type componentType;
554 componentType = comp;
566 return componentType;
573 StringBuffer sbuf = new StringBuffer(componentType.toString());
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 661 void componentType () throws IOException
684 componentType ();
  /external/chromium_org/media/audio/mac/
audio_synchronized_mac.cc 385 varispeed_desc.componentType = kAudioUnitType_FormatConverter;
402 input_desc.componentType = kAudioUnitType_Output;
419 output_desc.componentType = kAudioUnitType_Output;
audio_low_latency_output_mac.cc 107 desc.componentType = kAudioUnitType_Output;
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java     [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java     [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Rops.java     [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
SDL_coreaudio.c 238 desc.componentType = kAudioUnitType_Output;

Completed in 2187 milliseconds

1 2 3