Searched refs:fConfiguration (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DSAXParser.java109 fConfiguration.addRecognizedFeatures(RECOGNIZED_FEATURES);
110 fConfiguration.setFeature(NOTIFY_BUILTIN_REFS, true);
113 fConfiguration.addRecognizedProperties(RECOGNIZED_PROPERTIES);
115 fConfiguration.setProperty(SYMBOL_TABLE, symbolTable);
118 fConfiguration.setProperty(XMLGRAMMAR_POOL, grammarPool);
H A DXMLParser.java79 protected XMLParserConfiguration fConfiguration; field in class:XMLParser
90 return fConfiguration.getFeature(featureId);
100 fConfiguration = config;
103 fConfiguration.addRecognizedProperties(RECOGNIZED_PROPERTIES);
123 fConfiguration.parse(inputSource);
H A DXMLDocumentParser.java65 fConfiguration.setProperty(Constants.XERCES_PROPERTY_PREFIX+Constants.SYMBOL_TABLE_PROPERTY, symbolTable);
75 fConfiguration.setProperty(Constants.XERCES_PROPERTY_PREFIX+Constants.SYMBOL_TABLE_PROPERTY, symbolTable);
76 fConfiguration.setProperty(Constants.XERCES_PROPERTY_PREFIX+Constants.XMLGRAMMAR_POOL_PROPERTY, grammarPool);
H A DDOMParserImpl.java178 fConfiguration.setProperty (
185 fConfiguration.setProperty (
213 fConfiguration.addRecognizedFeatures (domRecognizedFeatures);
216 fConfiguration.setFeature (DEFER_NODE_EXPANSION, false);
227 fConfiguration.setFeature(Constants.DOM_NAMESPACE_DECLARATIONS, true);
228 fConfiguration.setFeature(Constants.DOM_WELLFORMED, true);
229 fConfiguration.setFeature(INCLUDE_COMMENTS_FEATURE, true);
230 fConfiguration.setFeature(INCLUDE_IGNORABLE_WHITESPACE, true);
231 fConfiguration.setFeature(NAMESPACES, true);
233 fConfiguration
[all...]
H A DDOMParser.java141 fConfiguration.addRecognizedProperties(RECOGNIZED_PROPERTIES);
143 fConfiguration.setProperty(SYMBOL_TABLE, symbolTable);
146 fConfiguration.setProperty(XMLGRAMMAR_POOL, grammarPool);
149 fConfiguration.addRecognizedFeatures(RECOGNIZED_FEATURES);
288 XMLEntityResolver xer = (XMLEntityResolver) fConfiguration.getProperty(ENTITY_RESOLVER);
295 fConfiguration.setProperty(ENTITY_RESOLVER,
305 fConfiguration.setProperty(ENTITY_RESOLVER,
328 (XMLEntityResolver)fConfiguration.getProperty(ENTITY_RESOLVER);
368 XMLErrorHandler xeh = (XMLErrorHandler) fConfiguration.getProperty(ERROR_HANDLER);
374 fConfiguration
[all...]
H A DXMLGrammarParser.java51 fConfiguration.setProperty(Constants.XERCES_PROPERTY_PREFIX+Constants.SYMBOL_TABLE_PROPERTY, symbolTable);
H A DAbstractSAXParser.java1273 XMLEntityResolver xer = (XMLEntityResolver) fConfiguration.getProperty(ENTITY_RESOLVER);
1280 fConfiguration.setProperty(ENTITY_RESOLVER,
1290 fConfiguration.setProperty(ENTITY_RESOLVER,
1313 (XMLEntityResolver)fConfiguration.getProperty(ENTITY_RESOLVER);
1351 XMLErrorHandler xeh = (XMLErrorHandler) fConfiguration.getProperty(ERROR_HANDLER);
1357 fConfiguration.setProperty(ERROR_HANDLER,
1379 (XMLErrorHandler)fConfiguration.getProperty(ERROR_HANDLER);
1405 fConfiguration.setLocale(locale);
1524 fConfiguration.setFeature(featureId, state);
1537 fConfiguration
[all...]
H A DAbstractDOMParser.java299 fConfiguration.addRecognizedFeatures (RECOGNIZED_FEATURES);
302 fConfiguration.setFeature (CREATE_ENTITY_REF_NODES, true);
303 fConfiguration.setFeature (INCLUDE_IGNORABLE_WHITESPACE, true);
304 fConfiguration.setFeature (DEFER_NODE_EXPANSION, true);
305 fConfiguration.setFeature (INCLUDE_COMMENTS_FEATURE, true);
306 fConfiguration.setFeature (CREATE_CDATA_NODES_FEATURE, true);
309 fConfiguration.addRecognizedProperties (RECOGNIZED_PROPERTIES);
312 fConfiguration.setProperty (DOCUMENT_CLASS_NAME,
412 fConfiguration.getFeature (CREATE_ENTITY_REF_NODES);
415 fConfiguration
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java117 protected DOMConfigurationImpl fConfiguration = null; field in class:DOMNormalizer
186 fConfiguration = config;
190 fSymbolTable = (SymbolTable) fConfiguration.getProperty(DOMConfigurationImpl.SYMBOL_TABLE);
195 if ((fConfiguration.features & DOMConfigurationImpl.VALIDATE) != 0) {
196 String schemaLang = (String)fConfiguration.getProperty(DOMConfigurationImpl.JAXP_SCHEMA_LANGUAGE);
201 fConfiguration.setFeature(DOMConfigurationImpl.SCHEMA, true);
202 fConfiguration.setFeature(DOMConfigurationImpl.SCHEMA_FULL_CHECKING, true);
207 fPSVI = ((fConfiguration.features & DOMConfigurationImpl.PSVI) !=0)?true:false;
210 fConfiguration.setFeature(DOMConfigurationImpl.XERCES_VALIDATION, true);
217 ((XMLComponent) fValidationHandler).reset(fConfiguration);
[all...]
H A DPSVIDocumentImpl.java134 return fConfiguration;
H A DCoreDocumentImpl.java143 transient DOMConfigurationImpl fConfiguration = null; field in class:CoreDocumentImpl
1151 if (fConfiguration == null) {
1152 fConfiguration = new DOMConfigurationImpl();
1155 fConfiguration.reset();
1158 domNormalizer.normalizeDocument(this, fConfiguration);
1174 if (fConfiguration == null) {
1175 fConfiguration = new DOMConfigurationImpl();
1177 return fConfiguration;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DSAXParserImpl.java481 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(), "schema-already-specified", new Object[] {name}));
506 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(), "schema-not-supported", null));
515 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(), "schema-already-specified", new Object[] {name}));
526 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(),
606 return fConfiguration;
639 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(),
644 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(),
660 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(),
665 SAXMessageFormatter.formatMessage(fConfiguration.getLocale(),
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DStreamValidatorHelper.java94 private SoftReference fConfiguration = new SoftReference(null); field in class:StreamValidatorHelper
136 XMLParserConfiguration config = (XMLParserConfiguration) fConfiguration.get();
185 fConfiguration = new SoftReference(config);

Completed in 49 milliseconds