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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLContentSpec.java227 public XMLContentSpec(XMLContentSpec contentSpec) { argument
228 setValues(contentSpec);
259 public void setValues(XMLContentSpec contentSpec) { argument
260 type = contentSpec.type;
261 value = contentSpec.value;
262 otherValue = contentSpec.otherValue;
292 XMLContentSpec contentSpec = (XMLContentSpec)object;
293 return type == contentSpec.type &&
294 value == contentSpec.value &&
295 otherValue == contentSpec
332 getContentSpec(int contentSpecIndex, XMLContentSpec contentSpec) argument
[all...]
H A DDTDGrammar.java1475 * @param contentSpec
1477 * @return true if find the requested contentSpec node, false otherwise
1479 public boolean getContentSpec(int contentSpecIndex, XMLContentSpec contentSpec) { argument
1486 contentSpec.type = fContentSpecType[chunk][index];
1487 contentSpec.value = fContentSpecValue[chunk][index];
1488 contentSpec.otherValue = fContentSpecOtherValue[chunk][index];
1525 XMLContentSpec contentSpec = new XMLContentSpec();
1527 if (getContentSpec(contentSpecIndex, contentSpec)) {
1531 int parentContentSpecType = contentSpec.type & 0x0f;
1536 if (contentSpec
1926 setContentSpec(int contentSpecIndex, XMLContentSpec contentSpec) argument
2083 appendContentSpec(XMLContentSpec contentSpec, StringBuffer str, boolean parens, int parentContentSpecType ) argument
2320 buildSyntaxTree(int startNode, XMLContentSpec contentSpec) argument
2395 contentSpecTree(int contentSpecIndex, XMLContentSpec contentSpec, ChildrenList children) argument
[all...]
H A DBalancedDTDGrammar.java222 int contentSpec = fGroupIndexStackSizes[0] > 0 ? fGroupIndexStack[0][0] : -1;
223 setContentSpecIndex(fCurrentElementIndex, contentSpec);
270 * @param contentSpec handle to the XMLContentSpec to add to the current group
272 private void addToCurrentGroup(int contentSpec) { argument
285 currentGroup[length] = contentSpec;
H A DXMLDTDProcessor.java1704 XMLContentSpec contentSpec = new XMLContentSpec();
1711 contentSpec);
1723 int contentSpecIndex, XMLContentSpec contentSpec) {
1724 grammar.getContentSpec(contentSpecIndex, contentSpec);
1725 if (contentSpec.type == XMLContentSpec.CONTENTSPECNODE_LEAF) {
1726 String value = (String) contentSpec.value;
1736 else if ((contentSpec.type == XMLContentSpec.CONTENTSPECNODE_CHOICE)
1737 || (contentSpec.type == XMLContentSpec.CONTENTSPECNODE_SEQ)) {
1738 final int leftNode = ((int[])contentSpec.value)[0];
1739 final int rightNode = ((int[])contentSpec
1722 checkDeclaredElements(DTDGrammar grammar, int elementIndex, int contentSpecIndex, XMLContentSpec contentSpec) argument
[all...]

Completed in 1361 milliseconds