HomeSort by relevance Sort by last modified time
    Searched refs:isSupported (Results 1 - 25 of 67) sorted by null

1 2 3

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodeissupported01.java 34 * 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);
nodeissupported02.java 34 * 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);
isSupported12.java 35 * 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");
isSupported01.java 35 * isSupported(feature,version)" method is the name
42 * node object on which the "isSupported(feature,version)"
76 state = rootNode.isSupported("XXX", "1.0");
isSupported02.java 35 * isSupported(feature,version)" method is the name
42 * node object on which the "isSupported(feature,version)"
76 state = rootNode.isSupported("XML", "9.0");
isSupported04.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("xml", "1.0");
isSupported05.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("core", "2.0");
isSupported06.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("xml", "2.0");
isSupported07.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("XML", "");
isSupported09.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("XML", "1.0");
isSupported10.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("CORE", "2.0");
isSupported11.java 35 * isSupported(feature,version)" method is the name
44 * node object on which the "isSupported(feature,version)"
78 state = rootNode.isSupported("XML", "2.0");
isSupported13.java 34 * Calls isSupported("Core","") should return true for all implementations (by extension of core-14).
66 state = rootNode.isSupported("Core", "");
isSupported14.java 34 * Calls isSupported("Core",null) should return true for all implementations (by extension of core-14).
68 state = rootNode.isSupported("Core", nullString);
nodeissupported03.java 47 * 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("", "");
nodeissupported04.java 34 * 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", "");
nodeissupported05.java 47 * 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/luni/src/test/java/tests/org/w3c/dom/
NodeIsSupported.java 43 * The method "isSupported(feature,version)" Tests whether the DOM
47 * Call the isSupported method on the document element node with a combination
90 notes = "Doesn't verify that isSupported method can return false value.",
91 method = "isSupported",
115 success = element.isSupported(featureXML, version);
117 success = element.isSupported(featureXML, version1);
122 success = element.isSupported(featureCore, version);
124 success = element.isSupported(featureCore, version1);
125 success = element.isSupported(featureCore, version2);
131 notes = "Doesn't verify that isSupported method can return false value."
    [all...]
IsSupported.java 17 * The "feature" parameter in the isSupported(feature,version)" method is the
24 * "isSupported(feature,version)" method is invoked with "feature" equal to
34 public final class IsSupported extends DOMTestCase {
65 notes = "Verifies that isSupported method returns false.",
66 method = "isSupported",
75 state = rootNode.isSupported("XXX", "1.0");
80 notes = "Verifies that isSupported method returns false value.",
81 method = "isSupported",
90 state = rootNode.isSupported("XML", "9.0");
95 notes = "Verifies that isSupported method returns true value."
    [all...]
  /system/media/opensles/tests/sandbox/
object.c 146 SLboolean isSupported = SL_BOOLEAN_TRUE;
147 result = (*engineEngine)->IsExtensionSupported(engineEngine, NULL, &isSupported);
149 assert(SL_BOOLEAN_FALSE == isSupported);
153 isSupported = SL_BOOLEAN_TRUE;
154 result = (*engineEngine)->IsExtensionSupported(engineEngine, unsupportedExt, &isSupported);
156 assert(SL_BOOLEAN_FALSE == isSupported);
163 isSupported = SL_BOOLEAN_FALSE;
164 result = (*engineEngine)->IsExtensionSupported(engineEngine, supportedExt, &isSupported);
166 assert(SL_BOOLEAN_TRUE == isSupported);
  /frameworks/base/tests/CoreTests/android/core/
LocaleTest.java 216 Charset.isSupported(encodings[i]));
231 Charset.isSupported("IBM-37"));
235 Charset.isSupported("KLINGON"));
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ProtocolVersion.java 40 public static boolean isSupported(byte[] version) {
71 public static boolean isSupported(String name) {
  /external/webkit/WebCore/svg/
SVGElement.h 97 virtual bool isSupported(StringImpl* feature, StringImpl* version) const;
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 472 public boolean isSupported(String feature,
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 177 if ( !isSupported ( returnType ) ) {
282 if ( !isSupported ( returnType ) ) {
328 private boolean isSupported( QName returnType ) {
365 // If isSupported check is already done then the execution path

Completed in 474 milliseconds

1 2 3