Searched refs:fNotationName (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DEntityDeclarationImpl.java44 private String fNotationName; field in class:EntityDeclarationImpl
107 return fNotationName;
111 fNotationName = notationName;
144 if (fNotationName != null) {
146 writer.write(fNotationName);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java246 private String fNotationName[][] = new String[INITIAL_CHUNK_COUNT][]; field in class:DTDGrammar
1462 notationDecl.setValues(fNotationName[chunk][index],
1973 fNotationName[chunk][index] = notationDecl.name;
2541 if (chunk >= fNotationName.length) {
2542 fNotationName = resize(fNotationName, fNotationName.length * 2);
2547 else if (fNotationName[chunk] != null) {
2551 fNotationName[chunk] = new String[CHUNK_SIZE];

Completed in 37 milliseconds