Home
last modified time | relevance | path

Searched refs:isSupported (Results 1 – 25 of 60) 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/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
DOptionalMethodTest.java59 public void isSupported() { in isSupported() method in OptionalMethodTest
62 assertTrue(defaultClassMethod.isSupported(new DefaultClass())); in isSupported()
66 assertTrue(privateImpl.isSupported(new PrivateImpl())); in isSupported()
70 assertFalse(privateClass.isSupported(new PrivateClass())); in isSupported()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferAndImageAllocationUtil.cpp79 …const deBool isSupported = isDeviceExtensionSupported(context.getUsedApiVersion(), exten… in createTestBuffer() local
80 if (!isSupported) in createTestBuffer()
157 …const deBool isSupported = isDeviceExtensionSupported(context.getUsedApiVersion(), exten… in createTestImage() local
158 if (!isSupported) in createTestImage()
/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.cpp90 bool isSupported (const std::string& extName);
162 bool GetProcAddressCase::isSupported (const std::string& extName) in isSupported() function in deqp::egl::GetProcAddressCase
185 bool supported = isSupported(m_extName); in executeTest()
298 const bool funcPtrSupported = isSupported("EGL_KHR_get_all_proc_addresses"); in executeTest()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowStorageManager.java96 public void setFileEncryptedNativeOrEmulated(boolean isSupported) { in setFileEncryptedNativeOrEmulated() argument
97 isFileEncryptionSupported = isSupported; in setFileEncryptedNativeOrEmulated()
/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/syzkaller/pkg/host/
Dhost_fuchsia.go12 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func
Dhost_windows.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func
Dhost_darwin.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func
Dhost_freebsd.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func
Dhost_akaros.go12 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func
Dhost_netbsd.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func
/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/okhttp/android/src/main/java/com/squareup/okhttp/internal/
DPlatform.java141 if (!isPlatformSocket(sslSocket) && SET_ALPN_PROTOCOLS.isSupported(sslSocket)) { in configureTlsExtensions()
163 boolean alpnSupported = GET_ALPN_SELECTED_PROTOCOL.isSupported(socket); in getSelectedProtocol()
/external/okhttp/repackaged/android/src/main/java/com/android/okhttp/internal/
DPlatform.java145 if (!isPlatformSocket(sslSocket) && SET_ALPN_PROTOCOLS.isSupported(sslSocket)) { in configureTlsExtensions()
167 boolean alpnSupported = GET_ALPN_SELECTED_PROTOCOL.isSupported(socket); in getSelectedProtocol()
/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/jline/src/src/main/java/jline/
DUnsupportedTerminal.java55 public boolean isSupported() { in isSupported() method in UnsupportedTerminal
DTerminal.java137 public abstract boolean isSupported(); in isSupported() method in Terminal
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86InterleavedAccess.cpp120 bool isSupported() const;
129 bool X86InterleavedAccessGroup::isSupported() const { in isSupported() function in X86InterleavedAccessGroup
817 return Grp.isSupported() && Grp.lowerIntoOptimizedSequence(); in lowerInterleavedLoad()
843 return Grp.isSupported() && Grp.lowerIntoOptimizedSequence(); in lowerInterleavedStore()
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DSwingHelper.java64 if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Action.BROWSE)) { in browse()

123