Searched refs:anchor (Results 1 - 25 of 99) sorted by relevance

1234

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DAnchorTables.h53 LEPoint &anchor) const;
58 void getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const;
65 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const;
73 void getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const;
H A DAnchorTables.cpp41 LEPoint &anchor) const
48 f1->getAnchor(fontInstance, anchor);
56 f2->getAnchor(glyphID, fontInstance, anchor);
64 f3->getAnchor(fontInstance, anchor);
72 f1->getAnchor(fontInstance, anchor);
77 void Format1AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const
85 fontInstance->pixelsToUnits(pixels, anchor);
88 void Format2AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const
100 fontInstance->pixelsToUnits(point, anchor);
103 void Format3AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) cons
[all...]
H A DMarkArrays.cpp42 LEPoint &anchor) const
54 anchorTable->getAnchor(glyphID, fontInstance, anchor);
H A DMarkArrays.h58 LEPoint &anchor) const;
/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 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...]
/openjdk7/jdk/test/sun/security/provider/certpath/ReverseBuilder/
H A DBuildPath.java41 TrustAnchor anchor =
48 new SunCertPathBuilderParameters(Collections.singleton(anchor),xcs);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DConnectionAnchor.java29 import org.netbeans.api.visual.anchor.Anchor;
30 import org.netbeans.api.visual.anchor.Anchor.Entry;
31 import org.netbeans.api.visual.anchor.Anchor.Result;
/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...]
/openjdk7/jdk/test/sun/security/pkcs11/fips/
H A DTrustManagerTest.java73 X509Certificate anchor = loadCertificate("certs/anchor.cer");
77 trustStore.setCertificateEntry("anchor", anchor);
84 X509Certificate[] chain = {server, ca, anchor};
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_awt_GridBagConstraints.java46 gbc.anchor = GridBagConstraints.NORTH;
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorIntermediate.java206 TrustAnchor anchor = new TrustAnchor((X509Certificate)cert, null);
207 anchors.add(anchor);
211 anchor = new TrustAnchor((X509Certificate)cert, null);
212 anchors.add(anchor);
H A DCPBuilder.java332 TrustAnchor anchor = new TrustAnchor((X509Certificate)cert, null);
333 anchors.add(anchor);
337 anchor = new TrustAnchor((X509Certificate)cert, null);
338 anchors.add(anchor);
434 if (!path.isEmpty()) { // the target is not a trust anchor
H A DCPValidatorEndEntity.java307 TrustAnchor anchor = new TrustAnchor((X509Certificate)cert, null);
308 anchors.add(anchor);
312 anchor = new TrustAnchor((X509Certificate)cert, null);
313 anchors.add(anchor);
H A DCPValidatorTrustAnchor.java131 // generate a trust anchor
132 TrustAnchor anchor =
135 return Collections.singleton(anchor);
/openjdk7/jdk/test/sun/security/provider/certpath/
H A DSunCertPathBuilderExceptionTest.java48 TrustAnchor anchor = new TrustAnchor(cert, null);
55 new PKIXBuilderParameters(Collections.singleton(anchor), xs);
/openjdk7/jdk/test/java/security/cert/CertPathValidator/OCSP/
H A DAIACheck.java63 TrustAnchor anchor = new TrustAnchor(rootCert, null);
64 Set<TrustAnchor> anchors = Collections.singleton(anchor);
H A DFailoverToCRL.java212 // generate a trust anchor
213 TrustAnchor anchor = new TrustAnchor((X509Certificate)trusedCert, null);
215 return Collections.singleton(anchor);
/openjdk7/jdk/test/java/security/cert/PKIXParameters/
H A DInvalidParameters.java43 TrustAnchor anchor = new TrustAnchor("cn=sean", new TestPublicKey(), null);
44 PKIXParameters params = new PKIXParameters(Collections.singleton(anchor));
/openjdk7/langtools/test/com/sun/javadoc/testHtmlDocument/
H A DTestHtmlDocument.java109 HtmlTree anchor = new HtmlTree(HtmlTag.A);
110 anchor.addAttr(HtmlAttr.HREF, "testLink.html");
111 anchor.addAttr(HtmlAttr.NAME, "Another version of a tag");
112 p1.addContent(anchor);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDomAnnotationParserFactory.java93 Node anchor = e.getFirstChild();
96 e.insertBefore(e.getOwnerDocument().adoptNode(move), anchor );
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/targetConstraints/
H A DBuildEEBasicConstraints.java60 X509Certificate rootCert = CertUtils.getCertFromFile("anchor.cer");
61 TrustAnchor anchor = new TrustAnchor
66 (Collections.singleton(anchor), sel);
H A DBuildOddSel.java93 TrustAnchor anchor = new TrustAnchor(getCertFromFile("sun.cer"), null);
94 Set anchors = Collections.singleton(anchor);
/openjdk7/jdk/test/java/security/cert/CertPathValidator/nameConstraints/
H A DNameConstraintsWithRID.java125 // generate a trust anchor
126 TrustAnchor anchor =
129 return Collections.singleton(anchor);

Completed in 71 milliseconds

1234