Searched defs:elemIndex (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java123 boolean excluded(int elemIndex) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSDFACM.java150 final int elemIndex; field in class:XSDFACM.Occurence
151 public Occurence (XSCMRepeatingLeaf leaf, int elemIndex) { argument
154 this.elemIndex = elemIndex;
289 int elemIndex = 0;
292 for (; elemIndex < fElemMapSize; elemIndex++) {
293 nextState = fTransTable[curState][elemIndex];
296 int type = fElemMapType[elemIndex] ;
298 matchingDecl = subGroupHandler.getMatchingElemDecl(curElem, (XSElementDecl)fElemMap[elemIndex]);
411 findMatchingDecl(QName curElem, int[] state, SubstitutionGroupHandler subGroupHandler, int elemIndex) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeferredDocumentImpl.java668 public int setAttributeNode(int elemIndex, int attrIndex) { argument
670 int echunk = elemIndex >> CHUNK_SHIFT;
671 int eindex = elemIndex & CHUNK_MASK;
734 public void setIdAttributeNode(int elemIndex, int attrIndex) { argument
743 putIdentifier(value, elemIndex);
1319 public String getAttribute(int elemIndex, String name) { argument
1320 if (elemIndex == -1 || name == null) {
1323 int echunk = elemIndex >> CHUNK_SHIFT;
1324 int eindex = elemIndex & CHUNK_MASK;

Completed in 43 milliseconds