Home
last modified time | relevance | path

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

123456

/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/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/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/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/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
Dpause-play.js22 addPeerConnection(elementType) { argument
93 let elementType; variable
/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
DSmaliParserDefinition.java81 IElementType elementType = node.getElementType(); in createElement() local
/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/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/impl/
DSmaliCatchStatement.java50 protected SmaliCatchStatement(IElementType elementType) { in SmaliCatchStatement()
DSmaliCompositeElement.java53 protected List<ASTNode> findChildrenByType(IElementType elementType) { in findChildrenByType()
/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()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
DInferenceContextTest.java63 private ResolvedReferenceType listOf(ResolvedType elementType) { in listOf()
/external/turbine/java/com/google/turbine/bytecode/sig/
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
/external/dagger2/java/dagger/grpc/server/processor/
DProxyModuleGenerator.java130 Function<? super E, TypeMirror> elementType, in findMethodDescriptors()
/external/guice/core/src/com/google/inject/internal/
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
/external/dagger2/java/dagger/internal/codegen/
DSetType.java57 TypeMirror elementType() { in elementType() method in SetType
/external/pdfium/xfa/fxfa/parser/
Dcxfa_object.cpp24 XFA_Element elementType, in CXFA_Object()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
DRule.java55 public void setElement(final ElementType elementType) { in setElement()

123456