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

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleRelationSet.java56 protected Vector<AccessibleRelation> relations = null; field in class:AccessibleRelationSet
62 relations = null;
66 * Creates a new relation with the initial set of relations contained in
67 * the array of relations passed in. Duplicate entries are ignored.
69 * @param relations an array of AccessibleRelation describing the
72 public AccessibleRelationSet(AccessibleRelation[] relations) { argument
73 if (relations.length != 0) {
74 this.relations = new Vector(relations.length);
75 for (int i = 0; i < relations
125 addAll(AccessibleRelation[] relations) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DTextImpl.java54 return fSchemaDOM.relations[fRow][0];
61 return fSchemaDOM.relations[fRow][fCol-1];
66 if (fCol == fSchemaDOM.relations[fRow].length-1) {
69 return fSchemaDOM.relations[fRow][fCol+1];
H A DSchemaDOM.java50 NodeImpl[][] relations; field in class:SchemaDOM
114 if (nextFreeLoc == relations.length) {
119 //if (relations[currLoc][0] == null || relations[currLoc][0] != parent) {
120 if (relations[currLoc][0] != parent) {
121 relations[nextFreeLoc][0] = parent;
128 for (i = 1; i<relations[currLoc].length; i++) {
129 if (relations[currLoc][i] == null) {
138 relations[currLoc][i] = node;
150 parent = (ElementImpl)relations[currLo
[all...]
H A DElementImpl.java94 return schemaDOM.relations[row][0];
112 return schemaDOM.relations[parentRow][1];
121 for (; i<schemaDOM.relations[parentRow].length; i++) {
122 if (schemaDOM.relations[parentRow][i] == null) {
123 return schemaDOM.relations[parentRow][i-1];
129 return schemaDOM.relations[parentRow][i-1];
137 return schemaDOM.relations[row][col-1];
142 if (col == schemaDOM.relations[row].length-1) {
145 return schemaDOM.relations[row][col+1];

Completed in 42 milliseconds