Home | History | Annotate | Download | only in relative

Lines Matching refs:vertical

151      * vertical direction
155 * @param vertical if true, look for vertical edge dependencies, otherwise look for
160 public Set<INode> dependsOn(Collection<? extends INode> nodes, boolean vertical) {
169 findBackwards(view, visiting, reachable, vertical, view);
184 boolean vertical, ViewData start) {
189 if (vertical && !constraint.type.verticalEdge) {
191 } else if (!vertical && !constraint.type.horizontalEdge) {
199 List<Constraint> path = getPathTo(start.node, view.node, vertical);
206 findBackwards(from, visiting, reachable, vertical, start);
213 public List<Constraint> getPathTo(INode from, INode to, boolean vertical) {
220 return findForwards(view, visiting, path, vertical, to);
227 List<Constraint> path, boolean vertical, INode target) {
231 if (vertical && !constraint.type.verticalEdge) {
233 } else if (!vertical && !constraint.type.horizontalEdge) {
251 List<Constraint> chain = findForwards(to, visiting, path, vertical, target);