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

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DUnionChildIterator.java123 PredicatedNodeTest pnt = m_nodeTests[i];
124 XObject score = pnt.execute(xctxt, n);
128 if (pnt.getPredicateCount() > 0)
130 if (pnt.executePredicates(n, xctxt))
H A DPredicatedNodeTest.java575 PredicatedNodeTest pnt = (PredicatedNodeTest) expr;
580 if ((null == pnt.m_predicates) || (pnt.m_predicates.length != n))
584 if (!m_predicates[i].deepEquals(pnt.m_predicates[i]))
588 else if (null != pnt.m_predicates)
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1885 #define DELETE_ACTIVE(head,pnt) \
1887 Edge *prevp = pnt->prev; \
1888 Edge *nextp = pnt->next; \
1899 #define INSERT_ACTIVE(head,pnt,cy) \
1901 Point *np = pnt->next; \
1903 if (pnt->y == np->y) { \
1907 jint dX = np->x - pnt->x; \
1908 jint dY = np->y - pnt->y; \
1910 if (pnt->y < np->y) { \
1912 ne->p = pnt; \
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java1781 public void insert(Point pnt, int cy) { argument
1782 Point np = pnt.next;
1783 int X1 = pnt.x, Y1 = pnt.y;
1817 ne = new Edge(pnt, x0, stepx, dir);
1825 head = pnt.edge = ne;

Completed in 36 milliseconds