Searched defs:anchor (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/
H A DTexturePaint.java63 * @param anchor the <code>Rectangle2D</code> in user space used to
64 * anchor and replicate the texture
67 Rectangle2D anchor) {
69 this.tx = anchor.getX();
70 this.ty = anchor.getY();
71 this.sx = anchor.getWidth() / bufImg.getWidth();
72 this.sy = anchor.getHeight() / bufImg.getHeight();
85 * Returns a copy of the anchor rectangle which positions and
87 * @return the <code>Rectangle2D</code> used to anchor and
66 TexturePaint(BufferedImage txtr, Rectangle2D anchor) argument
H A DCursor.java227 private transient Object anchor = new Object(); field in class:Cursor
248 // anchor is null after deserialization
249 if (anchor == null) {
250 anchor = new Object();
252 sun.java2d.Disposer.addRecord(anchor, disposer);
H A DGridBagConstraints.java197 * Possible value for the <code>anchor</code> field. Specifies
208 * Possible value for the <code>anchor</code> field. Specifies
221 * Possible value for the <code>anchor</code> field. Specifies
234 * Possible value for the <code>anchor</code> field. Specifies
245 * Possible value for the <code>anchor</code> field. Specifies
258 * Possible value for the <code>anchor</code> field. Specifies
271 * Possible value for the <code>anchor</code> field. Specifies
282 * Possible value for the <code>anchor</code> field. Specifies
295 * Possible value for the <code>anchor</code> field. Specifies
452 public int anchor; field in class:GridBagConstraints
627 GridBagConstraints(int gridx, int gridy, int gridwidth, int gridheight, double weightx, double weighty, int anchor, int fill, Insets insets, int ipadx, int ipady) argument
[all...]
H A DRobot.java140 sun.java2d.Disposer.addRecord(anchor, disposer);
181 private transient Object anchor = new Object(); field in class:Robot
H A DWindow.java441 transient Object anchor = new Object(); field in class:Window
642 Disposer.addRecord(anchor, new WindowDisposerRecord(appContext, this));
2950 anchor = new Object();
2951 sun.java2d.Disposer.addRecord(anchor, new WindowDisposerRecord(appContext, this));
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DAttributeHTML.java99 final void writeAttribute(Attribute attribute, String anchor) throws IOException { argument
100 writeAttribute(attribute, anchor, 0);
103 final void writeAttribute(Attribute attribute, String anchor, int method_number) throws IOException { argument
117 file.println("<H4><A NAME=\"" + anchor + "\">" + attr_count + " " + ATTRIBUTE_NAMES[tag] + "</A></H4>");
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAlgorithmChecker.java89 * @param anchor the trust anchor selected to validate the target
92 public AlgorithmChecker(TrustAnchor anchor) { argument
93 this(anchor, certPathDefaultConstraints);
101 * path where the trust anchor is unknown, or a certificate list which may
102 * contain the trust anchor. This constructor is used by SunJSSE.
116 * @param anchor the trust anchor selected to validate the target
120 * @throws IllegalArgumentException if the <code>anchor</code> is null
122 public AlgorithmChecker(TrustAnchor anchor, argument
309 trySetTrustAnchor(TrustAnchor anchor) argument
[all...]
H A DPKIXCertPathValidator.java116 for (TrustAnchor anchor : anchors) {
117 if (anchor.getNameConstraints() != null) {
119 ("name constraints in trust anchor not supported");
161 for (TrustAnchor anchor : anchors) {
162 X509Certificate trustedCert = anchor.getTrustedCert();
166 + "anchor.getTrustedCert() != null");
169 // if this trust anchor is not worth trying,
176 debug.println("anchor.getTrustedCert()."
183 + "anchor.getTrustedCert() == null");
192 doValidate(anchor, c
296 doValidate( TrustAnchor anchor, CertPath cpOriginal, ArrayList<X509Certificate> certList, PKIXParameters pkixParam, PolicyNodeImpl rootNode) argument
[all...]
H A DBasicChecker.java74 * @param anchor the anchor selected to validate the target certificate
81 BasicChecker(TrustAnchor anchor, Date testDate, String sigProvider, argument
84 if (anchor.getTrustedCert() != null) {
85 this.trustedPubKey = anchor.getTrustedCert().getPublicKey();
86 this.caName = anchor.getTrustedCert().getSubjectX500Principal();
88 this.trustedPubKey = anchor.getCAPublicKey();
89 this.caName = anchor.getCA();
H A DReverseState.java105 /* the trust anchor used to validate the path */
234 * Update the state with the specified trust anchor.
236 * @param anchor the most-trusted CA
238 public void updateState(TrustAnchor anchor) argument
241 trustAnchor = anchor;
242 X509Certificate trustedCert = anchor.getTrustedCert();
246 X500Principal caName = anchor.getCA();
247 updateState(anchor.getCAPublicKey(), caName);
251 // able to set the trust anchor until now.
254 ((AlgorithmChecker)checker).trySetTrustAnchor(anchor);
[all...]
H A DCrlRevocationChecker.java111 * @param anchor anchor selected to validate the target certificate
115 CrlRevocationChecker(TrustAnchor anchor, PKIXParameters params) argument
118 this(anchor, params, null);
126 * @param anchor anchor selected to validate the target certificate
134 CrlRevocationChecker(TrustAnchor anchor, PKIXParameters params, argument
137 this(anchor, params, certs, false);
140 CrlRevocationChecker(TrustAnchor anchor, PKIXParameters params, argument
143 mAnchor = anchor;
[all...]
H A DSunCertPathBuilder.java110 * algorithm from a trusted anchor(s) to a target subject, which must both
123 * unable to build a complete certification path from the trusted anchor(s)
152 for (TrustAnchor anchor : buildParams.getTrustAnchors()) {
153 if (anchor.getNameConstraints() != null) {
155 ("name constraints in trust anchor not supported");
281 * Perform a search using each trust anchor, until a valid
286 TrustAnchor anchor = iter.next();
288 /* check if anchor satisfies target constraints */
289 if (anchorIsTarget(anchor, targetSel)) {
290 this.trustAnchor = anchor;
834 anchorIsTarget(TrustAnchor anchor, X509CertSelector sel) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp73 JavaFrameAnchor _anchor; // last thread anchor state that we must restore
86 JavaFrameAnchor* anchor(void) { return &_anchor; } function in class:JavaCallWrapper
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DPKIXValidator.java125 for (TrustAnchor anchor : params.getTrustAnchors()) {
126 X509Certificate cert = anchor.getTrustedCert();
222 // trust anchor
254 // apparently issued by trust anchor?
265 // Validate chain even if no trust anchor is found. This
273 // temporarily set last cert as sole trust anchor
285 // indicating no trust anchor was found
311 private static X509Certificate[] toArray(CertPath path, TrustAnchor anchor) argument
317 X509Certificate trustedCert = anchor.getTrustedCert();
/openjdk7/jdk/test/javax/swing/JList/6462008/
H A Dbug6462008.java372 private static void checkSelectionAL(final int anchor, final int lead, final int... sels) throws Exception { argument
377 checkSelectionNonThreadSafe(anchor, lead, sels);
382 private static void checkSelectionNonThreadSafe(int anchor, int lead, int... sels) { argument
388 if (anchor != DONT_CARE && actualAnchor != anchor) {
389 throw new RuntimeException("anchor is " + actualAnchor + ", should be " + anchor);
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.java1212 boolean match(int from, int anchor) { argument
1220 acceptMode = anchor;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java333 int gridy, int gridwidth, int anchor, Container cont, int weightx, int weighty,
338 c.anchor = anchor;
332 addComponent(Component comp, GridBagLayout gb, GridBagConstraints c, int gridx, int gridy, int gridwidth, int anchor, Container cont, int weightx, int weighty, int fill, Insets in) argument
/openjdk7/langtools/test/tools/javac/diags/
H A DHTMLWriter.java314 * @param anchor the target for the link
318 public void writeLink(String anchor, String body) throws IOException { argument
320 writeAttr(HREF, anchor);
367 * @param anchor the destination marker for hypertext links
371 public void writeLinkDestination(String anchor, String body) throws IOException { argument
373 writeAttr(NAME, anchor);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java714 * Set the lead and anchor without affecting selection.
717 int lead, int anchor) {
718 if (anchor == -1) {
719 anchor = lead;
730 model.setAnchorSelectionIndex(anchor);
716 setLeadAnchorWithoutSelection(ListSelectionModel model, int lead, int anchor) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java1394 int anchor = ((int[][])state)[1][0];
1398 getSelectionModel(), lead, anchor);
1955 * Returns the anchor selection index. This is a cover method that
1958 * @return the anchor selection index
2050 * Selects the specified interval. Both {@code anchor} and {@code lead}
2051 * indices are included. {@code anchor} doesn't have to be less than or
2058 * @param anchor the first index to select
2066 public void setSelectionInterval(int anchor, int lead) { argument
2067 getSelectionModel().setSelectionInterval(anchor, lead);
2073 * selection. Both the {@code anchor} an
2089 addSelectionInterval(int anchor, int lead) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java715 AttributeSet anchor = (AttributeSet)a.
717 if (anchor == null) {
726 href = (String)anchor.getAttribute
755 * Returns a string anchor if the passed in element has a
854 AttributeSet anchor = (AttributeSet)a.getAttribute(HTML.Tag.A);
865 if (anchor == null) {
869 href = (String)anchor.getAttribute(HTML.Attribute.HREF);
873 linkEvent = createHyperlinkEvent(html, hdoc, href, anchor,
889 AttributeSet anchor,
918 String target = (anchor !
887 createHyperlinkEvent(JEditorPane html, HTMLDocument hdoc, String href, AttributeSet anchor, Element element, MouseEvent mouseEvent) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c533 * Returns the anchor window, as some WM may put interesting stuff in
942 Window anchor; local
946 anchor = awt_wm_isNetSupporting();
947 if (anchor == None) {
959 net_wm_name = awt_getProperty8(anchor, _XA_NET_WM_NAME, XA_UTF8_STRING);
961 net_wm_name = awt_getProperty8(anchor, _XA_NET_WM_NAME, XA_STRING);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java214 private final Object anchor = new Object(); field in class:WToolkit
226 sun.java2d.Disposer.addRecord(anchor, new ToolkitDisposer());
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java557 anchor("navbar_top");
563 anchor("navbar_bottom");
573 anchor("navbar_top_firstrow");
575 anchor("navbar_bottom_firstrow");
1373 * Get the marker anchor which will be added to the documentation tree.
1375 * @param anchorName the anchor name attribute
1376 * @return a content tree for the marker anchor
1383 * Get the marker anchor which will be added to the documentation tree.
1385 * @param anchorName the anchor name attribute
1386 * @param anchorContent the content that should be added to the anchor
2099 public void anchor(ExecutableMemberDoc emd) { method in class:HtmlDocletWriter
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java927 * Print anchor &lt;A NAME="name"&gt; tag.
957 * Print contents within anchor &lt;A NAME="name"&gt; tags.
962 public void anchor(String name, String content) { method in class:HtmlWriter
969 * Print anchor &lt;A NAME="name"&gt; and &lt;/A&gt;tags. Print comment string
974 public void anchor(String name) { method in class:HtmlWriter
975 anchor(name, "<!-- -->");

Completed in 123 milliseconds

12