Searched defs:innerAlloc (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DBoxView.java618 * @param innerAlloc the allocated region; this is the area
622 protected boolean isBefore(int x, int y, Rectangle innerAlloc) { argument
624 return (x < innerAlloc.x);
626 return (y < innerAlloc.y);
635 * @param innerAlloc the allocated region; this is the area
639 protected boolean isAfter(int x, int y, Rectangle innerAlloc) { argument
641 return (x > (innerAlloc.width + innerAlloc.x));
643 return (y > (innerAlloc.height + innerAlloc
[all...]

Completed in 58 milliseconds