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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDComplexTypeTraverser.java156 XSDocumentInfo schemaDoc,
161 schemaDoc);
165 complexTypeName, attrValues, schemaDoc, grammar);
170 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
184 XSDocumentInfo schemaDoc,
188 schemaDoc);
192 complexTypeName, attrValues, schemaDoc, grammar);
206 final String loc = fSchemaHandler.schemaDocument2SystemId(schemaDoc);
223 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
232 XSDocumentInfo schemaDoc,
155 traverseLocal(Element complexTypeNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
183 traverseGlobal(Element complexTypeNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
229 traverseComplexTypeDecl(Element complexTypeDecl, String complexTypeName, Object[] attrValues, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
356 traverseSimpleContent(Element simpleContentElement, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
686 traverseComplexContent(Element complexContentElement, boolean mixedOnType, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
1017 processComplexContent(Element complexContentChild, boolean isMixed, boolean isDerivation, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
[all...]
H A DXSDWildcardTraverser.java81 * @param schemaDoc
86 XSDocumentInfo schemaDoc,
90 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, false, schemaDoc);
91 XSWildcardDecl wildcard = traverseWildcardDecl(elmNode, attrValues, schemaDoc, grammar);
112 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
122 * @param schemaDoc
127 XSDocumentInfo schemaDoc,
131 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, false, schemaDoc);
132 XSWildcardDecl wildcard = traverseWildcardDecl(elmNode, attrValues, schemaDoc, grammar);
133 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
85 traverseAny(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
126 traverseAnyAttribute(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
147 traverseWildcardDecl(Element elmNode, Object[] attrValues, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
[all...]
H A DXSDAttributeGroupTraverser.java61 XSDocumentInfo schemaDoc,
65 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, false, schemaDoc);
75 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
80 attrGrp = (XSAttributeGroupDecl)fSchemaHandler.getGlobalDecl(schemaDoc, XSDHandler.ATTRIBUTEGROUP_TYPE, refAttr, elmNode);
87 traverseAnnotationDecl(child, attrValues, false, schemaDoc);
92 traverseSyntheticAnnotation(child, text, attrValues, false, schemaDoc);
102 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
108 XSDocumentInfo schemaDoc,
114 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, true, schemaDoc);
125 attrGrp.fTargetNamespace = schemaDoc
60 traverseLocal(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
107 traverseGlobal(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
[all...]
H A DXSDUniqueOrKeyTraverser.java49 XSDocumentInfo schemaDoc, SchemaGrammar grammar) {
52 Object[] attrValues = fAttrChecker.checkAttributes(uElem, false, schemaDoc);
60 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
66 uniqueOrKey = new UniqueOrKey(schemaDoc.fTargetNamespace, uName, element.fName, IdentityConstraint.IC_UNIQUE);
68 uniqueOrKey = new UniqueOrKey(schemaDoc.fTargetNamespace, uName, element.fName, IdentityConstraint.IC_KEY);
76 if (traverseIdentityConstraint(uniqueOrKey, uElem, schemaDoc, attrValues)) {
82 final String loc = fSchemaHandler.schemaDocument2SystemId(schemaDoc);
100 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
48 traverse(Element uElem, XSElementDecl element, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
H A DXSDAbstractIDConstraintTraverser.java49 Element icElem, XSDocumentInfo schemaDoc, Object [] icElemAttrs) {
65 ic.addAnnotation(traverseAnnotationDecl(sElem, icElemAttrs, false, schemaDoc));
76 ic.addAnnotation(traverseSyntheticAnnotation(icElem, text, icElemAttrs, false, schemaDoc));
85 Object [] attrValues = fAttrChecker.checkAttributes(sElem, false, schemaDoc);
93 ic.addAnnotation(traverseAnnotationDecl(selChild, attrValues, false, schemaDoc));
106 ic.addAnnotation(traverseSyntheticAnnotation(icElem, text, attrValues, false, schemaDoc));
120 schemaDoc.fNamespaceSupport);
127 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
132 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
148 attrValues = fAttrChecker.checkAttributes(fElem, false, schemaDoc);
48 traverseIdentityConstraint(IdentityConstraint ic, Element icElem, XSDocumentInfo schemaDoc, Object [] icElemAttrs) argument
[all...]
H A DXSDKeyrefTraverser.java48 XSDocumentInfo schemaDoc, SchemaGrammar grammar) {
51 Object[] attrValues = fAttrChecker.checkAttributes(krElem, false, schemaDoc);
58 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
65 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
70 IdentityConstraint ret = (IdentityConstraint)fSchemaHandler.getGlobalDecl(schemaDoc, XSDHandler.IDENTITYCONSTRAINT_TYPE, kName, krElem);
83 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
87 KeyRef keyRef = new KeyRef(schemaDoc.fTargetNamespace, krName, element.fName, key);
91 if (traverseIdentityConstraint(keyRef, krElem, schemaDoc, attrValues)) {
104 final String loc = fSchemaHandler.schemaDocument2SystemId(schemaDoc);
123 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
47 traverse(Element krElem, XSElementDecl element, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
[all...]
H A DXSDSimpleTypeTraverser.java95 XSDocumentInfo schemaDoc,
99 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, true, schemaDoc);
104 XSSimpleType type = traverseSimpleTypeDecl(elmNode, attrValues, schemaDoc, grammar);
105 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
120 final String loc = fSchemaHandler.schemaDocument2SystemId(schemaDoc);
141 XSDocumentInfo schemaDoc,
145 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, false, schemaDoc);
147 XSSimpleType type = getSimpleType (name, elmNode, attrValues, schemaDoc, grammar);
151 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
158 XSDocumentInfo schemaDoc,
94 traverseGlobal(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
140 traverseLocal(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
156 traverseSimpleTypeDecl(Element simpleTypeDecl, Object[] attrValues, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
192 getSimpleType(String name, Element simpleTypeDecl, Object[] attrValues, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
435 findDTValidator(Element elm, String refName, QName baseTypeStr, short baseRefContext, XSDocumentInfo schemaDoc) argument
[all...]
H A DXSDGroupTraverser.java61 XSDocumentInfo schemaDoc,
66 schemaDoc);
79 group = (XSGroupDecl)fSchemaHandler.getGlobalDecl(schemaDoc, XSDHandler.GROUP_TYPE, refAttr, elmNode);
86 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
92 annotation = traverseSyntheticAnnotation(elmNode, text, attrValues, false, schemaDoc);
138 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
145 XSDocumentInfo schemaDoc,
150 schemaDoc);
173 annotation = traverseAnnotationDecl(l_elmChild, attrValues, true, schemaDoc);
181 annotation = traverseSyntheticAnnotation(elmNode, text, attrValues, false, schemaDoc);
60 traverseLocal(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
144 traverseGlobal(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
[all...]
H A DXSDElementTraverser.java96 * @param schemaDoc
101 XSDocumentInfo schemaDoc,
128 fSchemaHandler.fillInLocalElemInfo(elmDecl, schemaDoc, allContextFlags, parent, particle);
130 traverseLocal(particle, elmDecl, schemaDoc, grammar, allContextFlags, parent, null);
149 XSDocumentInfo schemaDoc,
156 schemaDoc.fNamespaceSupport.setEffectiveContext(localNSDecls);
160 Object[] attrValues = fAttrChecker.checkAttributes(elmDecl, false, schemaDoc);
170 element = (XSElementDecl)fSchemaHandler.getGlobalDecl(schemaDoc, XSDHandler.ELEMENT_TYPE, refAtt, elmDecl);
174 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
180 annotation = traverseSyntheticAnnotation(elmDecl, text, attrValues, false, schemaDoc);
100 traverseLocal(Element elmDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, int allContextFlags, XSObject parent) argument
147 traverseLocal(XSParticleDecl particle, Element elmDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, int allContextFlags, XSObject parent, String[] localNSDecls) argument
235 traverseGlobal(Element elmDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
258 traverseNamedElement(Element elmDecl, Object[] attrValues, XSDocumentInfo schemaDoc, SchemaGrammar grammar, boolean isGlobal, XSObject parent) argument
[all...]
H A DXSDNotationTraverser.java58 XSDocumentInfo schemaDoc,
62 Object[] attrValues = fAttrChecker.checkAttributes(elmNode, true, schemaDoc);
70 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
81 notation.fTargetNamespace = schemaDoc.fTargetNamespace;
90 annotation = traverseAnnotationDecl(content, attrValues, false, schemaDoc);
96 annotation = traverseSyntheticAnnotation(elmNode, text, attrValues, false, schemaDoc);
117 final String loc = fSchemaHandler.schemaDocument2SystemId(schemaDoc);
130 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
57 traverse(Element elmNode, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
H A DXSDAbstractParticleTraverser.java61 XSDocumentInfo schemaDoc,
68 Object[] attrValues = fAttrChecker.checkAttributes(allDecl, false, schemaDoc);
74 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
80 annotation = traverseSyntheticAnnotation(allDecl, text, attrValues, false, schemaDoc);
94 particle = fSchemaHandler.fElementTraverser.traverseLocal(child, schemaDoc, grammar, PROCESSING_ALL_EL, parent);
134 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
150 * @param schemaDoc
155 XSDocumentInfo schemaDoc,
160 return traverseSeqChoice(seqDecl, schemaDoc, grammar, allContextFlags, false, parent);
174 * @param schemaDoc
60 traverseAll(Element allDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, int allContextFlags, XSObject parent) argument
154 traverseSequence(Element seqDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, int allContextFlags, XSObject parent) argument
178 traverseChoice(Element choiceDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, int allContextFlags, XSObject parent) argument
196 traverseSeqChoice(Element decl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, int allContextFlags, boolean choice, XSObject parent) argument
[all...]
H A DXSDAbstractTraverser.java109 boolean isGlobal, XSDocumentInfo schemaDoc) {
111 Object[] attrValues = fAttrChecker.checkAttributes(annotationDecl, isGlobal, schemaDoc);
112 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
130 attrValues = fAttrChecker.checkAttributes(child, true, schemaDoc);
131 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
143 SchemaGrammar grammar = fSchemaHandler.getGrammar(schemaDoc.fTargetNamespace);
164 String uri = schemaDoc.fNamespaceSupport.getURI(fSymbolTable.addSymbol(prefix));
188 schemaDoc.addAnnotation(new XSAnnotationInfo(annotation, annotationDecl));
193 schemaDoc.addAnnotation(new XSAnnotationInfo(contents, annotationDecl));
201 Object[] parentAttrs, boolean isGlobal, XSDocumentInfo schemaDoc) {
108 traverseAnnotationDecl(Element annotationDecl, Object[] parentAttrs, boolean isGlobal, XSDocumentInfo schemaDoc) argument
200 traverseSyntheticAnnotation(Element annotationParent, String initialContent, Object[] parentAttrs, boolean isGlobal, XSDocumentInfo schemaDoc) argument
279 traverseFacets(Element content, XSSimpleType baseValidator, XSDocumentInfo schemaDoc) argument
602 traverseAttrsAndAttrGrps(Element firstAttr, XSAttributeGroupDecl attrGrp, XSDocumentInfo schemaDoc, SchemaGrammar grammar, XSComplexTypeDecl enclosingCT) argument
[all...]
H A DXSDAttributeTraverser.java72 XSDocumentInfo schemaDoc,
77 Object[] attrValues = fAttrChecker.checkAttributes(attrDecl, false, schemaDoc);
90 attribute = (XSAttributeDecl)fSchemaHandler.getGlobalDecl(schemaDoc, XSDHandler.ATTRIBUTE_TYPE, refAtt, attrDecl);
94 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
100 annotation = traverseSyntheticAnnotation(attrDecl, text, attrValues, false, schemaDoc);
113 attribute = traverseNamedAttr(attrDecl, attrValues, schemaDoc, grammar, false, enclosingCT);
174 fValidationState.setNamespaceSupport(schemaDoc.fNamespaceSupport);
209 fAttrChecker.returnAttrArray(attrValues, schemaDoc);
214 XSDocumentInfo schemaDoc,
218 Object[] attrValues = fAttrChecker.checkAttributes(attrDecl, true, schemaDoc);
71 traverseLocal(Element attrDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar, XSComplexTypeDecl enclosingCT) argument
213 traverseGlobal(Element attrDecl, XSDocumentInfo schemaDoc, SchemaGrammar grammar) argument
235 traverseNamedAttr(Element attrDecl, Object[] attrValues, XSDocumentInfo schemaDoc, SchemaGrammar grammar, boolean isGlobal, XSComplexTypeDecl enclosingCT) argument
[all...]
H A DXSAttributeChecker.java956 * @param schemaDoc the document where the element lives in
960 XSDocumentInfo schemaDoc) {
961 return checkAttributes(element, isGlobal, schemaDoc, false);
974 * @param schemaDoc the document where the element lives in
979 XSDocumentInfo schemaDoc, boolean enumAsQName) {
987 resolveNamespace(element, attrs, schemaDoc.fNamespaceSupport);
1122 Object avalue = dv.validate(attrVal, schemaDoc.fValidationContext, null);
1126 if(qname.prefix == XMLSymbols.EMPTY_STRING && qname.uri == null && schemaDoc.fIsChameleonSchema)
1127 qname.uri = schemaDoc.fTargetNamespace;
1135 attrValues[oneAttr.valueIndex] = validate(attrValues, attrName, attrVal, oneAttr.dvIndex, schemaDoc);
959 checkAttributes(Element element, boolean isGlobal, XSDocumentInfo schemaDoc) argument
978 checkAttributes(Element element, boolean isGlobal, XSDocumentInfo schemaDoc, boolean enumAsQName) argument
1221 validate(Object[] attrValues, String attr, String ivalue, int dvIndex, XSDocumentInfo schemaDoc) argument
1709 returnAttrArray(Object[] attrArray, XSDocumentInfo schemaDoc) argument
[all...]
H A DXSDHandler.java1870 protected Object traverseGlobalDecl(int declType, Element decl, XSDocumentInfo schemaDoc, SchemaGrammar grammar) { argument
1881 schemaDoc.backupNSSupport(nsSupport);
1887 retObj = fComplexTypeTraverser.traverseGlobal(decl, schemaDoc, grammar);
1890 retObj = fSimpleTypeTraverser.traverseGlobal(decl, schemaDoc, grammar);
1894 retObj = fAttributeTraverser.traverseGlobal(decl, schemaDoc, grammar);
1897 retObj = fElementTraverser.traverseGlobal(decl, schemaDoc, grammar);
1900 retObj = fAttributeGroupTraverser.traverseGlobal(decl, schemaDoc, grammar);
1903 retObj = fGroupTraverser.traverseGlobal(decl, schemaDoc, grammar);
1906 retObj = fNotationTraverser.traverse(decl, schemaDoc, grammar);
1916 schemaDoc
1921 schemaDocument2SystemId(XSDocumentInfo schemaDoc) argument
2003 storeKeyRef(Element keyrefToStore, XSDocumentInfo schemaDoc, XSElementDecl currElemDecl) argument
3642 fillInLocalElemInfo(Element elmDecl, XSDocumentInfo schemaDoc, int allContextFlags, XSObject parent, XSParticleDecl particle) argument
3959 findQName(String name, XSDocumentInfo schemaDoc) argument
3981 changeRedefineGroup(String originalQName, String elementSought, String newName, Element curr, XSDocumentInfo schemaDoc) argument
[all...]

Completed in 74 milliseconds