Home | History | Annotate | Download | only in dom3

Lines Matching refs:fFeatures

95     protected int fFeatures = 0;

215 fFeatures |= CDATA;
216 fFeatures |= COMMENTS;
217 fFeatures |= ELEM_CONTENT_WHITESPACE;
218 fFeatures |= ENTITIES;
219 fFeatures |= NAMESPACES;
220 fFeatures |= NAMESPACEDECLS;
221 fFeatures |= SPLITCDATA;
222 fFeatures |= WELLFORMED;
223 fFeatures |= DISCARDDEFAULT;
224 fFeatures |= XMLDECL;
297 if ((fFeatures & INFOSET) != 0) {
439 return ((fFeatures & COMMENTS) != 0) ? Boolean.TRUE : Boolean.FALSE;
441 return ((fFeatures & CDATA) != 0) ? Boolean.TRUE : Boolean.FALSE;
443 return ((fFeatures & ENTITIES) != 0) ? Boolean.TRUE : Boolean.FALSE;
445 return ((fFeatures & NAMESPACES) != 0) ? Boolean.TRUE : Boolean.FALSE;
447 return ((fFeatures & NAMESPACEDECLS) != 0) ? Boolean.TRUE : Boolean.FALSE;
449 return ((fFeatures & SPLITCDATA) != 0) ? Boolean.TRUE : Boolean.FALSE;
451 return ((fFeatures & WELLFORMED) != 0) ? Boolean.TRUE : Boolean.FALSE;
453 return ((fFeatures & DISCARDDEFAULT) != 0) ? Boolean.TRUE : Boolean.FALSE;
455 return ((fFeatures & PRETTY_PRINT) != 0) ? Boolean.TRUE : Boolean.FALSE;
457 return ((fFeatures & XMLDECL) != 0) ? Boolean.TRUE : Boolean.FALSE;
459 return ((fFeatures & ELEM_CONTENT_WHITESPACE) != 0) ? Boolean.TRUE : Boolean.FALSE;
461 return ((fFeatures & PRETTY_PRINT) != 0) ? Boolean.TRUE : Boolean.FALSE;
472 if ((fFeatures & ENTITIES) == 0 &&
473 (fFeatures & CDATA) == 0 &&
474 (fFeatures & ELEM_CONTENT_WHITESPACE) != 0 &&
475 (fFeatures & NAMESPACES) != 0 &&
476 (fFeatures & NAMESPACEDECLS) != 0 &&
477 (fFeatures & WELLFORMED) != 0 &&
478 (fFeatures & COMMENTS) != 0) {
524 fFeatures = state ? fFeatures | COMMENTS : fFeatures
535 fFeatures = state ? fFeatures | CDATA : fFeatures
546 fFeatures = state ? fFeatures | ENTITIES : fFeatures
563 fFeatures = state ? fFeatures | NAMESPACES : fFeatures
575 fFeatures = state ? fFeatures | NAMESPACEDECLS
576 : fFeatures & ~NAMESPACEDECLS;
586 fFeatures = state ? fFeatures | SPLITCDATA : fFeatures
597 fFeatures = state ? fFeatures | WELLFORMED : fFeatures
609 fFeatures = state ? fFeatures | DISCARDDEFAULT
610 : fFeatures & ~DISCARDDEFAULT;
620 fFeatures = state ? fFeatures | PRETTY_PRINT : fFeatures
632 fFeatures = state ? fFeatures | XMLDECL : fFeatures
640 fFeatures = state ? fFeatures | ELEM_CONTENT_WHITESPACE : fFeatures
699 fFeatures &= ~ENTITIES;
700 fFeatures &= ~CDATA;
701 fFeatures &= ~SCHEMAVALIDATE;
702 fFeatures &= ~DTNORMALIZE;
703 fFeatures |= NAMESPACES;
704 fFeatures |= NAMESPACEDECLS;
705 fFeatures |= WELLFORMED;
706 fFeatures |= ELEM_CONTENT_WHITESPACE;
707 fFeatures |= COMMENTS;
952 && ((fFeatures & XMLDECL) != 0)) {
1138 && ((fFeatures & XMLDECL) != 0)) {
1242 && ((fFeatures & XMLDECL) != 0)) {