Home
last modified time | relevance | path

Searched refs:componentType (Results 1 – 25 of 36) sorted by relevance

12

/external/guava/guava/src/com/google/common/reflect/
DTypes.java63 static Type newArrayType(Type componentType) { in newArrayType() argument
64 if (componentType instanceof WildcardType) { in newArrayType()
65 WildcardType wildcard = (WildcardType) componentType; in newArrayType()
76 return JavaVersion.CURRENT.newArrayType(componentType); in newArrayType()
208 Type componentType = getComponentType(bound); in subtypeOfComponentType() local
209 if (componentType != null) { in subtypeOfComponentType()
212 if (componentType instanceof Class) { in subtypeOfComponentType()
213 Class<?> componentClass = (Class<?>) componentType; in subtypeOfComponentType()
218 return subtypeOf(componentType); in subtypeOfComponentType()
227 private final Type componentType; field in Types.GenericArrayTypeImpl
[all …]
DTypeResolver.java140 Type componentType = Types.getComponentType(to); in populateTypeMappings() local
141 checkArgument(componentType != null, "%s is not an array type.", to); in populateTypeMappings()
142 populateTypeMappings(mappings, fromArrayType.getGenericComponentType(), componentType); in populateTypeMappings()
189 Type componentType = type.getGenericComponentType(); in resolveGenericArrayType() local
190 Type resolvedComponentType = resolveType(componentType); in resolveGenericArrayType()
DTypeToken.java482 Type componentType = Types.getComponentType(runtimeType); in getComponentType() local
483 if (componentType == null) { in getComponentType()
486 return of(componentType); in getComponentType()
1000 TypeToken componentType = checkNotNull(getComponentType(),
1004 TypeToken<?> componentSupertype = componentType.getSupertype(supertype.getComponentType());
1049 private static Type newArrayClassOrGenericArrayType(Type componentType) {
1050 return Types.JavaVersion.JAVA7.newArrayType(componentType);
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
DToStringHelper.java109 Class<?> componentType = objectClass.getComponentType(); in renderArray() local
112 if (componentType.isPrimitive() == false) { in renderArray()
121 if (Boolean.TYPE.equals(componentType)) { in renderArray()
129 } else if (Integer.TYPE.equals(componentType)) { in renderArray()
138 } else if (Long.TYPE.equals(componentType)) { in renderArray()
146 } else if (Double.TYPE.equals(componentType)) { in renderArray()
154 } else if (Float.TYPE.equals(componentType)) { in renderArray()
162 } else if (Character.TYPE.equals(componentType)) { in renderArray()
170 } else if (Short.TYPE.equals(componentType)) { in renderArray()
178 } else if (Byte.TYPE.equals(componentType)) { in renderArray()
/external/deqp/framework/opengl/
DgluDrawUtil.cpp44 VertexComponentType componentType; member
59 , componentType (componentType_) in VertexAttributeDescriptor()
70 , componentType (VTX_COMP_TYPE_LAST) in VertexAttributeDescriptor()
278 const int elementSize = getVtxCompSize(va.pointer.componentType)*va.pointer.numComponents; in appendAttributeNonStrided()
285 va.pointer.componentType, in appendAttributeNonStrided()
303 DE_ASSERT(dstVA.componentType == srcPtr.componentType && in copyToLayout()
307 const int elementSize = getVtxCompSize(dstVA.componentType)*dstVA.numComponents; in copyToLayout()
394 vertexArray.pointer.componentType, in getUserPointerDescriptor()
405 …const bool isIntType = de::inRange<int>(va.componentType, VTX_COMP_UNSIGNED_INT8, VTX_COMP_SIGNE… in setVertexAttribPointer()
406 const bool isSpecialType = de::inRange<int>(va.componentType, VTX_COMP_FIXED, VTX_COMP_FLOAT); in setVertexAttribPointer()
[all …]
DgluDrawUtil.hpp114 VertexComponentType componentType; //!< Component type. member
123 : componentType (componentType_) in VertexArrayPointer()
133 : componentType (VTX_COMP_TYPE_LAST) in VertexArrayPointer()
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DType.java274 private Type componentType; field in Type
446 this.componentType = null; in Type()
794 if (componentType == null) { in getComponentType()
799 componentType = intern(descriptor.substring(1)); in getComponentType()
802 return componentType; in getComponentType()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DEmitUtils.java103 Type componentType = TypeUtils.getComponentType(type); in process_array() local
116 e.array_load(componentType); in process_array()
117 callback.processElement(componentType); in process_array()
135 Type componentType = TypeUtils.getComponentType(type); in process_arrays() local
150 e.array_load(componentType); in process_arrays()
153 e.array_load(componentType); in process_arrays()
154 callback.processElement(componentType); in process_arrays()
355 private static Class remapComponentType(Class componentType) { in remapComponentType() argument
356 if (componentType.equals(Type.class)) in remapComponentType()
358 return componentType; in remapComponentType()
/external/javassist/src/main/javassist/bytecode/
DSignatureAttribute.java550 Type componentType; field in SignatureAttribute.ArrayType
554 componentType = comp; in ArrayType()
566 return componentType; in getComponentType()
573 StringBuffer sbuf = new StringBuffer(componentType.toString()); in toString()
/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java661 void componentType () throws IOException in componentType() method in Types.methodDescriptorCompiler
684 componentType (); in arrayType()
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java1169 Type componentType; in ropFor() local
1175 componentType = dest.getType(); in ropFor()
1177 componentType = source.getComponentType(); in ropFor()
1179 return opAget(componentType); in ropFor()
1183 Type componentType; in ropFor() local
1189 componentType = sources.getType(0); in ropFor()
1191 componentType = source.getComponentType(); in ropFor()
1193 return opAput(componentType); in ropFor()
/external/deqp/modules/glshared/
DglsFragOpInteractionCase.cpp134 return glu::VertexArrayBinding(entry.binding, glu::VertexArrayPointer(entry.pointer.componentType, in getEntryWithPointer()
146 …DE_ASSERT(pointer.componentType == glu::VTX_COMP_FLOAT && pointer.convert == glu::VTX_COMP_CONVERT… in setVertex()
318 DE_ASSERT(bindingPtr.pointer.componentType == glu::VTX_COMP_FLOAT); in setupAttributes()
/external/vogar/lib/
Dgson-1.7.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dmockito-all-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/ ...
/external/guava/guava-testlib/src/com/google/common/testing/
DFreshValueGenerator.java170 TypeToken<?> componentType = type.getComponentType(); in generate() local
171 Object array = Array.newInstance(componentType.getRawType(), 1); in generate()
172 Array.set(array, 0, generate(componentType)); in generate()
/external/deqp/modules/gles3/functional/
Des3fFboStateQueryTests.cpp502 GLenum componentType; in test() member
548 …GL_FRAMEBUFFER, GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE, requiredColorformats[ndx].componentType); in test()
/external/doclava/src/com/google/doclava/
DDoclava.java1403 Class<?> componentType = expected.getComponentType(); in filterHiddenAndRemoved() local
1410 list.add(filterHiddenAndRemoved(entry, componentType)); in filterHiddenAndRemoved()
1412 return list.toArray((Object[]) Array.newInstance(componentType, list.size())); in filterHiddenAndRemoved()
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
DEASLib.c450 desc.componentType = kAudioUnitType_Output; in OpenWaveOutDevice()
/external/guava/guava-tests/test/com/google/common/reflect/
DTypeTokenTest.java1585 private static <T> TypeToken<T[]> arrayOf(Class<T> componentType) { in arrayOf() argument
1587 .where(new TypeParameter<T>() {}, componentType); in arrayOf()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectFactory.java274 protected GameComponentPool getComponentPool(Class<?> componentType) { in getComponentPool() argument
276 mPoolSearchDummy.objectClass = componentType; in getComponentPool()
284 protected GameComponent allocateComponent(Class<?> componentType) { in allocateComponent() argument
285 GameComponentPool pool = getComponentPool(componentType); in allocateComponent()
304 protected boolean componentAvailable(Class<?> componentType, int count) { in componentAvailable() argument
306 GameComponentPool pool = getComponentPool(componentType); in componentAvailable()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
Djdi.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/robolectric/lib/test/
Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/ ...

12