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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DDFAContentModel.java172 private int fLeafCount = 0; field in class:DFAContentModel
246 fLeafCount = leafCount;
453 // is left in the fLeafCount member.
489 fEOCPos = fLeafCount;
490 nodeEOC.setPosition(fLeafCount++);
506 fLeafList = new CMLeaf[fLeafCount];
507 fLeafListType = new int[fLeafCount];
515 fFollowList = new CMStateSet[fLeafCount];
516 for (int index = 0; index < fLeafCount; index++)
517 fFollowList[index] = new CMStateSet(fLeafCount);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSDFACM.java118 private int fLeafCount = 0; field in class:XSDFACM
214 fLeafCount = leafCount;
520 // is left in the fLeafCount member.
547 int EOCPos = fLeafCount;
548 XSCMLeaf nodeEOC = new XSCMLeaf(XSParticleDecl.PARTICLE_ELEMENT, null, -1, fLeafCount++);
569 fLeafList = new XSCMLeaf[fLeafCount];
570 fLeafListType = new int[fLeafCount];
578 fFollowList = new CMStateSet[fLeafCount];
579 for (int index = 0; index < fLeafCount; index++)
580 fFollowList[index] = new CMStateSet(fLeafCount);
[all...]
H A DCMBuilder.java50 private int fLeafCount; field in class:CMBuilder
129 fLeafCount = 0;
136 return new XSDFACM(node, fLeafCount);
160 nodeRet = fNodeFactory.getCMLeafNode(particle.fType, particle.fValue, fParticleCount++, fLeafCount++);
321 node = fNodeFactory.getCMLeafNode(leaf.type(), leaf.getLeaf(), leaf.getParticleId(), fLeafCount++);
389 nodeRet = fNodeFactory.getCMLeafNode(particle.fType, particle.fValue, fParticleCount++, fLeafCount++);
393 nodeRet = fNodeFactory.getCMLeafNode(particle.fType, particle.fValue, fParticleCount++, fLeafCount++);
398 nodeRet = fNodeFactory.getCMLeafNode(particle.fType, particle.fValue, fParticleCount++, fLeafCount++);
403 nodeRet = fNodeFactory.getCMLeafNode(particle.fType, particle.fValue, fParticleCount++, fLeafCount++);
409 nodeRet = fNodeFactory.getCMRepeatingLeafNode(particle.fType, particle.fValue, minOccurs, maxOccurs, fParticleCount++, fLeafCount
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java278 private int fLeafCount = 0; field in class:DTDGrammar
2310 fLeafCount = 0;
2312 fLeafCount = 0;
2315 // REVISIT: has to be fLeafCount because we convert x+ to x,x*, one more leaf
2316 return new DFAContentModel( cmn, fLeafCount, false);
2327 //nodeRet = new CMAny(contentSpec.type, -1, fLeafCount++);
2328 nodeRet = new CMAny(contentSpec.type, (String)contentSpec.otherValue, fLeafCount++);
2331 nodeRet = new CMAny(contentSpec.type, (String)contentSpec.otherValue, fLeafCount++);
2334 nodeRet = new CMAny(contentSpec.type, null, fLeafCount++);
2349 nodeRet = new CMLeaf(fQName, fLeafCount
[all...]

Completed in 46 milliseconds