Home
last modified time | relevance | path

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

123456789

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
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()
/external/llvm-project/mlir/lib/IR/
DBuiltinTypes.cpp27 ComplexType ComplexType::get(Type elementType) { in get()
31 ComplexType ComplexType::getChecked(Type elementType, Location location) { in getChecked()
37 Type elementType) { in verifyConstructionInvariants()
242 auto elementType = getElementType(); in getSizeInBits() local
283 VectorType VectorType::get(ArrayRef<int64_t> shape, Type elementType) { in get()
287 VectorType VectorType::getChecked(ArrayRef<int64_t> shape, Type elementType, in getChecked()
294 Type elementType) { in verifyConstructionInvariants()
316 Type elementType) { in checkTensorElementType()
337 Type elementType) { in get()
342 Type elementType, in getChecked()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
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()
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()
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()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
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()
/external/llvm-project/mlir/lib/CAPI/IR/
DBuiltinTypes.cpp112 MlirType mlirComplexTypeGet(MlirType elementType) { in mlirComplexTypeGet()
166 MlirType elementType) { in mlirVectorTypeGet()
173 MlirType elementType, MlirLocation loc) { in mlirVectorTypeGetChecked()
194 MlirType elementType) { in mlirRankedTensorTypeGet()
201 MlirType elementType, in mlirRankedTensorTypeGetChecked()
208 MlirType mlirUnrankedTensorTypeGet(MlirType elementType) { in mlirUnrankedTensorTypeGet()
212 MlirType mlirUnrankedTensorTypeGetChecked(MlirType elementType, in mlirUnrankedTensorTypeGetChecked()
223 MlirType mlirMemRefTypeGet(MlirType elementType, intptr_t rank, in mlirMemRefTypeGet()
234 MlirType mlirMemRefTypeContiguousGet(MlirType elementType, intptr_t rank, in mlirMemRefTypeContiguousGet()
242 MlirType mlirMemRefTypeContiguousGetChecked(MlirType elementType, intptr_t rank, in mlirMemRefTypeContiguousGetChecked()
[all …]
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/type/
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
/external/guice/core/src/com/google/inject/util/
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()
/external/llvm-project/mlir/lib/Parser/
DTypeParser.cpp118 auto elementType = parseType(); in parseComplexType() local
215 auto elementType = parseType(); in parseMemRefType() local
403 auto elementType = parseType(); in parseTensorType() local
463 auto elementType = parseType(); in parseVectorType() local
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMTypes.cpp199 LLVMType LLVMType::getArrayTy(LLVMType elementType, uint64_t numElements) { in getArrayTy()
213 LLVMType LLVMType::getVectorTy(LLVMType elementType, unsigned numElements) { in getVectorTy()
266 LLVMArrayType LLVMArrayType::get(LLVMType elementType, unsigned numElements) { in get()
271 LLVMArrayType LLVMArrayType::getChecked(Location loc, LLVMType elementType, in getChecked()
282 LLVMArrayType::verifyConstructionInvariants(Location loc, LLVMType elementType, in verifyConstructionInvariants()
495 LLVMVectorType::verifyConstructionInvariants(Location loc, LLVMType elementType, in verifyConstructionInvariants()
506 LLVMFixedVectorType LLVMFixedVectorType::get(LLVMType elementType, in get()
513 LLVMType elementType, in getChecked()
523 LLVMScalableVectorType LLVMScalableVectorType::get(LLVMType elementType, in get()
530 LLVMScalableVectorType::getChecked(Location loc, LLVMType elementType, in getChecked()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsonFormatVisitors/
DJsonArrayFormatVisitor.java16 void itemsFormat(JsonFormatVisitable handler, JavaType elementType) in itemsFormat()
46 public void itemsFormat(JsonFormatVisitable handler, JavaType elementType) in itemsFormat()
/external/llvm-project/mlir/include/mlir/Interfaces/
DInferTypeOpInterface.h41 ShapedTypeComponents(Type elementType) in ShapedTypeComponents()
73 Type elementType; variable
/external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
Dpause-play.js22 addPeerConnection(elementType) { argument
93 let elementType; variable
/external/llvm-project/mlir/lib/Dialect/SPIRV/
DLayoutUtils.cpp104 auto elementType = vectorType.getElementType(); in decorateType() local
123 auto elementType = arrayType.getElementType(); in decorateType() local
138 auto elementType = arrayType.getElementType(); in decorateType() local
DSPIRVTypes.cpp120 Type elementType; member
125 ArrayType ArrayType::get(Type elementType, unsigned elementCount) { in get()
131 ArrayType ArrayType::get(Type elementType, unsigned elementCount, in get()
155 auto elementType = getElementType().cast<SPIRVType>(); in getSizeInBytes() local
293 Type elementType; member
299 CooperativeMatrixNVType CooperativeMatrixNVType::get(Type elementType, in get()
392 Type elementType; member
521 Type elementType; member
525 RuntimeArrayType RuntimeArrayType::get(Type elementType) { in get()
529 RuntimeArrayType RuntimeArrayType::get(Type elementType, unsigned stride) { in get()
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DCoverageNodeImpl.java23 private final ElementType elementType; field in CoverageNodeImpl
53 public CoverageNodeImpl(final ElementType elementType, final String name) { in CoverageNodeImpl()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DArrayProto.java48 protected final String elementType; field in ArrayProto
148 private static String makeArrayType(@Nonnull String elementType, int dimensions) { in makeArrayType()
/external/smali/smalidea/src/main/java/org/jf/smalidea/
DPsiBuilderTokenStream.java97 SmaliLexicalElementType elementType = (SmaliLexicalElementType)element; in buildCurrentToken() local
110 IElementType elementType = psiBuilder.lookAhead(i-1); in LA() local
/external/llvm-project/mlir/lib/Conversion/GPUCommon/
DGPUOpsLowering.h44 auto elementType = typeConverter->convertType(type.getElementType()) in matchAndRewrite() local
101 auto elementType = global.getType().getArrayElementType(); in matchAndRewrite() local
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DPropertyInfo.java82 public PropertyInfo elementType; field in PropertyInfo
108 public void setElementType(PropertyInfo elementType) in setElementType()
DSppPropertyInfo.java82 public PropertyInfo elementType; field in SppPropertyInfo
108 public void setElementType(PropertyInfo elementType) in setElementType()
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/
DSmaliBaseReferenceListStub.java49 …@NotNull StubElement parent, @NotNull IStubElementType elementType, @NotNull String[] smaliTypeNam… in SmaliBaseReferenceListStub()
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliCatchStatement.java50 protected SmaliCatchStatement(IElementType elementType) { in SmaliCatchStatement()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/
DNodeWithElementType.java52 T setElementType(Type<?> elementType); in setElementType()

123456789