Home
last modified time | relevance | path

Searched refs:isSupported (Results 1 – 25 of 63) sorted by relevance

123

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DOptionalMethodTest.java105 public void isSupported() throws Exception { in isSupported() method in OptionalMethodTest
108 assertTrue(STRING_METHOD_RETURNS_ANY.isSupported(base)); in isSupported()
109 assertTrue(STRING_METHOD_RETURNS_STRING.isSupported(base)); in isSupported()
110 assertFalse(STRING_METHOD_RETURNS_INT.isSupported(base)); in isSupported()
111 assertTrue(VOID_METHOD_RETURNS_ANY.isSupported(base)); in isSupported()
112 assertTrue(VOID_METHOD_RETURNS_VOID.isSupported(base)); in isSupported()
113 assertFalse(SUBCLASS_METHOD_RETURNS_ANY.isSupported(base)); in isSupported()
114 assertFalse(SUBCLASS_METHOD_RETURNS_STRING.isSupported(base)); in isSupported()
115 assertFalse(SUBCLASS_METHOD_RETURNS_INT.isSupported(base)); in isSupported()
116 assertFalse(METHOD_WITH_ARGS_WRONG_PARAMS.isSupported(base)); in isSupported()
[all …]
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
DProtocolVersionTest.java42 assertTrue(ProtocolVersion.isSupported(new byte[] { 3, 0 })); in testIsSupportedbyteArray()
43 assertTrue(ProtocolVersion.isSupported(new byte[] { 3, 1 })); in testIsSupportedbyteArray()
44 assertFalse(ProtocolVersion.isSupported(new byte[] { 3, 2 })); in testIsSupportedbyteArray()
59 assertTrue(ProtocolVersion.isSupported("SSLv3")); in testIsSupportedString()
60 assertTrue(ProtocolVersion.isSupported("SSL")); in testIsSupportedString()
61 assertTrue(ProtocolVersion.isSupported("TLSv1")); in testIsSupportedString()
62 assertTrue(ProtocolVersion.isSupported("TLS")); in testIsSupportedString()
63 assertFalse(ProtocolVersion.isSupported("SSLv4")); in testIsSupportedString()
/external/deqp/modules/gles2/
Dtes2CapabilityTests.cpp123 …bool isSupported = std::find(m_ctxInfo.getExtensions().begin(), m_ctxInfo.getExtensions().end(), m… in iterate() local
124 m_testCtx.setTestResult(isSupported ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_NOT_SUPPORTED, in iterate()
125 isSupported ? "Supported" : "Not supported"); in iterate()
/external/deqp/modules/egl/
DteglGetProcAddressTests.cpp103 bool isSupported (const std::string& extName);
167 bool GetProcAddressCase::isSupported (const std::string& extName) in isSupported() function in deqp::egl::GetProcAddressCase
190 bool supported = isSupported(m_extName); in executeTest()
236 const bool funcPtrSupported = isSupported("EGL_KHR_get_all_proc_addresses"); in executeTest()
/external/okhttp/android/main/java/com/squareup/okhttp/internal/
DPlatform.java79 boolean alpnSupported = SET_ALPN_PROTOCOLS.isSupported(sslSocket); in configureTlsExtensions()
98 boolean alpnSupported = GET_ALPN_SELECTED_PROTOCOL.isSupported(socket); in getSelectedProtocol()
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
DXPathExpressionImpl.java177 if ( !isSupported ( returnType ) ) { in evaluate()
282 if ( !isSupported ( returnType ) ) { in evaluate()
328 private boolean isSupported( QName returnType ) { in isSupported() method in XPathExpressionImpl
DXPathImpl.java272 if ( !isSupported ( returnType ) ) { in evaluate()
301 private boolean isSupported( QName returnType ) { in isSupported() method in XPathImpl
465 if ( !isSupported ( returnType ) ) { in evaluate()
/external/deqp/framework/platform/android/
DtcuAndroidPlatformCapabilityQueryJNI.cpp204 const bool isSupported = isRenderConfigSupported(cmdLine); in Java_com_drawelements_deqp_platformutil_DeqpPlatformCapabilityQueryInstrumentation_nativeRenderConfigSupportedQuery() local
206 return (isSupported) ? (CONFIGQUERYRESULT_SUPPORTED) in Java_com_drawelements_deqp_platformutil_DeqpPlatformCapabilityQueryInstrumentation_nativeRenderConfigSupportedQuery()
/external/deqp/modules/gles2/functional/
Des2fShaderDiscardTests.cpp108 …const bool isSupported = m_isVertexCase ? m_ctxInfo.isVertexDynamicLoopSupported() : m_ctxInfo.isF… in init() local
109 if (!isSupported) in init()
Des2fShaderReturnTests.cpp135 …const bool isSupported = m_isVertexCase ? m_ctxInfo.isVertexDynamicLoopSupported() : m_ctxInfo.isF… in init() local
136 if (!isSupported) in init()
Des2fShaderLoopTests.cpp241 bool isSupported = true; in init() local
244 isSupported = m_isVertexCase ? m_ctxInfo.isVertexUniformLoopSupported() in init()
247 isSupported = m_isVertexCase ? m_ctxInfo.isVertexDynamicLoopSupported() in init()
256 if (!isSupported) in init()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DDOM2DTMdefaultNamespaceDeclarationNode.java77 public boolean isSupported(String feature, String version) {return false;} in isSupported() method in DOM2DTMdefaultNamespaceDeclarationNode
188 return isSupported(feature, version) ? this : null; in getFeature()
/external/caliper/lib/
Djoda-time-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/joda/ org/ ...
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILDevice.h94 bool isSupported(AMDGPUDeviceInfo::Caps Mode) const;
DAMDILDevice.cpp113 bool AMDGPUDevice::isSupported(AMDGPUDeviceInfo::Caps Mode) const in isSupported() function in AMDGPUDevice
DAMDILInstrInfo.td39 "->isSupported(AMDGPUDeviceInfo::TmrReg)">;
50 "->isSupported(AMDGPUDeviceInfo::RegionMem)">;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DPlatform.java209 if (setAlpnProtocols != null && setAlpnProtocols.isSupported(sslSocket)) { in configureTlsExtensions()
217 if (!getAlpnSelectedProtocol.isSupported(socket)) return null; in getSelectedProtocol()
DOptionalMethod.java54 public boolean isSupported(T target) { in isSupported() method in OptionalMethod
/external/sl4a/Common/src/com/googlecode/android_scripting/
DFeaturedInterpreters.java83 public static boolean isSupported(String fileName) { in isSupported() method in FeaturedInterpreters
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DCamera2Enumerator.java61 public static boolean isSupported() { in isSupported() method in Camera2Enumerator
/external/apache-xml/src/main/java/org/apache/xml/dtm/
DDTM.java567 public boolean isSupported(String feature, String version); in isSupported() method
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSurfaceTests.cpp307 …const VkBool32 isSupported = getPhysicalDeviceSurfaceSupport(instHelper.vki, physicalDevice, queu… in querySurfaceSupportTest() local
310 << (isSupported == VK_FALSE ? "NOT " : "") << "supported" in querySurfaceSupportTest()
313 if (expectSupportedOnAll && !isSupported) in querySurfaceSupportTest()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DUnImplNode.java713 public boolean isSupported(String feature, String version) in isSupported() method in UnImplNode
1253 return isSupported(feature, version) ? this : null; in getFeature()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemLiteralResult.java974 public boolean isSupported(String feature, String version) in isSupported() method
1102 return isSupported(feature, version) ? this : null; in getFeature()
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DVideoCapturerAndroidTest.java55 if (!Camera2Enumerator.isSupported()) { in testCamera2Enumerator()

123