Searched refs:isProperType (Results 1 – 10 of 10) sorted by relevance
11 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;74 if (isInferenceVariable(s) && isProperType(t)) { in isProperUpperBound()82 if (isProperType(s) && isInferenceVariable(t)) { in isProperLowerBound()
15 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;83 if (isInferenceVariable(s) && isProperType(t)) { in isAnInstantiation()86 if (isProperType(s) && isInferenceVariable(t)) { in isAnInstantiation()
12 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;36 if (isProperType(S) && isProperType(T)) { in reduce()
11 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;35 if (isProperType(s) && isProperType(t)) { in reduce()
11 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;36 if (isProperType(S) && isProperType(T)) { in reduce()
7 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;24 if (isProperType(T) && !T.isWildcard()) { in reduce()
22 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;46 if (isProperType(T)) { in reduce()182 if (TypeHelper.isProperType(R)) { in reduce()
30 public static boolean isProperType(ResolvedType type) { in isProperType() method in TypeHelper36 return referenceType.typeParametersValues().stream().allMatch(it -> isProperType(it)); in isProperType()41 return isProperType(wildcard.getBoundedType()); in isProperType()54 return isProperType(type.asArrayType().getComponentType()); in isProperType()
277 if (isInferenceVariable(a.getS()) && isProperType(a.getT())) { in deriveImpliedBounds()285 if (isInferenceVariable(a.getT()) && isProperType(a.getS())) { in deriveImpliedBounds()293 if (isInferenceVariable(b.getS()) && isProperType(b.getT())) { in deriveImpliedBounds()301 if (isInferenceVariable(b.getT()) && isProperType(b.getS())) { in deriveImpliedBounds()315 if (isInferenceVariable(a.getS()) && isProperType(a.getT())) { in deriveImpliedBounds()323 if (isInferenceVariable(a.getT()) && isProperType(a.getS())) { in deriveImpliedBounds()
17 import static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isProperType;81 assertEquals(false, isProperType(listOfBeta)); in recognizeProperUpperBound2()