Searched refs:attributeDeclIndex (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java519 * @param attributeDeclIndex
521 * @return index of the next attribute of the attribute at attributeDeclIndex
523 public int getNextAttributeDeclIndex(int attributeDeclIndex) { argument
524 int chunk = attributeDeclIndex >> CHUNK_SHIFT;
525 int index = attributeDeclIndex & CHUNK_MASK;
533 * @param attributeDeclIndex
538 public boolean getAttributeDecl(int attributeDeclIndex, XMLAttributeDecl attributeDecl) { argument
539 if (attributeDeclIndex < 0 || attributeDeclIndex >= fAttributeDeclCount) {
542 int chunk = attributeDeclIndex >> CHUNK_SHIF
680 setAttributeDecl(int elementDeclIndex, int attributeDeclIndex, XMLAttributeDecl attributeDecl) argument
737 printAttribute(int attributeDeclIndex) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java370 * @param attributeDeclIndex Attribute declaration index.
372 public boolean getAttributeDeclIsExternal(int attributeDeclIndex) { argument
374 if (attributeDeclIndex < 0) {
378 int chunk = attributeDeclIndex >> CHUNK_SHIFT;
379 int index = attributeDeclIndex & CHUNK_MASK;
1321 * @param attributeDeclIndex
1323 * @return index of the next attribute of the attribute at attributeDeclIndex
1325 public int getNextAttributeDeclIndex(int attributeDeclIndex) { argument
1326 int chunk = attributeDeclIndex >> CHUNK_SHIFT;
1327 int index = attributeDeclIndex
1340 getAttributeDecl(int attributeDeclIndex, XMLAttributeDecl attributeDecl) argument
1873 setAttributeDecl(int elementDeclIndex, int attributeDeclIndex, XMLAttributeDecl attributeDecl) argument
2203 printAttribute(int attributeDeclIndex) argument
[all...]

Completed in 57 milliseconds