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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java1449 * @param notationDeclIndex
1453 * the notation at notationDeclIndex.
1455 public boolean getNotationDecl(int notationDeclIndex, XMLNotationDecl notationDecl) { argument
1456 if (notationDeclIndex < 0 || notationDeclIndex >= fNotationCount) {
1459 int chunk = notationDeclIndex >> CHUNK_SHIFT;
1460 int index = notationDeclIndex & CHUNK_MASK;
1969 protected void setNotationDecl(int notationDeclIndex, XMLNotationDecl notationDecl) { argument
1970 int chunk = notationDeclIndex >> CHUNK_SHIFT;
1971 int index = notationDeclIndex
[all...]

Completed in 34 milliseconds