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

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageWatched.java50 * Check if iw is the referent of this Link or any
53 public boolean isWatcher(ImageObserver iw) { argument
54 return false; // No "iw" down here.
68 public Link removeWatcher(ImageObserver iw) { argument
101 public boolean isWatcher(ImageObserver iw) { argument
102 return (myref.get() == iw || next.isWatcher(iw));
105 public Link removeWatcher(ImageObserver iw) { argument
109 return next.removeWatcher(iw);
112 // never succeed if this is a pruning pass (iw
142 addWatcher(ImageObserver iw) argument
149 isWatcher(ImageObserver iw) argument
153 removeWatcher(ImageObserver iw) argument
[all...]
H A DToolkitImage.java105 public synchronized int getWidth(ImageObserver iw) { argument
110 addWatcher(iw, true);
137 public synchronized int getHeight(ImageObserver iw) { argument
142 addWatcher(iw, true);
188 public int check(ImageObserver iw) { argument
196 addWatcher(iw, false);
201 public void preload(ImageObserver iw) { argument
206 addWatcher(iw, true);
210 private synchronized void addWatcher(ImageObserver iw, boolean load) { argument
212 if (iw !
[all...]
H A DImageRepresentation.java755 public boolean prepare(ImageObserver iw) { argument
760 if (iw != null) {
761 iw.imageUpdate(image, ImageObserver.ERROR|ImageObserver.ABORT,
768 addWatcher(iw);
776 public int check(ImageObserver iw) { argument
782 addWatcher(iw);
790 ImageObserver iw) {
796 if (iw != null) {
797 iw.imageUpdate(image, ImageObserver.ERROR|ImageObserver.ABORT,
806 addWatcher(iw);
788 drawToBufImage(Graphics g, ToolkitImage img, int x, int y, Color bg, ImageObserver iw) argument
819 drawToBufImage(Graphics g, ToolkitImage img, int x, int y, int w, int h, Color bg, ImageObserver iw) argument
851 drawToBufImage(Graphics g, ToolkitImage img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bg, ImageObserver iw) argument
886 drawToBufImage(Graphics g, ToolkitImage img, AffineTransform xform, ImageObserver iw) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/opt/
H A DInjector.java63 private static final Lock iw = irwl.writeLock(); field in class:Injector
116 iw.lock();
122 iw.unlock();
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DObjectIdentifier.java490 * @param iw NUB for input
494 private static byte[] pack(byte[] in, int ioffset, int ilength, int iw, int ow) { argument
495 assert (iw > 0 && iw <= 8): "input NUB must be between 1 and 8";
498 if (iw == ow) {
502 int bits = ilength * iw; // number of all used bits
512 int count = iw - ipos%iw; // unpacked bits in current input byte
518 (((in[ioffset+ipos/iw]+256) // locate the byte (+256 so that it's never negative)
519 >> (iw
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp759 double ix, iy, iw, ih, pw, ph; local
774 iw = env->CallDoubleMethod(origPaper, getID);
828 if (iw < 0.0) {
829 iw = 0.0;
840 if (iw + epsilon > imgWid) {
841 iw = imgWid;
846 if ((ix + iw + epsilon) > (imgX+imgWid)) {
847 ix = (imgX+imgWid) - iw;
861 env->CallVoidMethod(newPaper, setImageableID, ix, iy, iw, ih);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp2365 OopMap* LinearScan::compute_oop_map(IntervalWalker* iw, LIR_Op* op, CodeEmitInfo* info, bool is_call_site) { argument
2371 iw->walk_before(op->id());
2388 for (Interval* interval = iw->active_first(fixedKind); interval != Interval::end(); interval = interval->next()) {
2434 void LinearScan::compute_oop_map(IntervalWalker* iw, const LIR_OpVisitState &visitor, LIR_Op* op) { argument
2440 OopMap* first_oop_map = compute_oop_map(iw, op, first_info, visitor.has_call());
2450 oop_map = compute_oop_map(iw, op, info, visitor.has_call());
2924 void LinearScan::assign_reg_num(LIR_OpList* instructions, IntervalWalker* iw) { argument
2967 assert(iw != NULL, "needed for compute_oop_map");
2968 compute_oop_map(iw, visitor, op);
3023 IntervalWalker* iw local
3265 IntervalWalker* iw = new IntervalWalker(this, fixed_intervals, other_intervals); local
[all...]

Completed in 58 milliseconds