Home
last modified time | relevance | path

Searched refs:asTypeVariable (Results 1 – 22 of 22) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-model/
Dcom_github_javaparser_symbolsolver_model_typesystem_ReferenceType.txt52 …Line 181) tp.asTypeVariable().describe().equals(tpToReplace.getName()) ==> java.lang.String.equals…
53 …Line 181) tp.asTypeVariable().describe() ==> com.github.javaparser.symbolsolver.model.typesystem.T…
54 …Line 181) tp.asTypeVariable() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.asTypeV…
141 …Line 360) value.get().asTypeVariable().qualifiedName().equals(name) ==> java.lang.String.equals(ja…
142 …Line 360) value.get().asTypeVariable().qualifiedName() ==> com.github.javaparser.symbolsolver.mode…
143 …Line 360) value.get().asTypeVariable() ==> com.github.javaparser.symbolsolver.model.typesystem.Typ…
216 …Line 452) thisParam.asTypeVariable().asTypeParameter().getBounds(this.typeSolver).stream().map(bou…
217 …Line 452) thisParam.asTypeVariable().asTypeParameter().getBounds(this.typeSolver).stream().map(bou…
218 …Line 452) thisParam.asTypeVariable().asTypeParameter().getBounds(this.typeSolver).stream() ==> jav…
219 …Line 452) thisParam.asTypeVariable().asTypeParameter().getBounds(this.typeSolver) ==> com.github.j…
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/model/typesystem/
DLazyType.java84 public TypeVariable asTypeVariable() { in asTypeVariable() method in LazyType
85 return getType().asTypeVariable(); in asTypeVariable()
DReferenceTypeImpl.java113 for (Bound bound : other.asTypeVariable().asTypeParameter().getBounds(typeSolver)) { in isAssignableBy()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
DLazyType.java85 public ResolvedTypeVariable asTypeVariable() { in asTypeVariable() method in LazyType
86 return getType().asTypeVariable(); in asTypeVariable()
DReferenceTypeImpl.java123 …for (ResolvedTypeParameterDeclaration.Bound bound : other.asTypeVariable().asTypeParameter().getBo… in isAssignableBy()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/constraintformulas/
DExpressionCompatibleWithType.java325 if (!correspondences.containsKey(originalType.asTypeVariable())) { in replaceTypeVariablesWithInferenceVariables()
326 …correspondences.put(originalType.asTypeVariable(), InferenceVariable.unnamed(originalType.asTypeVa… in replaceTypeVariablesWithInferenceVariables()
328 return correspondences.get(originalType.asTypeVariable()); in replaceTypeVariablesWithInferenceVariables()
DTypeSubtypeOfType.java98 if (T.asTypeVariable().asTypeParameter().hasLowerBound()) { in reduce()
99 …ReductionResult.oneConstraint(new TypeSubtypeOfType(typeSolver, S, T.asTypeVariable().asTypeParame… in reduce()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_model_typesystem_ReferenceTypeImpl.txt32 …Line 113) other.asTypeVariable().asTypeParameter().getBounds(typeSolver) ==> com.github.javaparser…
33 …Line 113) other.asTypeVariable().asTypeParameter() ==> com.github.javaparser.symbolsolver.model.ty…
34 …Line 113) other.asTypeVariable() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.asTy…
Dcom_github_javaparser_symbolsolver_model_typesystem_LazyType.txt26 …Line 85) getType().asTypeVariable() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.a…
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/typesystem/
DReferenceType.java181 … if (tp.isTypeVariable() && tp.asTypeVariable().describe().equals(tpToReplace.getName())) { in replaceTypeVariables()
360 …if (value.isPresent() && value.get().isTypeVariable() && value.get().asTypeVariable().qualifiedNam… in isRawType()
452 …List<Type> thisBounds = thisParam.asTypeVariable().asTypeParameter().getBounds(this.typeSolver).st… in compareConsideringTypeParameters()
453 …List<Type> otherBounds = otherParam.asTypeVariable().asTypeParameter().getBounds(other.typeSolver)… in compareConsideringTypeParameters()
DType.java117 default TypeVariable asTypeVariable() { in asTypeVariable() method
DTypeVariable.java101 public TypeVariable asTypeVariable() { in asTypeVariable() method in TypeVariable
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
DResolvedReferenceType.java176 … if (tp.isTypeVariable() && tp.asTypeVariable().describe().equals(tpToReplace.getName())) { in replaceTypeVariables()
353 …(!value.isPresent() || !value.get().isTypeVariable() || !value.get().asTypeVariable().qualifiedNam… in isRawType()
478 …List<ResolvedType> thisBounds = thisParam.asTypeVariable().asTypeParameter().getBounds().stream().… in compareConsideringTypeParameters()
479 …List<ResolvedType> otherBounds = otherParam.asTypeVariable().asTypeParameter().getBounds().stream(… in compareConsideringTypeParameters()
DResolvedType.java130 default ResolvedTypeVariable asTypeVariable() { in asTypeVariable() method
DResolvedTypeVariable.java107 public ResolvedTypeVariable asTypeVariable() { in asTypeVariable() method in ResolvedTypeVariable
/external/doclava/src/com/google/doclava/
DConverter.java617 } else if (t.asTypeVariable() != null) {
618 …ull, new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes((t.asTypeVariable().bounds()))))…
644 if (t.asTypeVariable() != null) {
645 keyString += t.asTypeVariable().toString() + "/";
646 if (t.asTypeVariable().bounds() != null) {
647 for (Type ty : t.asTypeVariable().bounds()) {
/external/dokka/core/src/main/kotlin/javadoc/
Ddocbase.kt195 …override fun asTypeVariable(): TypeVariable? = if (node.kind == NodeKind.TypeParameter) TypeVariab… in asTypeVariable() method in TypeAdapter
248 …: Boolean = other is Type && other.typeName() == typeName() && other.asTypeVariable()?.owner() == … in qualifiedTypeName()
250 override fun asTypeVariable(): TypeVariableAdapter = this in qualifiedTypeName() method
414 …override fun asTypeVariable(): TypeVariable? = if (classNode.kind == NodeKind.Class) TypeVariableA… in constantValue() method
/external/auto/value/src/main/java/com/google/auto/value/processor/
DEclipseHack.java101 .map(t -> MoreTypes.asTypeVariable(t).asElement().getSimpleName()) in getEnclosingType()
DTypeVariables.java152 TypeVariable v = MoreTypes.asTypeVariable(typeParameters.get(i).asType()); in canAssignStaticMethodResult()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/
DMethodResolutionLogic.java191 … return matchTypeVariable(expectedParam.asTypeVariable(), actualParam, matchedParameters); in isAssignableMatchTypeParametersMatchingQName()
195 … return matchTypeVariable(actualParam.asTypeVariable(), expectedParam, matchedParameters); in isAssignableMatchTypeParametersMatchingQName()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
DTypeInference.java553 … if (thrownType.isTypeVariable() && thrownType.asTypeVariable().asTypeParameter().equals(p)) { in appearInThrowsClause()
/external/auto/common/src/main/java/com/google/auto/common/
DMoreTypes.java729 public static TypeVariable asTypeVariable(TypeMirror maybeTypeVariable) { in asTypeVariable() method in MoreTypes