Home
last modified time | relevance | path

Searched defs:elementType (Results 1 – 25 of 1228) sorted by relevance

12345678910>>...50

/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
H A DVariableDeclarationExpr.java57 private Type elementType; field in VariableDeclarationExpr
66 public VariableDeclarationExpr(final Type elementType, String variableName) { in VariableDeclarationExpr()
71 public VariableDeclarationExpr(final Type elementType, VariableDeclarator var) { in VariableDeclarationExpr()
76 …public VariableDeclarationExpr(final Type elementType, String variableName, Modifier... modifiers)… in VariableDeclarationExpr()
83 …public VariableDeclarationExpr(final Type elementType, VariableDeclarator var, Modifier... modifie… in VariableDeclarationExpr()
90 … public VariableDeclarationExpr(final Type elementType, final List<VariableDeclarator> variables) { in VariableDeclarationExpr()
95 public VariableDeclarationExpr(final EnumSet<Modifier> modifiers, final Type elementType, in VariableDeclarationExpr()
104 final Type elementType, in VariableDeclarationExpr()
176 public VariableDeclarationExpr setElementType(final Type elementType) { in setElementType()
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
H A DParameter.java52 private Type elementType; field in Parameter
67 public Parameter(Type elementType, VariableDeclaratorId id) { in Parameter()
81 public static Parameter create(Type elementType, String name) { in create()
85 public Parameter(EnumSet<Modifier> modifiers, Type elementType, VariableDeclaratorId id) { in Parameter()
94 Type elementType, in Parameter()
210 public Parameter setElementType(final Type elementType) { in setElementType()
H A DFieldDeclaration.java60 private Type elementType; field in FieldDeclaration
69 …public FieldDeclaration(EnumSet<Modifier> modifiers, Type elementType, VariableDeclarator variable… in FieldDeclaration()
77 …public FieldDeclaration(EnumSet<Modifier> modifiers, Type elementType, List<VariableDeclarator> va… in FieldDeclaration()
83 …tion(EnumSet<Modifier> modifiers, List<AnnotationExpr> annotations, Type elementType, List<ArrayBr… in FieldDeclaration()
92 …ation(Range range, EnumSet<Modifier> modifiers, List<AnnotationExpr> annotations, Type elementType, in FieldDeclaration()
257 public FieldDeclaration setElementType(final Type elementType) { in setElementType()
H A DMethodDeclaration.java71 private Type elementType; field in MethodDeclaration
90 …public MethodDeclaration(final EnumSet<Modifier> modifiers, final Type elementType, final String n… in MethodDeclaration()
96 …public MethodDeclaration(final EnumSet<Modifier> modifiers, final Type elementType, final String n… in MethodDeclaration()
107 final Type elementType, in MethodDeclaration()
130 final Type elementType, in MethodDeclaration()
262 public MethodDeclaration setElementType(final Type elementType) { in setElementType()
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/util/
H A DEnumSet.java35 EnumSet(java.lang.Class<E> elementType, java.lang.Enum<?>[] universe) { in EnumSet()
40 java.lang.Class<E> elementType) { in noneOf()
45 java.lang.Class<E> elementType) { in allOf()
107 private static <E extends java.lang.Enum<E>> E[] getUniverse(java.lang.Class<E> elementType) { in getUniverse()
123 final java.lang.Class<E> elementType; field in EnumSet
147 private final java.lang.Class<E> elementType; field in EnumSet.SerializationProxy
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DEnumSet.java93 final transient Class<E> elementType; field in EnumSet
100 EnumSet(Class<E>elementType, Enum<?>[] universe) { in EnumSet()
114 public static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType) { in noneOf()
135 public static <E extends Enum<E>> EnumSet<E> allOf(Class<E> elementType) { in allOf()
410 private static <E extends Enum<E>> E[] getUniverse(Class<E> elementType) { in getUniverse()
436 private final Class<E> elementType; field in EnumSet.SerializationProxy
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/18/libcore/ojluni/src/main/java/java/util/
DEnumSet.java93 final transient Class<E> elementType; field in EnumSet
100 EnumSet(Class<E>elementType, Enum<?>[] universe) { in EnumSet()
114 public static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType) { in noneOf()
135 public static <E extends Enum<E>> EnumSet<E> allOf(Class<E> elementType) { in allOf()
410 private static <E extends Enum<E>> E[] getUniverse(Class<E> elementType) { in getUniverse()
436 private final Class<E> elementType; field in EnumSet.SerializationProxy
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DEnumSet.java93 final transient Class<E> elementType; field in EnumSet
100 EnumSet(Class<E>elementType, Enum<?>[] universe) { in EnumSet()
114 public static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType) { in noneOf()
135 public static <E extends Enum<E>> EnumSet<E> allOf(Class<E> elementType) { in allOf()
410 private static <E extends Enum<E>> E[] getUniverse(Class<E> elementType) { in getUniverse()
436 private final Class<E> elementType; field in EnumSet.SerializationProxy
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
H A DArrayCreationExpr.java56 private Type elementType; field in ArrayCreationExpr
66 …public ArrayCreationExpr(Type elementType, NodeList<ArrayCreationLevel> levels, ArrayInitializerEx… in ArrayCreationExpr()
70 public ArrayCreationExpr(Type elementType) { in ArrayCreationExpr()
78 …public ArrayCreationExpr(TokenRange tokenRange, Type elementType, NodeList<ArrayCreationLevel> lev… in ArrayCreationExpr()
128 public ArrayCreationExpr setElementType(final Type elementType) { in setElementType()
/aosp_15_r20/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/type/
H A DArrayTypeTest.java48 PrimitiveType elementType = arrayType4.getComponentType().asPrimitiveType(); in getFieldDeclarationWithArrays() local
70 PrimitiveType elementType = arrayType4.getComponentType().asPrimitiveType(); in getVariableDeclarationWithArrays() local
89 Type elementType = arrayType2.getComponentType(); in getMethodDeclarationWithArrays() local
108 PrimitiveType elementType = innerArrayType.getComponentType().asPrimitiveType(); in getParameterWithArrays() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/dialect/
H A DChloOps.cpp79 Type x, Type y, Type elementType, in getBroadcastType()
134 DictionaryAttr attributes, Type elementType, in InferBroadcastBinaryOpReturnTypeComponents()
196 Type elementType = ComplexType::get(lhsType.getElementType()); in inferReturnTypeComponents() local
227 Type elementType = IntegerType::get(context, 1); in inferReturnTypeComponents() local
353 Type elementType = op.value().getType(); in inferReturnTypeComponents() local
394 Type elementType = onTrueType.getElementType(); in inferReturnTypeComponents() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/lib/Dialect/mhlo/IR/
H A Dchlo_ops.cc106 Type x, Type y, Type elementType, in getBroadcastType()
161 DictionaryAttr attributes, Type elementType, in InferBroadcastBinaryOpReturnTypeComponents()
223 Type elementType = ComplexType::get(lhsType.getElementType()); in inferReturnTypeComponents() local
254 Type elementType = IntegerType::get(context, 1); in inferReturnTypeComponents() local
380 Type elementType = op.value().getType(); in inferReturnTypeComponents() local
421 Type elementType = onTrueType.getElementType(); in inferReturnTypeComponents() local
/aosp_15_r20/out/soong/.intermediates/external/turbine/turbine/linux_glibc_common/javac/anno/com/google/turbine/type/
DAutoValue_Type_ArrayTy.java10 private final Type elementType; field in AutoValue_Type_ArrayTy
15 Type elementType, in AutoValue_Type_ArrayTy()
28 public Type elementType() { in elementType() method in AutoValue_Type_ArrayTy
/aosp_15_r20/external/guice/core/src/com/google/inject/util/
H A DTypes.java95 public static ParameterizedType listOf(Type elementType) { in listOf()
104 public static ParameterizedType collectionOf(Type elementType) { in collectionOf()
113 public static ParameterizedType setOf(Type elementType) { in setOf()
/aosp_15_r20/libcore/ojluni/src/test/java/nio/Buffer/
H A DBulkPutBuffer.java109 static BufferKind[] getKinds(Class<?> elementType) { in getKinds()
127 static ByteOrder[] getOrders(BufferKind kind, Class<?> elementType) { in getOrders()
141 final Class<?> elementType; field in BulkPutBuffer.BufferProxy
160 BufferProxy(Class<?> elementType, BufferKind kind, ByteOrder order) { in BufferProxy()
/aosp_15_r20/external/deqp/modules/glshared/
H A DglsLifetimeTests.hpp345 Attacher(const Context &ctx, Type &elementType, Type &containerType) in Attacher()
430 …FboAttacher(const Context &ctx, Type &elementType, Type &containerType) : Attacher(ctx, elementTyp… in FboAttacher()
458 TextureFboAttacher(const Context &ctx, Type &elementType, Type &containerType) in TextureFboAttacher()
472 RboFboAttacher(const Context &ctx, Type &elementType, Type &containerType) in RboFboAttacher()
486 ShaderProgramAttacher(const Context &ctx, Type &elementType, Type &containerType) in ShaderProgramAttacher()
/aosp_15_r20/external/guice/core/src/com/google/inject/internal/
H A DRealMultibinder.java62 static <T> TypeLiteral<Set<T>> setOf(TypeLiteral<T> elementType) { in setOf()
69 TypeLiteral<T> elementType) { in collectionOfProvidersOf()
77 TypeLiteral<T> elementType) { in collectionOfJavaxProvidersOf()
312 private final TypeLiteral<T> elementType; field in RealMultibinder.BindingSelection
/aosp_15_r20/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameType.java163 public static FrameType buffer1D(int elementType) { in buffer1D()
172 public static FrameType buffer2D(int elementType) { in buffer2D()
182 public static FrameType image2D(int elementType, int accessHint) { in image2D()
/aosp_15_r20/out/soong/.intermediates/packages/modules/IntentResolver/IntentResolver-core/android_common/kapt/gen/stubs/com/android/intentresolver/validation/types/
DParceledArray.java18 private final kotlin.reflect.KClass<T> elementType = null; field in ParceledArray
22 kotlin.reflect.KClass<T> elementType) { in ParceledArray()
/aosp_15_r20/external/turbine/java/com/google/turbine/bytecode/sig/
H A DSig.java224 private final TySig elementType; field in Sig.ArrayTySig
226 public ArrayTySig(TySig elementType) { in ArrayTySig()
231 public TySig elementType() { in elementType() method in Sig.ArrayTySig
/aosp_15_r20/tools/apksig/src/main/java/com/android/apksig/internal/asn1/
H A DAsn1DerEncoder.java163 …private static byte[] toSetOf(Collection<?> values, Asn1Type elementType) throws Asn1EncodingExcep… in toSetOf()
167 …private static byte[] toSequenceOf(Collection<?> values, Asn1Type elementType) throws Asn1Encoding… in toSequenceOf()
171 … private static byte[] toSequenceOrSetOf(Collection<?> values, Asn1Type elementType, boolean toSet) in toSequenceOrSetOf()
/aosp_15_r20/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsonFormatVisitors/
H A DJsonArrayFormatVisitor.java16 void itemsFormat(JsonFormatVisitable handler, JavaType elementType) in itemsFormat()
46 public void itemsFormat(JsonFormatVisitable handler, JavaType elementType) in itemsFormat()
/aosp_15_r20/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
H A DTypeFactory.java793 public ArrayType constructArrayType(Class<?> elementType) { in constructArrayType()
803 public ArrayType constructArrayType(JavaType elementType) { in constructArrayType()
826 JavaType elementType) in constructCollectionType()
861 …ic CollectionLikeType constructCollectionLikeType(Class<?> collectionClass, JavaType elementType) { in constructCollectionLikeType()
1578 JavaType elementType = _fromAny(context, type.getGenericComponentType(), bindings); in _fromArrayType() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/lib/Dialect/lhlo/transforms/
H A Dlhlo_legalize_to_affine.cc55 Type elementType = lhsType.getElementType(); in matchAndRewrite() local
286 Type elementType = outputType.getElementType(); in matchAndRewrite() local
570 const auto& elementType = lhsType.getElementType(); in matchAndRewrite() local
605 auto elementType = inputType.getElementType(); in matchAndRewrite() local
/aosp_15_r20/external/auto/value/src/main/java/com/google/auto/value/extension/toprettystring/processor/
H A DToPrettyStringExtension.java199 TypeMirror elementType = in format() local
306 private CodeBlock forEachLoopMethodBody(TypeMirror elementType) { in forEachLoopMethodBody()
389 private DeclaredType collectionOf(TypeMirror elementType) { in collectionOf()

12345678910>>...50