Lines Matching defs:attributeDeclIndex

370      * @param attributeDeclIndex Attribute declaration index.
372 public boolean getAttributeDeclIsExternal(int attributeDeclIndex) {
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) {
1326 int chunk = attributeDeclIndex >> CHUNK_SHIFT;
1327 int index = attributeDeclIndex & CHUNK_MASK;
1335 * @param attributeDeclIndex
1340 public boolean getAttributeDecl(int attributeDeclIndex, XMLAttributeDecl attributeDecl) {
1341 if (attributeDeclIndex < 0 || attributeDeclIndex >= fAttributeDeclCount) {
1344 int chunk = attributeDeclIndex >> CHUNK_SHIFT;
1345 int index = attributeDeclIndex & CHUNK_MASK;
1687 int attributeDeclIndex = getFirstAttributeDeclIndex(elementDeclIndex);
1690 while (attributeDeclIndex != -1) {
1692 System.out.print(attributeDeclIndex);
1693 printAttribute(attributeDeclIndex);
1694 attributeDeclIndex = getNextAttributeDeclIndex(attributeDeclIndex);
1695 if (attributeDeclIndex != -1) {
1873 protected void setAttributeDecl(int elementDeclIndex, int attributeDeclIndex,
1875 int attrChunk = attributeDeclIndex >> CHUNK_SHIFT;
1876 int attrIndex = attributeDeclIndex & CHUNK_MASK;
1894 if (index == attributeDeclIndex) {
1903 fElementDeclFirstAttributeDeclIndex[elemChunk][elemIndex] = attributeDeclIndex;
1908 fAttributeDeclNextAttributeDeclIndex[attrChunk][attrIndex] = attributeDeclIndex;
1910 fElementDeclLastAttributeDeclIndex[elemChunk][elemIndex] = attributeDeclIndex;
2203 private void printAttribute(int attributeDeclIndex) {
2206 if (getAttributeDecl(attributeDeclIndex, attributeDecl)) {