Searched refs:otherSpan (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSpans.java278 * to include <code>otherSpan</code> without
280 * If <code>otherSpan</code> can be so consumed
284 boolean subsume(Span otherSpan) { argument
286 /* We can only subsume 'otherSpan' if
290 boolean isSubsumed = contains(otherSpan.mStart);
297 if (isSubsumed && otherSpan.mEnd > mEnd) {
298 mEnd = otherSpan.mEnd;
319 Span otherSpan = (Span) o;
320 float otherStart = otherSpan.getStart();

Completed in 38 milliseconds