Searched defs:features (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementationSource.java17 * implementations, based upon requested features and versions, as specified
27 * specified features.
28 * @param features A string that specifies which features and versions
41 * features, or <code>null</code> if this source has none.
43 public DOMImplementation getDOMImplementation(String features); argument
47 * specified features and versions, as specified in .
48 * @param features A string that specifies which features and versions
54 * features
56 getDOMImplementationList(String features) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DSAXParserFactoryImpl.java34 = "http://xml.org/sax/features/namespaces";
37 = "http://xml.org/sax/features/validation";
39 private Map<String, Boolean> features = new HashMap<String, Boolean>(); field in class:SAXParserFactoryImpl
47 if (!name.startsWith("http://xml.org/sax/features/")) {
51 return Boolean.TRUE.equals(features.get(name));
80 return new SAXParserImpl(features);
92 if (!name.startsWith("http://xml.org/sax/features/")) {
97 features.put(name, Boolean.TRUE);
99 // This is needed to disable features that are enabled by default.
100 features
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMockFilter.java39 private Set<String> features = new HashSet<String>(); field in class:MockFilter
51 return features.contains(name);
63 features.add(name);
65 features.remove(name);
H A DMockReader.java51 private Set<String> features = new HashSet<String>(); field in class:MockReader
79 return features.contains(name);
113 features.add(name);
115 features.remove(name);
/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlPullParserFactory.java28 // features are kept there
30 protected HashMap<String, Boolean> features = new HashMap<String, Boolean>(); field in class:XmlPullParserFactory
48 * Set the features to be set when XML Pull Parser is created by this factory.
49 * <p><b>NOTE:</b> factory features are not used for XML Serializer.
55 features.put(name, state);
61 * <p><b>NOTE:</b> factory features are not used for XML Serializer.
65 * Unknown features are <string>always</strong> returned as false
68 Boolean value = features.get(name);
81 features.put (XmlPullParser.FEATURE_PROCESS_NAMESPACES, awareness);
105 features
[all...]

Completed in 1215 milliseconds