/external/deqp/modules/egl/ |
D | teglNegativeApiTests.cpp | 199 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(¬ES1Config, FilterList() << notRenderable<EGL_OPENGL_ES_BIT>)) in init() [all …]
|
D | teglMultiContextTests.cpp | 94 eglw::EGLConfig getConfig (const eglw::Library& egl, eglw::EGLDisplay display) in getConfig() function 124 const eglw::EGLConfig config = getConfig(egl, *display); in iterate()
|
D | teglApiCase.hpp | 67 bool getConfig (eglw::EGLConfig* cfg, const eglu::FilterList& filters);
|
D | teglSwapBuffersWithDamageTests.cpp | 275 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
|
D | teglImageTests.cpp | 258 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()
|
D | teglApiCase.cpp | 159 bool ApiCase::getConfig (EGLConfig* config, const eglu::FilterList& filters) in getConfig() function in deqp::egl::ApiCase
|
/external/deqp/modules/gles2/functional/ |
D | es2fFboRenderTest.cpp | 325 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/ |
D | TransformationUtils.java | 62 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()
|
D | CenterCrop.java | 28 final Bitmap toReuse = pool.get(outWidth, outHeight, toTransform.getConfig() != null in transform() 29 ? toTransform.getConfig() : Bitmap.Config.ARGB_8888); in transform()
|
D | Downsampler.java | 193 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/ |
D | rss.py | 70 for tag, text in (("title", self.ext.getConfig("TITLE")), 71 ("link", self.ext.getConfig("URL")), 84 link.text = self.ext.getConfig("URL")
|
D | footnotes.py | 85 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/ |
D | BitmapPreFillRunner.java | 93 toAllocate.getConfig()); in allocate() 105 + toAllocate.getConfig() + " size: " + Util.getBitmapByteSize(bitmap)); in allocate() 125 toAllocate.getConfig()); in addToBitmapPool()
|
D | PreFillType.java | 57 Bitmap.Config getConfig() { in getConfig() method in PreFillType 146 Bitmap.Config getConfig() { in getConfig() method in PreFillType.Builder
|
D | BitmapPreFiller.java | 42 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/ |
D | HashLoginService.java | 77 public String getConfig() in getConfig() method in HashLoginService 83 public void getConfig(String config) in getConfig() method in HashLoginService
|
D | SpnegoLoginService.java | 79 public String getConfig() in getConfig() method in SpnegoLoginService
|
/external/deqp/modules/gles3/functional/ |
D | es3fFboRenderTest.cpp | 143 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/ |
D | AttributeStrategy.java | 15 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/ |
D | Handle.cpp | 58 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/ |
D | BitmapTest.java | 41 assertEquals(bitmap.getConfig(), Config.ARGB_8888); in shouldCreateBitmapWithCorrectConfig() 137 assertEquals(shadowOf(bitmapCopy).getConfig(), Config.ARGB_8888); in shouldCopyBitmap()
|
/external/clang/lib/CodeGen/ |
D | CGCUDARuntime.cpp | 34 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock, in EmitCUDAKernelCallExpr()
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
D | FilterDefinitionTest.java | 75 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/ |
D | server.py | 178 def getConfig(self): member in Server 194 config = property(getConfig, setConfig, None,
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowBitmap.java | 89 public final Bitmap.Config getConfig() { in getConfig() method in ShadowBitmap
|