Home
last modified time | relevance | path

Searched refs:BoundCheckStatus (Results 1 – 4 of 4) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/
H A DTypeVariableBinding.java126 if (code == BoundCheckStatus.MISMATCH) { in boundCheck()
139 return BoundCheckStatus.OK; in internalBoundCheck()
143 return BoundCheckStatus.MISMATCH; in internalBoundCheck()
147 return BoundCheckStatus.OK; in internalBoundCheck()
149 BoundCheckStatus nullStatus = BoundCheckStatus.OK; in internalBoundCheck()
167 return BoundCheckStatus.MISMATCH; in internalBoundCheck()
249 return BoundCheckStatus.OK; in internalBoundCheck()
256 return BoundCheckStatus.MISMATCH; in internalBoundCheck()
273 return BoundCheckStatus.MISMATCH; in internalBoundCheck()
294 …return unchecked ? BoundCheckStatus.UNCHECKED : nullStatus != null ? nullStatus : BoundCheckStatus in internalBoundCheck()
[all …]
H A DTypeConstants.java486 public static enum BoundCheckStatus { enum
498 public BoundCheckStatus betterOf(BoundCheckStatus other) { in betterOf()
H A DParameterizedTypeBinding.java63 import org.eclipse.jdt.internal.compiler.lookup.TypeConstants.BoundCheckStatus;
127BoundCheckStatus checkStatus = typeVariables[i].boundCheck(this, this.arguments[i], scope, argumen… in boundCheck()
128 hasErrors |= checkStatus != BoundCheckStatus.OK; in boundCheck()
H A DInferenceContext18.java38 import org.eclipse.jdt.internal.compiler.lookup.TypeConstants.BoundCheckStatus;
772 if (vars[i].boundCheck(captured, aprime[i], blockScope, lambda) == BoundCheckStatus.MISMATCH) in inferFunctionalInterfaceParameterization()