Searched refs:hasExtension (Results 1 - 25 of 41) sorted by relevance

12

/external/skia/src/gpu/gl/
H A DGrGLCaps.cpp135 ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
136 ctxInfo.hasExtension("GL_ARM_rgba8");
141 ctxInfo.hasExtension("GL_ARB_texture_swizzle");
153 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
154 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
156 ctxInfo.hasExtension("GL_NV_pack_subimage");
158 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
162 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
167 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
168 ctxInfo.hasExtension("GL_EXT_texture_storag
[all...]
H A DGrGLContext.h61 bool hasExtension(const char* ext) const { function in class:GrGLContextInfo
65 return fInterface->hasExtension(ext);
H A DGrGLGpu.h186 bool hasExtension(const char* ext) const { return fGLContext.hasExtension(ext); } function in class:GrGLGpu
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DMimeTypeMapTest.java22 assertFalse(MimeTypeMap.getSingleton().hasExtension(VIDEO_EXTENSION));
28 assertFalse(MimeTypeMap.getSingleton().hasExtension(VIDEO_EXTENSION));
42 assertFalse(MimeTypeMap.getSingleton().hasExtension(VIDEO_EXTENSION));
43 assertFalse(MimeTypeMap.getSingleton().hasExtension(IMAGE_EXTENSION));
52 assertTrue(MimeTypeMap.getSingleton().hasExtension(VIDEO_EXTENSION));
53 assertTrue(MimeTypeMap.getSingleton().hasExtension(IMAGE_EXTENSION));
72 assertFalse(MimeTypeMap.getSingleton().hasExtension(VIDEO_EXTENSION));
73 assertFalse(MimeTypeMap.getSingleton().hasExtension(IMAGE_EXTENSION));
75 assertFalse(MimeTypeMap.getSingleton().hasExtension(IMAGE_MIMETYPE));
84 assertFalse(MimeTypeMap.getSingleton().hasExtension("fo
[all...]
/external/proguard/src/proguard/
H A DClassPathEntry.java135 return hasExtension(".dex");
144 return hasExtension(".apk") ||
145 hasExtension(".ap_");
154 return hasExtension(".jar");
163 return hasExtension(".aar");
172 return hasExtension(".war");
181 return hasExtension(".ear");
190 return hasExtension(".zip");
197 private boolean hasExtension(String extension) method in class:ClassPathEntry
/external/skia/tests/
H A DGLInterfaceValidationTest.cpp26 !factory->getGLContext(GrContextFactory::kNative_GLContextType)->gl()->hasExtension("GL_NV_path_rendering")) {
/external/skia/tools/timer/
H A DGpuTimer.cpp18 fContext->gl()->hasExtension("GL_ARB_timer_query") ||
19 fContext->gl()->hasExtension("GL_EXT_timer_query");
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhonenumber.java75 private boolean hasExtension; field in class:Phonenumber.PhoneNumber
77 public boolean hasExtension() { return hasExtension; } method in class:Phonenumber.PhoneNumber
83 hasExtension = true;
88 hasExtension = false;
201 if (other.hasExtension()) {
272 if (hasExtension()) {
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DTestUtil.java1449 Assert.assertTrue(message.hasExtension(optionalInt32Extension ));
1450 Assert.assertTrue(message.hasExtension(optionalInt64Extension ));
1451 Assert.assertTrue(message.hasExtension(optionalUint32Extension ));
1452 Assert.assertTrue(message.hasExtension(optionalUint64Extension ));
1453 Assert.assertTrue(message.hasExtension(optionalSint32Extension ));
1454 Assert.assertTrue(message.hasExtension(optionalSint64Extension ));
1455 Assert.assertTrue(message.hasExtension(optionalFixed32Extension ));
1456 Assert.assertTrue(message.hasExtension(optionalFixed64Extension ));
1457 Assert.assertTrue(message.hasExtension(optionalSfixed32Extension));
1458 Assert.assertTrue(message.hasExtension(optionalSfixed64Extensio
[all...]
H A DNanoTest.java2838 assertFalse(message.hasExtension(RepeatedExtensions.repeatedInt32));
2840 assertTrue(message.hasExtension(RepeatedExtensions.repeatedInt32));
2841 assertFalse(message.hasExtension(RepeatedExtensions.repeatedUint32));
2843 assertTrue(message.hasExtension(RepeatedExtensions.repeatedUint32));
2845 assertFalse(message.hasExtension(RepeatedExtensions.repeatedInt64));
2847 assertTrue(message.hasExtension(RepeatedExtensions.repeatedInt64));
2848 assertFalse(message.hasExtension(RepeatedExtensions.repeatedUint64));
2850 assertTrue(message.hasExtension(RepeatedExtensions.repeatedUint64));
2851 assertFalse(message.hasExtension(RepeatedExtensions.repeatedSint64));
2853 assertTrue(message.hasExtension(RepeatedExtension
[all...]
H A DDescriptorsTest.java366 descriptor.getOptions().hasExtension(UnittestCustomOptions.messageOpt1));
374 field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1));
382 enumType.getOptions().hasExtension(UnittestCustomOptions.enumOpt1));
390 service.getOptions().hasExtension(UnittestCustomOptions.serviceOpt1));
398 method.getOptions().hasExtension(UnittestCustomOptions.methodOpt1));
H A DTextFormatTest.java385 assertTrue(messageSet.hasExtension(
389 assertTrue(messageSet.hasExtension(
/external/skia/src/utils/win/
H A DSkWGL_win.cpp15 bool SkWGLExtensions::hasExtension(HDC dc, const char* ext) const { function in class:SkWGLExtensions
303 extensions.hasExtension(dc, "WGL_ARB_multisample")) {
334 if (!extensions.hasExtension(dc, "WGL_EXT_create_context_es2_profile")) {
351 extensions.hasExtension(dc, "WGL_ARB_create_context")) {
385 if (extensions.hasExtension(dc, "WGL_EXT_swap_control")) {
393 if (!extensions.hasExtension(dc, "WGL_ARB_pixel_format")) {
418 if (!extensions.hasExtension(parentDC, "WGL_ARB_pixel_format") ||
419 !extensions.hasExtension(parentDC, "WGL_ARB_pbuffer")) {
447 SkASSERT(fExtensions.hasExtension(fDC, "WGL_ARB_pbuffer"));
H A DSkWGL.h70 bool hasExtension(HDC dc, const char* ext) const;
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathIterator.java34 return hasExtension(file.getName(), ".jar");
118 if (hasExtension(file.getName(), ".jar")) {
122 } else if (hasExtension(file.getName(), ".zip")) {
225 return hasExtension(name, ".class");
228 private static boolean hasExtension(String name, String ext) { method in class:ClassPathIterator
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMimeTypeMap.java69 public boolean hasExtension(String extension) { method in class:ShadowMimeTypeMap
/external/skia/src/gpu/
H A DGrContextFactory.cpp66 if (!glInterface->hasExtension("GL_NV_path_rendering")) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DLocaleExtensions.java57 boolean hasExtension = (extensions != null && extensions.size() > 0);
61 if (!hasExtension && !hasUAttributes && !hasUKeywords) {
69 if (hasExtension) {
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DExtendableMessageNano.java74 public final boolean hasExtension(Extension<M, ?> extension) { method in class:ExtendableMessageNano
/external/deqp/modules/egl/
H A DteglSurfacelessContextTests.cpp99 if (!eglu::hasExtension(egl, display, "EGL_KHR_surfaceless_context"))
H A DteglCreateContextExtTests.cpp441 bool hasExtension (const glw::Functions& gl, const char* extension) function in namespace:deqp::egl::__anon3112
571 if (hasExtension(gl, "GL_ARB_compatibility"))
844 if (!hasExtension(gl, "GL_ARB_robustness"))
852 if (!hasExtension(gl, "GL_EXT_robustness"))
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DGeneratedMessageLite.java145 <Type> boolean hasExtension( method in interface:GeneratedMessageLite.ExtendableMessageOrBuilder
192 public final <Type> boolean hasExtension( method in class:GeneratedMessageLite.ExtendableMessage
379 public final <Type> boolean hasExtension( method in class:GeneratedMessageLite.ExtendableBuilder
/external/deqp/framework/egl/
H A DegluGLUtil.cpp81 const bool khrCreateContextSupported = hasExtension(egl, display, "EGL_KHR_create_context");
H A DegluUtil.hpp61 bool hasExtension (const eglw::Library& egl, eglw::EGLDisplay display, const std::string& extName);
/external/skia/include/gpu/gl/
H A DGrGLInterface.h141 bool hasExtension(const char ext[]) const { return fExtensions.has(ext); } function in struct:GrGLInterface

Completed in 681 milliseconds

12