Searched refs:isSupported (Results 1 - 25 of 28) sorted by relevance

12

/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DNodeIsSupported.java38 * The method "isSupported(feature,version)" Tests whether the DOM
42 * Call the isSupported method on the document element node with a combination
103 success = element.isSupported(featureXML, version);
105 success = element.isSupported(featureXML, version1);
110 success = element.isSupported(featureCore, version);
112 success = element.isSupported(featureCore, version1);
113 success = element.isSupported(featureCore, version2);
138 success = attribute.isSupported(featureXML, version);
140 success = attribute.isSupported(featureXML, version1);
145 success = attribute.isSupported(featureCor
[all...]
H A DIsSupported.java12 * The "feature" parameter in the isSupported(feature,version)" method is the
19 * "isSupported(feature,version)" method is invoked with "feature" equal to
63 state = rootNode.isSupported("XXX", "1.0");
72 state = rootNode.isSupported("XML", "9.0");
81 state = rootNode.isSupported("xml", "1.0");
90 state = rootNode.isSupported("core", "2.0");
99 state = rootNode.isSupported("xml", "2.0");
108 state = rootNode.isSupported("XML", "");
117 state = rootNode.isSupported("XML", "1.0");
126 state = rootNode.isSupported("COR
[all...]
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dnodeissupported01.java34 * The method "isSupported(feature,version)" Tests whether the DOM implementation
37 * Call the isSupported method on the document element node with a combination of features
87 success = element.isSupported(featureXML, version);
89 success = element.isSupported(featureXML, version1);
94 success = element.isSupported(featureCore, version);
96 success = element.isSupported(featureCore, version1);
97 success = element.isSupported(featureCore, version2);
H A Dnodeissupported02.java34 * The method "isSupported(feature,version)" Tests whether the DOM implementation
37 * Call the isSupported method on a new attribute node with a combination of features
87 success = attribute.isSupported(featureXML, version);
89 success = attribute.isSupported(featureXML, version1);
94 success = attribute.isSupported(featureCore, version);
96 success = attribute.isSupported(featureCore, version1);
97 success = attribute.isSupported(featureCore, version2);
H A DisSupported12.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
96 state = rootNode.isSupported("Core", "2.0");
100 state = rootNode.isSupported(featureElement, "1.0");
104 state = rootNode.isSupported(featureElement, "2.0");
H A DisSupported01.java35 * isSupported(feature,version)" method is the name
42 * node object on which the "isSupported(feature,version)"
76 state = rootNode.isSupported("XXX", "1.0");
H A DisSupported02.java35 * isSupported(feature,version)" method is the name
42 * node object on which the "isSupported(feature,version)"
76 state = rootNode.isSupported("XML", "9.0");
H A DisSupported04.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("xml", "1.0");
H A DisSupported05.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("core", "2.0");
H A DisSupported06.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("xml", "2.0");
H A DisSupported07.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("XML", "");
H A DisSupported09.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("XML", "1.0");
H A DisSupported10.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("CORE", "2.0");
H A DisSupported11.java35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("XML", "2.0");
H A DisSupported13.java34 * Calls isSupported("Core","") should return true for all implementations (by extension of core-14).
66 state = rootNode.isSupported("Core", "");
H A DisSupported14.java34 * Calls isSupported("Core",null) should return true for all implementations (by extension of core-14).
68 state = rootNode.isSupported("Core", nullString);
H A Dnodeissupported03.java47 * The method "isSupported(feature,version)" Tests whether the DOM implementation
50 * Call the isSupported method specifying empty strings for feature and version on a docType
83 success = docType.isSupported("", "");
H A Dnodeissupported04.java34 * The method "isSupported(feature,version)" Tests whether the DOM implementation
37 * Call the isSupported method specifying empty strings for feature and version on a
71 success = entRef.isSupported("XML CORE", "");
H A Dnodeissupported05.java47 * The method "isSupported(feature,version)" Tests whether the DOM implementation
50 * Call the isSupported method specifying bad values for feature and version on a new
83 success = pi.isSupported("-", "+");
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DCharsetTest.java313 assertTrue(Charset.isSupported("US-ASCII"));
314 assertTrue(Charset.isSupported("ASCII"));
315 assertTrue(Charset.isSupported("ISO-8859-1"));
316 assertTrue(Charset.isSupported("ISO8859_1"));
317 assertTrue(Charset.isSupported("UTF-8"));
318 assertTrue(Charset.isSupported("UTF8"));
319 assertTrue(Charset.isSupported("UTF-16"));
320 assertTrue(Charset.isSupported("UTF-16BE"));
321 assertTrue(Charset.isSupported("UTF-16LE"));
347 Charset.isSupported(nul
[all...]
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java472 public boolean isSupported(String feature, method in interface:Node
/libcore/luni/src/test/java/libcore/java/util/
H A DOldAndroidLocaleTest.java163 assertTrue("Charset " + encoding + " must be supported", Charset.isSupported(encoding));
/libcore/luni/src/main/java/java/io/
H A DPrintStream.java116 if (!Charset.isSupported(charsetName)) {
161 if (!Charset.isSupported(charsetName)) {
/libcore/luni/src/main/java/java/util/logging/
H A DHandler.java272 if (Charset.isSupported(newEncoding)) {
/libcore/luni/src/main/java/java/nio/charset/
H A DCharset.java136 * {@link #isSupported} to see what's available. If you intend to use the charset if it's
337 public static boolean isSupported(String charsetName) { method in class:Charset

Completed in 609 milliseconds

12