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

/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java70 private static final short LIST_FLAG = 0x80; field in class:DTDGrammar
72 /** List mask (~LIST_FLAG). */
73 private static final short LIST_MASK = ~LIST_FLAG;
491 elementDecl.simpleType.list = (fElementDeclType[chunk][index] & LIST_FLAG) != 0;
556 isList = (fAttributeDeclType[chunk][index] & LIST_FLAG) != 0;
642 fElementDeclType[chunk][index] |= LIST_FLAG;
688 fAttributeDeclType[attrChunk][attrIndex] |= LIST_FLAG;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java131 private static final short LIST_FLAG = 0x80; field in class:DTDGrammar
133 /** List mask (~LIST_FLAG). */
134 private static final short LIST_MASK = ~LIST_FLAG;
1277 elementDecl.simpleType.list = (fElementDeclType[chunk][index] & LIST_FLAG) != 0;
1358 isList = (fAttributeDeclType[chunk][index] & LIST_FLAG) != 0;
1818 fElementDeclType[chunk][index] |= LIST_FLAG;
1881 fAttributeDeclType[attrChunk][attrIndex] |= LIST_FLAG;

Completed in 38 milliseconds