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

1 2 3

  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForArray.java 23 private final Type componentType;
25 public ImplForArray(Type componentType) {
26 this.componentType = componentType;
31 return ((ImplForType)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/dalvik/src/main/java/dalvik/system/
VMRuntime.java 202 public native Object newNonMovableArray(Class<?> componentType, int length);
  /external/webkit/Source/WebCore/svg/
SVGComponentTransferFunctionElement.cpp 89 ComponentTransferType componentType = static_cast<ComponentTransferType>(type());
90 if (componentType < FECOMPONENTTRANSFER_TYPE_UNKNOWN || componentType > FECOMPONENTTRANSFER_TYPE_GAMMA)
  /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 274 private Type componentType;
446 this.componentType = null;
794 if (componentType == null) {
799 componentType = intern(descriptor.substring(1));
802 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 396 Type componentType = ((CstType) cst).getClassType();
398 componentType = componentType.getComponentType();
404 if (componentType.isPrimitive()) {
411 CstFieldRef.forPrimitiveType(componentType);
422 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);
  /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/qemu/distrib/sdl-1.2.12/src/audio/macosx/
SDL_coreaudio.c 224 desc.componentType = kAudioUnitComponentType;
  /external/webkit/Source/WebCore/platform/audio/mac/
AudioDestinationMac.cpp 81 desc.componentType = kAudioUnitType_Output;
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 661 void componentType () throws IOException
684 componentType ();
  /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.12/src/cdrom/macosx/
AudioFilePlayer.c 81 if (desc.componentType != kAudioUnitComponentType) {
  /external/webkit/Source/WebKit/mac/Misc/
WebNSURLExtras.mm 790 -(NSData *)_web_dataForURLComponentType:(CFURLComponentType)componentType
805 if (componentType != completeURL) {
806 range = CFURLGetByteRangeForComponent((CFURLRef)self, componentType, NULL);
822 if (componentType == kCFURLComponentQuery) {
    [all...]

Completed in 1875 milliseconds

1 2 3