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

1 2 3 4 5 6 7 8 91011>>

  /external/annotation-tools/scene-lib/src/type/
ArrayType.java 26 public Type getComponentType() {
  /external/parameter-framework/upstream/parameter/
ComponentLibrary.cpp 44 const CComponentType *CComponentLibrary::getComponentType(const std::string &strName) const
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 49 public static Type getComponentType( this Type type )
  /libcore/libart/src/main/java/java/lang/invoke/
ArrayElementVarHandle.java 28 super(arrayClass.getComponentType(), arrayClass, false /* isFinal */,
ByteArrayViewVarHandle.java 29 super(arrayClass.getComponentType(), byte[].class, false /* isFinal */,
ByteBufferViewVarHandle.java 30 super(arrayClass.getComponentType(), byte[].class, false /* isFinal */,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraUtilsTypeReferenceTest.java 197 assertNull(intToken.getComponentType());
200 assertNull(listToken.getComponentType());
204 assertNull(listListToken.getComponentType());
208 assertTypeReferenceEquals(intArrayToken.getComponentType(), int.class);
211 assertTypeReferenceEquals(integerArrayToken.getComponentType(), Integer.class);
213 assertEquals(new IntArrayToken1().getComponentType(),
214 new IntArrayToken2().getComponentType());
216 assertEquals(new IntListArrayToken1().getComponentType(),
217 new IntListArrayToken2().getComponentType());
221 assertEquals(listToken, listArrayToken.getComponentType());
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedArrayType.java 86 public ResolvedType getComponentType() {
93 if (baseType.isPrimitive() && other.asArrayType().getComponentType().isPrimitive()) {
94 return baseType.equals(other.asArrayType().getComponentType());
96 return baseType.isAssignableBy(other.asArrayType().getComponentType());
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/
ArrayType.java 41 public Type getComponentType() {
78 type = arrayType.getComponentType();
  /external/javassist/src/main/javassist/
CtArray.java 43 mod |= getComponentType().getModifiers()
77 && getComponentType().subtypeOf(clazz.getComponentType());
80 public CtClass getComponentType() throws NotFoundException {
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 67 annotationClass.getDeclaringClass(), returnType.getComponentType());
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 208 public TypeReference<?> getComponentType() {
209 Type componentType = getComponentType(mType);
216 private static Type getComponentType(Type type) {
220 return ((Class<?>) type).getComponentType();
  /external/guava/guava/src/com/google/common/reflect/
Types.java 189 @Nullable static Type getComponentType(Type type) {
203 result.set(t.getComponentType());
215 Type componentType = getComponentType(bound);
542 return new GenericArrayTypeImpl(cls.getComponentType());
TypeToken.java 56 * #getComponentType}. It also provides additional utilities such as {@link #getTypes} and {@link
431 return getComponentType() != null;
481 @Nullable public final TypeToken<?> getComponentType() {
482 Type componentType = Types.getComponentType(runtimeType);
843 return isAssignable(fromClass.getComponentType(), to.getGenericComponentType());
858 return isAssignable(from.getGenericComponentType(), toClass.getComponentType());
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ArrayType.java 108 public Type getComponentType() {
162 type = arrayType.getComponentType();
  /external/javassist/src/main/javassist/compiler/
JvstTypeChecker.java 270 setType(type.getComponentType(), dim + 1);
JvstCodeGen.java 685 setType(type.getComponentType(), dim + 1);
  /external/javassist/src/main/javassist/expr/
NewArray.java 79 public CtClass getComponentType() throws NotFoundException {
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
InjectedClass.java 63 public ModelClass getComponentType() {
ModelClass.java 47 public abstract ModelClass getComponentType();
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaClass.java 39 Class component = aClass.getComponentType();
52 public ModelClass getComponentType() {
54 return new JavaClass(mClass.getComponentType());
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 458 emit ('['); parameterType (_parameterType.getComponentType ());
490 Class.forName ('[' + descriptor).getComponentType ();
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationClass.java 70 public AnnotationClass getComponentType() {
73 component = ((ArrayType) mTypeMirror).getComponentType();
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 581 return getComponentType().toHuman() + "[]";
781 * {@code true}, then it is safe to use {@link #getComponentType}
859 public Type getComponentType() {
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 563 return getComponentType().toHuman() + "[]";
768 * {@code true}, then it is safe to use {@link #getComponentType}
846 public Type getComponentType() {

Completed in 273 milliseconds

1 2 3 4 5 6 7 8 91011>>