/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-model/ |
D | com_github_javaparser_symbolsolver_model_typesystem_ReferenceType.txt | 52 …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/ |
D | LazyType.java | 84 public TypeVariable asTypeVariable() { in asTypeVariable() method in LazyType 85 return getType().asTypeVariable(); in asTypeVariable()
|
D | ReferenceTypeImpl.java | 113 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/ |
D | LazyType.java | 85 public ResolvedTypeVariable asTypeVariable() { in asTypeVariable() method in LazyType 86 return getType().asTypeVariable(); in asTypeVariable()
|
D | ReferenceTypeImpl.java | 123 …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/ |
D | ExpressionCompatibleWithType.java | 325 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()
|
D | TypeSubtypeOfType.java | 98 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/ |
D | com_github_javaparser_symbolsolver_model_typesystem_ReferenceTypeImpl.txt | 32 …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…
|
D | com_github_javaparser_symbolsolver_model_typesystem_LazyType.txt | 26 …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/ |
D | ReferenceType.java | 181 … 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()
|
D | Type.java | 117 default TypeVariable asTypeVariable() { in asTypeVariable() method
|
D | TypeVariable.java | 101 public TypeVariable asTypeVariable() { in asTypeVariable() method in TypeVariable
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/ |
D | ResolvedReferenceType.java | 176 … 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()
|
D | ResolvedType.java | 130 default ResolvedTypeVariable asTypeVariable() { in asTypeVariable() method
|
D | ResolvedTypeVariable.java | 107 public ResolvedTypeVariable asTypeVariable() { in asTypeVariable() method in ResolvedTypeVariable
|
/external/doclava/src/com/google/doclava/ |
D | Converter.java | 617 } 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/ |
D | docbase.kt | 195 …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/ |
D | EclipseHack.java | 101 .map(t -> MoreTypes.asTypeVariable(t).asElement().getSimpleName()) in getEnclosingType()
|
D | TypeVariables.java | 152 TypeVariable v = MoreTypes.asTypeVariable(typeParameters.get(i).asType()); in canAssignStaticMethodResult()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/ |
D | MethodResolutionLogic.java | 191 … 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/ |
D | TypeInference.java | 553 … if (thrownType.isTypeVariable() && thrownType.asTypeVariable().asTypeParameter().equals(p)) { in appearInThrowsClause()
|
/external/auto/common/src/main/java/com/google/auto/common/ |
D | MoreTypes.java | 729 public static TypeVariable asTypeVariable(TypeMirror maybeTypeVariable) { in asTypeVariable() method in MoreTypes
|