Searched refs:dsc (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceDropEvent.java61 * @param dsc the <code>DragSourceContext</code>
66 * @throws <code>IllegalArgumentException</code> if <code>dsc</code> is <code>null</code>.
71 public DragSourceDropEvent(DragSourceContext dsc, int action, boolean success) { argument
72 super(dsc);
87 * @param dsc the <code>DragSourceContext</code>
94 * @throws <code>IllegalArgumentException</code> if <code>dsc</code> is <code>null</code>.
98 public DragSourceDropEvent(DragSourceContext dsc, int action, argument
100 super(dsc, x, y);
113 * @param dsc the <code>DragSourceContext</code>
115 * @throws <code>IllegalArgumentException</code> if <code>dsc</cod
120 DragSourceDropEvent(DragSourceContext dsc) argument
[all...]
H A DDragSourceEvent.java97 * @param dsc the <code>DragSourceContext</code>
99 * @throws <code>IllegalArgumentException</code> if <code>dsc</code> is <code>null</code>.
104 public DragSourceEvent(DragSourceContext dsc) { argument
105 super(dsc);
116 * @param dsc the <code>DragSourceContext</code>
120 * @throws <code>IllegalArgumentException</code> if <code>dsc</code> is <code>null</code>.
124 public DragSourceEvent(DragSourceContext dsc, int x, int y) { argument
125 super(dsc);
H A DDragSourceDragEvent.java95 * @param dsc the <code>DragSourceContext</code> that is to manage
106 * @throws <code>IllegalArgumentException</code> if <code>dsc</code> is <code>null</code>.
112 public DragSourceDragEvent(DragSourceContext dsc, int dropAction, argument
114 super(dsc);
144 * @param dsc the <code>DragSourceContext</code> associated with this
157 * @throws <code>IllegalArgumentException</code> if <code>dsc</code> is <code>null</code>.
162 public DragSourceDragEvent(DragSourceContext dsc, int dropAction, argument
164 super(dsc, x, y);
H A DDragSource.java308 DragSourceContext dsc = createDragSourceContext(dscp,
317 if (dsc == null) {
321 dscp.startDrag(dsc, dsc.getCursor(), dragImage, imageOffset); // may throw
/openjdk7/jdk/src/share/classes/java/awt/dnd/peer/
H A DDragSourceContextPeer.java52 void startDrag(DragSourceContext dsc, Cursor c, Image dragImage, Point imageOffset) throws InvalidDnDOperationException; argument
/openjdk7/jdk/test/java/net/CookieHandler/
H A DTestHttpCookie.java137 TestHttpCookie dsc(int index, boolean dsc) { argument
139 if (cookie == null || (dsc != cookie.getDiscard())) {
140 raiseError("discard", Boolean.toString(cookie.getDiscard()), Boolean.toString(dsc));
145 TestHttpCookie dsc(boolean dsc) { return dsc(0, dsc); } argument
262 .c("this is a coyote").cu("http://www.coyote.org").dsc(true)
277 .c("this is a coyote").cu("http://www.coyote.org").dsc(tru
[all...]
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DGenerationTests.java203 DOMSignContext dsc = new DOMSignContext(signingKey, envelope);
205 sig.sign(dsc);
443 DOMSignContext dsc = new DOMSignContext(getPrivateKey("RSA"), doc);
445 sig.sign(dsc);
489 DOMSignContext dsc = new DOMSignContext(getPrivateKey("RSA"), doc);
490 dsc.setIdAttributeNS(nc, null, "Id");
492 sig.sign(dsc);
746 DOMSignContext dsc = new DOMSignContext(signingKey, ys);
747 dsc.setURIDereferencer(httpUd);
749 sig.sign(dsc);
[all...]
/openjdk7/jdk/test/javax/xml/crypto/dsig/SecurityManager/
H A DXMLDSigWithSecMgr.java137 DOMSignContext dsc = new DOMSignContext(kp.getPrivate(), envelope);
138 sig.sign(dsc);
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DDnDSource.java58 DragSourceContext dsc,
70 dsc.setCursor(c);
57 changeCursor( DragSourceContext dsc, int ra ) argument
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDInOut/
H A DDnDSource.java58 DragSourceContext dsc,
70 dsc.setCursor(c);
57 changeCursor( DragSourceContext dsc, int ra ) argument
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDNegative/
H A DDnDSource.java62 DragSourceContext dsc,
74 dsc.setCursor(c);
61 changeCursor( DragSourceContext dsc, int ra ) argument
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDragSourceContextPeer.java113 public void startDrag(DragSourceContext dsc, Cursor c, Image di, Point p) argument
122 dragSourceContext = dsc;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDragSourceContextPeer.java80 public void startDrag(DragSourceContext dsc, Cursor cursor, Image dragImage, Point dragImageOffset) throws InvalidDnDOperationException { argument
84 super.startDrag(dsc, cursor, dragImage, dragImageOffset);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java1637 DragSourceContext dsc = dsde.getDragSourceContext();
1638 JComponent c = (JComponent)dsc.getComponent();
1640 c.getTransferHandler().exportDone(c, dsc.getTransferable(), dsde.getDropAction());
1642 c.getTransferHandler().exportDone(c, dsc.getTransferable(), NONE);

Completed in 483 milliseconds