/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/dom/ |
H A D | DOMDocumentSerializer.java | 116 protected Node[] _attributes = new Node[32]; field in class:DOMDocumentSerializer 142 if (attributesSize == _attributes.length) { 144 System.arraycopy(_attributes, 0, attributes, 0, attributesSize); 145 _attributes = attributes; 147 _attributes[attributesSize++] = a; 196 final Node a = _attributes[i]; 197 _attributes[i] = null;
|
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/ |
H A D | FullValueDescription.java | 64 //public FullValueDescription (String _name, String _id, boolean _is_abstract, boolean _is_custom, String _defined_in, String _version, com.sun.org.omg.CORBA.OperationDescription[] _operations, com.sun.org.omg.CORBA.AttributeDescription[] _attributes, com.sun.org.omg.CORBA.ValueMember[] _members, com.sun.org.omg.CORBA.Initializer[] _initializers, String[] _supported_interfaces, String[] _abstract_base_values, boolean _is_truncatable, String _base_value, org.omg.CORBA.TypeCode _type) 65 public FullValueDescription (String _name, String _id, boolean _is_abstract, boolean _is_custom, String _defined_in, String _version, com.sun.org.omg.CORBA.OperationDescription[] _operations, com.sun.org.omg.CORBA.AttributeDescription[] _attributes, org.omg.CORBA.ValueMember[] _members, com.sun.org.omg.CORBA.Initializer[] _initializers, String[] _supported_interfaces, String[] _abstract_base_values, boolean _is_truncatable, String _base_value, org.omg.CORBA.TypeCode _type) argument 74 attributes = _attributes;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/ |
H A D | StartElementEvent.java | 47 private Map _attributes; field in class:StartElementEvent 53 if (_attributes != null) _attributes.clear(); 83 _attributes = new HashMap(); 106 if(_attributes != null){ 107 Collection coll = _attributes.values(); 149 return (Attribute)_attributes.get(qname); 192 if(_attributes != null){ 231 _attributes.put(attr.getName(),attr); 238 _attributes [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/ |
H A D | SAXBufferProcessor.java | 82 protected AttributesHolder _attributes = new AttributesHolder(); field in class:SAXBufferProcessor 438 _contentHandler.startElement(uri, localName, qName, _attributes); 441 _attributes.clear(); 590 _attributes.addAttributeWithQName(readStructureString(), readStructureString(), readStructureString(), readStructureString(), readContentString()); 597 _attributes.addAttributeWithQName(u, ln, getQName(p, ln), readStructureString(), readContentString()); 603 _attributes.addAttributeWithQName(u, ln, ln, readStructureString(), readContentString()); 608 _attributes.addAttributeWithQName("", ln, ln, readStructureString(), readContentString()); 626 _attributes.addAttributeWithQName(XMLConstants.XMLNS_ATTRIBUTE_NS_URI, prefix, 630 _attributes.addAttributeWithQName(XMLConstants.XMLNS_ATTRIBUTE_NS_URI, XMLConstants.XMLNS_ATTRIBUTE,
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | SyntaxTreeNode.java | 78 protected AttributesImpl _attributes = null; // Attributes of this element field in class:SyntaxTreeNode 170 _attributes = attributes; 179 if (_attributes == null) { 182 final String value = _attributes.getValue(qname); 192 return (_attributes != null && _attributes.getValue(qname) != null); 196 int index = _attributes.getIndex(qname); 198 _attributes.setAttribute(index, "", Util.getLocalName(qname), 202 _attributes.addAttribute("", Util.getLocalName(qname), qname, 213 return(_attributes); [all...] |
H A D | XSLTC.java | 90 private Hashtable _attributes; // Hashtable of all registered attributes field in class:XSLTC 246 _attributes = new Hashtable(); 690 Integer code = (Integer)_attributes.get(name.toString()); 693 _attributes.put(name.toString(), code);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/ |
H A D | SAXDocumentParser.java | 158 protected AttributesHolder _attributes; field in class:SAXDocumentParser 169 _attributes = new AttributesHolder(_registeredEncodingAlgorithms); 181 _attributes.clear(); 887 _contentHandler.startElement(name.namespaceName, name.localName, name.qName, _attributes); 894 _attributes.clear(); 1208 _attributes.addAttribute(new QualifiedName( 1214 _attributes.addAttribute(EncodingConstants.DEFAULT_NAMESPACE_DECLARATION, 1336 _attributes.addAttribute(name, value); 1345 _attributes.addAttribute(name, value); 1358 _attributes [all...] |
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | archDesc.hpp | 110 FormList _attributes; // List of Attribute Forms for parsing member in class:ArchDesc
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/ |
H A D | StAXDocumentParser.java | 114 protected AttributesHolder _attributes = new AttributesHolder(); field in class:StAXDocumentParser 679 // Search for the attributes in _attributes 681 for (int i = 0; i < _attributes.getLength(); i++) { 682 if (_attributes.getLocalName(i).equals(localName) && 683 _attributes.getURI(i).equals(namespaceURI)) { 684 return _attributes.getValue(i); 688 for (int i = 0; i < _attributes.getLength(); i++) { 689 if (_attributes.getLocalName(i).equals(localName)) { 690 return _attributes.getValue(i); 703 return _attributes [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | AdaptiveResultTreeImpl.java | 99 private final AttributesImpl _attributes = new AttributesImpl(); field in class:AdaptiveResultTreeImpl 579 _dom.startElement(null, _openElementName, _openElementName, _attributes); 582 _dom.startElement(uri, _openElementName.substring(index+1), _openElementName, _attributes); 660 _attributes.clear(); 713 _attributes.addAttribute(uri, localName, qname, type, value);
|