Searched defs:entities (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DEncoded.java131 if(isAttribute || entities[chr]!=null)
174 * UTF-8 encoded entities keyed by their character code.
175 * e.g., entities['&'] == AMP_ENTITY.
179 private static final byte[][] entities = new byte[0x80][]; field in class:Encoded
196 entities[c] = image;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentTypeImpl.java73 protected NamedNodeMapImpl entities; field in class:DocumentTypeImpl
108 entities = new NamedNodeMapImpl(this);
207 newnode.entities = entities.cloneMap(newnode);
278 //test if NamedNodeMaps entities and notations are equal
279 NamedNodeMapImpl argEntities = argDocType.entities;
281 if ((entities == null && argEntities != null)
282 || (entities != null && argEntities == null))
285 if (entities != null && argEntities != null) {
286 if (entities
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DDescriptorSupport.java1109 private static final String[] entities = { field in class:DescriptorSupport
1126 for (int i = 0; i < entities.length; i++) {
1127 final char c = entities[i].charAt(0);
1132 for (int i = 0; i < entities.length; i++) {
1133 final char c = entities[i].charAt(0);
1134 final String entity = entities[i].substring(1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDParser.java75 // stack of input entities being merged
94 SimpleHashtable entities = new SimpleHashtable(17); field in class:DTDParser
165 * Returns the object used to resolve entities
253 entities.clear();
277 entities.put(entityName, entity);
357 entities.clear();
409 // still need to pop entities, but not parsing of references
518 // expanded entities can't terminate the literal!
521 // we don't report end of parsed entities
541 // forbidden refs to unparsed entities o
[all...]

Completed in 48 milliseconds