Home
last modified time | relevance | path

Searched refs:isInferenceVariable (Results 1 – 6 of 6) sorted by relevance

/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
DSubtypeOfBound.java10 … static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isInferenceVariable;
23 if (!isInferenceVariable(s) && !isInferenceVariable(t)) { in SubtypeOfBound()
74 if (isInferenceVariable(s) && isProperType(t)) { in isProperUpperBound()
82 if (isProperType(s) && isInferenceVariable(t)) { in isProperLowerBound()
DSameAsBound.java14 … static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isInferenceVariable;
27 if (!isInferenceVariable(s) && !isInferenceVariable(t)) { in SameAsBound()
83 if (isInferenceVariable(s) && isProperType(t)) { in isAnInstantiation()
86 if (isProperType(s) && isInferenceVariable(t)) { in isAnInstantiation()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/constraintformulas/
DTypeSubtypeOfType.java11 … static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isInferenceVariable;
58 if (isInferenceVariable(S)) { in reduce()
64 if (isInferenceVariable(T)) { in reduce()
DTypeSameAsType.java10 … static com.github.javaparser.symbolsolver.resolution.typeinference.TypeHelper.isInferenceVariable;
53 if (isInferenceVariable(S) && !T.isPrimitive()) { in reduce()
60 if (isInferenceVariable(T) && !S.isPrimitive()) { in reduce()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
DBoundSet.java155 return isInferenceVariable(a) && isInferenceVariable(b) && a.equals(b); in areSameTypeInference()
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()
340 if (isInferenceVariable(a.getS()) && isInferenceVariable(b.getS())) { in deriveImpliedBounds()
DTypeHelper.java167 public static boolean isInferenceVariable(ResolvedType type) { in isInferenceVariable() method in TypeHelper
172 if (isInferenceVariable(type)) { in usedInferenceVariables()