/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
D | OptionalMethodTest.java | 105 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/ |
D | ProtocolVersionTest.java | 42 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/ |
D | tes2CapabilityTests.cpp | 123 …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/ |
D | teglGetProcAddressTests.cpp | 103 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/ |
D | Platform.java | 79 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/ |
D | XPathExpressionImpl.java | 177 if ( !isSupported ( returnType ) ) { in evaluate() 282 if ( !isSupported ( returnType ) ) { in evaluate() 328 private boolean isSupported( QName returnType ) { in isSupported() method in XPathExpressionImpl
|
D | XPathImpl.java | 272 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/ |
D | tcuAndroidPlatformCapabilityQueryJNI.cpp | 204 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/ |
D | es2fShaderDiscardTests.cpp | 108 …const bool isSupported = m_isVertexCase ? m_ctxInfo.isVertexDynamicLoopSupported() : m_ctxInfo.isF… in init() local 109 if (!isSupported) in init()
|
D | es2fShaderReturnTests.cpp | 135 …const bool isSupported = m_isVertexCase ? m_ctxInfo.isVertexDynamicLoopSupported() : m_ctxInfo.isF… in init() local 136 if (!isSupported) in init()
|
D | es2fShaderLoopTests.cpp | 241 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/ |
D | DOM2DTMdefaultNamespaceDeclarationNode.java | 77 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/ |
D | joda-time-2.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/joda/
org/ ... |
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILDevice.h | 94 bool isSupported(AMDGPUDeviceInfo::Caps Mode) const;
|
D | AMDILDevice.cpp | 113 bool AMDGPUDevice::isSupported(AMDGPUDeviceInfo::Caps Mode) const in isSupported() function in AMDGPUDevice
|
D | AMDILInstrInfo.td | 39 "->isSupported(AMDGPUDeviceInfo::TmrReg)">; 50 "->isSupported(AMDGPUDeviceInfo::RegionMem)">;
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | Platform.java | 209 if (setAlpnProtocols != null && setAlpnProtocols.isSupported(sslSocket)) { in configureTlsExtensions() 217 if (!getAlpnSelectedProtocol.isSupported(socket)) return null; in getSelectedProtocol()
|
D | OptionalMethod.java | 54 public boolean isSupported(T target) { in isSupported() method in OptionalMethod
|
/external/sl4a/Common/src/com/googlecode/android_scripting/ |
D | FeaturedInterpreters.java | 83 public static boolean isSupported(String fileName) { in isSupported() method in FeaturedInterpreters
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
D | Camera2Enumerator.java | 61 public static boolean isSupported() { in isSupported() method in Camera2Enumerator
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
D | DTM.java | 567 public boolean isSupported(String feature, String version); in isSupported() method
|
/external/deqp/external/vulkancts/modules/vulkan/wsi/ |
D | vktWsiSurfaceTests.cpp | 307 …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/ |
D | UnImplNode.java | 713 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/ |
D | ElemLiteralResult.java | 974 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/ |
D | VideoCapturerAndroidTest.java | 55 if (!Camera2Enumerator.isSupported()) { in testCamera2Enumerator()
|