Searched defs:fAttributes (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DAttributesProxy.java44 private XMLAttributes fAttributes; field in class:AttributesProxy
51 fAttributes = attributes;
60 fAttributes = attributes;
64 return fAttributes;
72 return fAttributes.getLength();
76 return fAttributes.getQName(index);
82 String uri = fAttributes.getURI(index);
87 return fAttributes.getLocalName(index);
91 return fAttributes.getType(i);
95 return fAttributes
[all...]
H A DXMLAttributesImpl.java126 protected Attribute[] fAttributes = new Attribute[4]; field in class:XMLAttributesImpl
166 for (int i = 0; i < fAttributes.length; i++) {
167 fAttributes[i] = new Attribute();
232 if (fLength++ == fAttributes.length) {
233 Attribute[] attributes = new Attribute[fAttributes.length + 4];
234 System.arraycopy(fAttributes, 0, attributes, 0, fAttributes.length);
235 for (int i = fAttributes.length; i < attributes.length; i++) {
238 fAttributes = attributes;
265 if (fLength++ == fAttributes
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DStartElementEvent.java53 private Map fAttributes; field in class:StartElementEvent
75 fAttributes = new HashMap();
88 if(fAttributes != null){
89 Collection coll = fAttributes.values();
105 return (Attribute)fAttributes.get(qname);
137 if (fAttributes != null) {
203 fAttributes.put(attr.getName(),attr);
212 fAttributes.put(attr.getName(),attr);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSDDescription.java102 protected XMLAttributes fAttributes; field in class:XSDDescription
174 return fAttributes;
244 fAttributes = attributes ;
256 fAttributes = null ;
261 desc.fAttributes = this.fAttributes;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DSchemaContentHandler.java78 private final XMLAttributesImpl fAttributes = new XMLAttributesImpl(); field in class:SchemaContentHandler
184 fSchemaDOMParser.startElement(fElementQName, fAttributes, null);
306 fAttributes.removeAllAttributes();
311 fAttributes.addAttributeNS(fAttributeQName, (type != null) ? type : XMLSymbols.fCDATASymbol, atts.getValue(i));
312 fAttributes.setSpecified(i, true);
336 fAttributes.addAttribute(fAttributeQName, XMLSymbols.fCDATASymbol, nsURI);
H A DStAXSchemaParser.java85 private final XMLAttributesImpl fAttributes = new XMLAttributesImpl(); field in class:StAXSchemaParser
130 fSchemaDOMParser.startElement(fElementQName, fAttributes, null);
212 fSchemaDOMParser.startElement(fElementQName, fAttributes, null);
317 fAttributes.removeAllAttributes();
323 int idx = fAttributes.getLength();
324 fAttributes.addAttributeNS(fAttributeQName,
326 fAttributes.setSpecified(idx, attr.isSpecified());
331 fAttributes.removeAllAttributes();
337 fAttributes.addAttributeNS(fAttributeQName,
339 fAttributes
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMValidatorHelper.java154 final XMLAttributesImpl fAttributes = new XMLAttributesImpl(); field in class:DOMValidatorHelper
277 fSchemaValidator.startElement(fElementQName, fAttributes, null);
429 fAttributes.removeAllAttributes();
438 fAttributes.addAttributeNS(fAttributeQName, XMLSymbols.fCDATASymbol, value);
439 fAttributes.setSpecified(i, attr.getSpecified());
H A DValidatorHandlerImpl.java174 private final XMLAttributesImpl fAttributes = new XMLAttributesImpl(); field in class:ValidatorHandlerImpl
175 private final AttributesProxy fAttrAdapter = new AttributesProxy(fAttributes);
565 fSchemaValidator.startElement(fElementQName, fAttributes, null);
784 fAttributes.removeAllAttributes();
788 fAttributes.setSpecified(i, true);
794 fAttributes.removeAllAttributes();
798 fAttributes.setSpecified(i, att.isSpecified(i));
800 fAttributes.getAugmentations(i).putItem(Constants.ATTRIBUTE_DECLARED, Boolean.TRUE);
809 fAttributes.addAttributeNS(fAttributeQName, (type != null) ? type : XMLSymbols.fCDATASymbol, att.getValue(index));
824 private XMLAttributes fAttributes; field in class:ValidatorHandlerImpl.XMLSchemaTypeInfoProvider
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java1452 protected AttributeMap fAttributes; field in class:DOMNormalizer.XMLAttributesProxy
1461 fAttributes = attributes;
1523 return(fAttributes != null)?fAttributes.getLength():0;
1542 if (fAttributes !=null) {
1543 updateQName((Node)fAttributes.getItem(attrIndex), attrName);
1571 //return fAttributes.item(index).ge);
1600 if (fAttributes != null){
1601 AttrImpl attr = (AttrImpl)fAttributes.getItem(attrIndex);
1614 return (fAttributes !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDTDScannerImpl.java155 private XMLAttributesImpl fAttributes = new XMLAttributesImpl(); field in class:XMLDTDScannerImpl
1413 fAttributes, 0, isVC);
H A DXMLDocumentFragmentScannerImpl.java350 protected XMLAttributesIteratorImpl fAttributes = new XMLAttributesIteratorImpl(); field in class:XMLDocumentFragmentScannerImpl
459 //fDocumentHandler.startElement(getElementQName(),fAttributes,null);
567 //fAttributes.setNamespaces(fNamespaces);
1231 * fAttributes variables. The contents of these variables will be
1234 * NB: Content in fAttributes is valid only till the state of the parser is XMLEvent.START_ELEMENT
1240 // fAttributes will have the details of all the attributes.
1311 fAttributes.removeAllAttributes();
1319 scanAttribute(fAttributes);
1320 if (fSecurityManager != null && fAttributes.getLength() > fElementAttributeLimit){
1323 new Object[]{rawname, new Integer(fAttributes
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractSAXParser.java2275 protected XMLAttributes fAttributes; field in class:AbstractSAXParser.AttributesProxy
2283 fAttributes = attributes;
2287 return fAttributes.getLength();
2291 return fAttributes.getQName(i);
2295 return fAttributes.getQName(index);
2302 String uri= fAttributes.getURI(index);
2307 return fAttributes.getLocalName(index);
2311 return fAttributes.getType(i);
2315 return fAttributes.getType(name);
2319 return uri.equals("") ? fAttributes
[all...]

Completed in 5411 milliseconds