HomeSort by relevance Sort by last modified time
    Searched refs:isSupported (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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("-", "+");
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PathDashPathEffect_Delegate.java 53 public boolean isSupported() {
PathEffect_Delegate.java 56 public abstract boolean isSupported();
Xfermode_Delegate.java 56 public abstract boolean isSupported();
ComposeShader_Delegate.java 53 public boolean isSupported() {
DashPathEffect_Delegate.java 63 public boolean isSupported() {
69 // no message since isSupported returns true;
  /frameworks/wilhelm/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);
165 isSupported = SL_BOOLEAN_FALSE;
166 result = (*engineEngine)->IsExtensionSupported(engineEngine, supportedExt, &isSupported);
168 assert(SL_BOOLEAN_TRUE == isSupported);
  /libcore/crypto/src/main/java/org/conscrypt/
ProtocolVersion.java 40 public static boolean isSupported(byte[] version) {
71 public static boolean isSupported(String name) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILDevice.h 94 bool isSupported(AMDGPUDeviceInfo::Caps Mode) const;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDevice.h 94 bool isSupported(AMDGPUDeviceInfo::Caps Mode) const;
  /libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
CharsetTest.java 314 assertTrue(Charset.isSupported("US-ASCII"));
315 assertTrue(Charset.isSupported("ASCII"));
316 assertTrue(Charset.isSupported("ISO-8859-1"));
317 assertTrue(Charset.isSupported("ISO8859_1"));
318 assertTrue(Charset.isSupported("UTF-8"));
319 assertTrue(Charset.isSupported("UTF8"));
320 assertTrue(Charset.isSupported("UTF-16"));
321 assertTrue(Charset.isSupported("UTF-16BE"));
322 assertTrue(Charset.isSupported("UTF-16LE"));
348 Charset.isSupported(null)
    [all...]

Completed in 170 milliseconds

12 3 4 5 6 7