Home
last modified time | relevance | path

Searched refs:getConfig (Results 1 – 25 of 36) sorted by relevance

12

/external/deqp/modules/egl/
DteglNegativeApiTests.cpp199 if (getConfig(&config, FilterList() << surfaceBits<EGL_PBUFFER_BIT>)) in init()
309 …if (getConfig(&es1OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT> << notRenderable<EGL_O… in init()
317 …if (getConfig(&es2OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << notRenderable<EGL_… in init()
325 …if (getConfig(&vgOnlyConfig, FilterList() << renderable<EGL_OPENVG_BIT> << notRenderable<EGL_OPENG… in init()
336 …if (getConfig(&glOnlyConfig, FilterList() << renderable<EGL_OPENGL_BIT> << notRenderable<EGL_OPENG… in init()
344 …if (getConfig(&vgOnlyConfig, FilterList() << renderable<EGL_OPENVG_BIT> << notRenderable<EGL_OPENG… in init()
355 …if (getConfig(&glOnlyConfig, FilterList() << renderable<EGL_OPENGL_BIT> << notRenderable<EGL_OPENV… in init()
363 …if (getConfig(&es1OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT> << notRenderable<EGL_O… in init()
371 …if (getConfig(&es2OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << notRenderable<EGL_… in init()
386 if (getConfig(&notES1Config, FilterList() << notRenderable<EGL_OPENGL_ES_BIT>)) in init()
[all …]
DteglMultiContextTests.cpp94 eglw::EGLConfig getConfig (const eglw::Library& egl, eglw::EGLDisplay display) in getConfig() function
124 const eglw::EGLConfig config = getConfig(egl, *display); in iterate()
DteglApiCase.hpp67 bool getConfig (eglw::EGLConfig* cfg, const eglu::FilterList& filters);
DteglSwapBuffersWithDamageTests.cpp275 virtual EGLConfig getConfig (const Library& egl, EGLDisplay eglDisplay);
312 EGLConfig SwapBuffersWithDamageTest::getConfig (const Library& egl, EGLDisplay eglDisplay) in getConfig() function in deqp::egl::__anon6a78b8510111::SwapBuffersWithDamageTest
328 m_eglConfig = getConfig(egl, m_eglDisplay); in init()
458 EGLConfig getConfig (const Library& egl, EGLDisplay eglDisplay);
471 EGLConfig SwapBuffersWithDamageAndPreserveBufferTest::getConfig (const Library& egl, EGLDisplay egl… in getConfig() function in deqp::egl::__anon6a78b8510111::SwapBuffersWithDamageAndPreserveBufferTest
DteglImageTests.cpp258 EGLConfig getConfig (void) const { return m_config; } in getConfig() function in deqp::egl::Image::Context
374 …log << TestLog::Message << "Using EGL config " << eglu::getConfigID(egl, dpy, context.getConfig())… in iterate()
433 …getConfigID(m_eglTestCtx.getLibrary(), context.getEglDisplay(), context.getConfig()) << TestLog::E… in iterate()
DteglApiCase.cpp159 bool ApiCase::getConfig (EGLConfig* config, const eglu::FilterList& filters) in getConfig() function in deqp::egl::ApiCase
/external/deqp/modules/gles2/functional/
Des2fFboRenderTest.cpp325 const FboConfig& getConfig (void) const { return m_config; } in getConfig() function in deqp::gles2::Functional::FboIncompleteException
359 const FboConfig& getConfig (void) const { return m_config; } in getConfig() function in deqp::gles2::Functional::Framebuffer
544 const FboConfig& getConfig (void) const { return m_config; } in getConfig() function in deqp::gles2::Functional::FboRenderCase
668 Framebuffer fbo(context, getConfig(), width, height); in render()
697 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
773 Framebuffer fbo(ctx, getConfig(), width, height); in render()
795 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
875 Framebuffer fboA(context, getConfig(), m_fboAWidth, m_fboAHeight); in render()
885 Framebuffer fboB(context, getConfig(), m_fboBWidth, m_fboBHeight); in render()
957 Framebuffer fbo(context, getConfig(), width, height); in render()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DTransformationUtils.java62 result = Bitmap.createBitmap(width, height, toCrop.getConfig() == null in centerCrop()
63 ? Bitmap.Config.ARGB_8888 : toCrop.getConfig()); in centerCrop()
110 … Bitmap.Config config = toFit.getConfig() != null ? toFit.getConfig() : Bitmap.Config.ARGB_8888; in fitCenter()
271 Bitmap result = pool.get(newWidth, newHeight, toOrient.getConfig()); in rotateImageExif()
273 result = Bitmap.createBitmap(newWidth, newHeight, toOrient.getConfig()); in rotateImageExif()
DCenterCrop.java28 final Bitmap toReuse = pool.get(outWidth, outHeight, toTransform.getConfig() != null in transform()
29 ? toTransform.getConfig() : Bitmap.Config.ARGB_8888); in transform()
DDownsampler.java193 Bitmap.Config config = getConfig(is, decodeFormat); in downsampleWithSize()
233 private static Bitmap.Config getConfig(InputStream is, DecodeFormat format) { in getConfig() method in Downsampler
/external/markdown/markdown/extensions/
Drss.py70 for tag, text in (("title", self.ext.getConfig("TITLE")),
71 ("link", self.ext.getConfig("URL")),
84 link.text = self.ext.getConfig("URL")
Dfootnotes.py85 if child.text.find(self.getConfig("PLACE_MARKER")) > -1:
88 if child.tail.find(self.getConfig("PLACE_MARKER")) > -1:
102 if self.getConfig("UNIQUE_IDS"):
109 if self.getConfig("UNIQUE_IDS"):
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
DBitmapPreFillRunner.java93 toAllocate.getConfig()); in allocate()
105 + toAllocate.getConfig() + " size: " + Util.getBitmapByteSize(bitmap)); in allocate()
125 toAllocate.getConfig()); in addToBitmapPool()
DPreFillType.java57 Bitmap.Config getConfig() { in getConfig() method in PreFillType
146 Bitmap.Config getConfig() { in getConfig() method in PreFillType.Builder
DBitmapPreFiller.java42 if (builder.getConfig() == null) { in preFill()
77 return Util.getBitmapByteSize(size.getWidth(), size.getHeight(), size.getConfig()); in getSizeInBytes()
/external/jetty/src/java/org/eclipse/jetty/security/
DHashLoginService.java77 public String getConfig() in getConfig() method in HashLoginService
83 public void getConfig(String config) in getConfig() method in HashLoginService
DSpnegoLoginService.java79 public String getConfig() in getConfig() method in SpnegoLoginService
/external/deqp/modules/gles3/functional/
Des3fFboRenderTest.cpp143 const FboConfig& getConfig (void) const { return m_config; } in getConfig() function in deqp::gles3::Functional::Framebuffer
589 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()
720 if (fboA.getConfig().colorType == GL_TEXTURE_2D) in render()
731 …readPixels(context, dst, 0, 0, width, height, glu::mapGLInternalFormat(fboA.getConfig().colorForma… in render()
1156 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()
1169 switch (fbo.getConfig().colorType) in render()
1173 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1178 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1187 switch (fbo.getConfig().depthStencilType) in render()
1191 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().depthStencilFormat, newWidth, newHeight); in render()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
DAttributeStrategy.java15 final Key key = keyPool.get(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig()); in put()
53 return getBitmapString(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig()); in getBitmapString()
/external/parameter-framework/upstream/test/functional-tests/
DHandle.cpp58 AllParamsPF() : ParameterFramework{getConfig()} { REQUIRE_NOTHROW(start()); } in AllParamsPF()
97 Config getConfig() in getConfig() function
548 MappingPF() : ParameterFramework{getConfig()} { REQUIRE_NOTHROW(start()); } in MappingPF()
575 Config getConfig() in getConfig() function
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DBitmapTest.java41 assertEquals(bitmap.getConfig(), Config.ARGB_8888); in shouldCreateBitmapWithCorrectConfig()
137 assertEquals(shadowOf(bitmapCopy).getConfig(), Config.ARGB_8888); in shouldCopyBitmap()
/external/clang/lib/CodeGen/
DCGCUDARuntime.cpp34 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock, in EmitCUDAKernelCallExpr()
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DFilterDefinitionTest.java75 final FilterConfig filterConfig = mockFilter.getConfig(); in testFilterInitAndConfig()
305 public FilterConfig getConfig() { in getConfig() method in FilterDefinitionTest.MockFilter
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
Dserver.py178 def getConfig(self): member in Server
194 config = property(getConfig, setConfig, None,
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBitmap.java89 public final Bitmap.Config getConfig() { in getConfig() method in ShadowBitmap

12