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

/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java378 int newx, newy, neww, newh;
387 // adjusted value for neww than just "-1"?
389 neww = -1;
393 neww = clip(width, width >= 0);
406 reshape(newx, newy, neww, newh);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DImageTests.java615 int neww = (int) (w * scale);
617 if (neww == w && scale > 1f) neww = w+1;
619 return new Dimension(neww, newh);
670 int neww = (int) Math.ceil(w * 1.1);
672 return new Dimension(neww, newh);
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp799 int Node::replace_edge(Node* old, Node* neww) { argument
800 if (old == neww) return 0; // nothing to do
805 set_req(i, neww);
807 set_prec(i, neww);
H A DgraphKit.hpp395 void replace_in_map(Node* old, Node* neww);
H A Dnode.hpp408 int replace_edge(Node* old, Node* neww);
H A DgraphKit.cpp1374 void GraphKit::replace_in_map(Node* old, Node* neww) { argument
1375 this->map()->replace_edge(old, neww);

Completed in 69 milliseconds