Searched refs:vertex (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuildStep.java43 private Vertex vertex; field in class:BuildStep
82 * @param vtx description of the vertex at this step
87 vertex = vtx;
88 if (vertex != null) {
89 cert = (X509Certificate)vertex.getCertificate();
90 throwable = vertex.getThrowable();
96 * return vertex description for this build step
101 return vertex;
229 out = out + vertex.throwableToString();
244 * the vertex stat
[all...]
H A DSunCertPathBuilder.java408 for (Vertex vertex : vertices) {
417 X509Certificate cert = (X509Certificate) vertex.getCertificate();
427 vertex.setThrowable(gse);
553 vertex.setThrowable(cpve);
645 * set index for current vertex.
648 vertex.setIndex(adjList.size() - 1);
714 for (Vertex vertex : vertices) {
723 X509Certificate cert = (X509Certificate) vertex.getCertificate();
730 vertex.setThrowable(gse);
781 * set index for current vertex
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DHierarchicalGraphLayout.java91 final VertexWrapper vertex = this;
95 return vertex;
99 return new Point((int) (vertex.getSize().getWidth() / 2), (int) (vertex.getSize().getHeight() / 2));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java103 public Vertex vertex; // Only used for non-dummy nodes, otherwise null field in class:HierarchicalLayoutManager.LayoutNode
113 return "Node " + vertex;
288 while (cur.vertex == null && cur.preds.size() != 0) {
312 if (cur.vertex == null && cur.preds.size() == 0) {
372 while (cur.vertex == null && cur.succs.size() != 0) {
397 if (cur.succs.size() == 0 && cur.vertex == null) {
533 if (n1.vertex == null) {
536 if (n2.vertex == null) {
545 if (n1.vertex == null) {
548 if (n2.vertex
[all...]

Completed in 117 milliseconds