Searched refs:_namespaceAttributes (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferCreator.java53 protected String[] _namespaceAttributes; field in class:SAXBufferCreator
60 _namespaceAttributes = new String[16 * 2];
158 _namespaceAttributes[_namespaceAttributesPtr++] = prefix;
159 _namespaceAttributes[_namespaceAttributesPtr++] = uri;
161 if (_namespaceAttributesPtr == _namespaceAttributes.length) {
163 System.arraycopy(_namespaceAttributes, 0, namespaceAttributes, 0, _namespaceAttributesPtr);
164 _namespaceAttributes = namespaceAttributes;
171 if (_namespaceAttributes[i].length() > 0) {
173 storeStructureString(_namespaceAttributes[i]);
175 if (_namespaceAttributes[
[all...]
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/tools/
H A DSAXEventSerializer.java52 protected List _namespaceAttributes; field in class:SAXEventSerializer
88 if (_namespaceAttributes == null) {
89 _namespaceAttributes = new ArrayList();
99 _namespaceAttributes.add(attribute);
126 if (_namespaceAttributes != null) {
129 attrsHolder = (AttributeValueHolder[])_namespaceAttributes.toArray(attrsHolder);
141 _namespaceAttributes = null;
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/dom/
H A DDOMDocumentParser.java65 protected Attr[] _namespaceAttributes = new Attr[16]; field in class:DOMDocumentParser
310 _currentElement.setAttributeNode(_namespaceAttributes[i]);
311 _namespaceAttributes[i] = null;
552 if (_namespaceAttributesIndex == _namespaceAttributes.length) {
554 System.arraycopy(_namespaceAttributes, 0, newNamespaceAttributes, 0, _namespaceAttributesIndex);
555 _namespaceAttributes = newNamespaceAttributes;
617 _namespaceAttributes[_namespaceAttributesIndex++] = a;

Completed in 46 milliseconds