Searched refs:getConfig (Results 1 - 25 of 37) sorted by relevance

12

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DCenterCrop.java28 final Bitmap toReuse = pool.get(outWidth, outHeight, toTransform.getConfig() != null
29 ? toTransform.getConfig() : Bitmap.Config.ARGB_8888);
H A DTransformationUtils.java62 result = Bitmap.createBitmap(width, height, toCrop.getConfig() == null
63 ? Bitmap.Config.ARGB_8888 : toCrop.getConfig());
110 Bitmap.Config config = toFit.getConfig() != null ? toFit.getConfig() : Bitmap.Config.ARGB_8888;
271 Bitmap result = pool.get(newWidth, newHeight, toOrient.getConfig());
273 result = Bitmap.createBitmap(newWidth, newHeight, toOrient.getConfig());
H A DDownsampler.java193 Bitmap.Config config = getConfig(is, decodeFormat);
233 private static Bitmap.Config getConfig(InputStream is, DecodeFormat format) { method in class:Downsampler
/external/markdown/markdown/extensions/
H A Drss.py70 for tag, text in (("title", self.ext.getConfig("TITLE")),
71 ("link", self.ext.getConfig("URL")),
84 link.text = self.ext.getConfig("URL")
H A 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/deqp/modules/egl/
H A DteglNegativeApiTests.cpp295 if (getConfig(&es1OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT> << notRenderable<EGL_OPENGL_BIT>))
303 if (getConfig(&es2OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << notRenderable<EGL_OPENGL_BIT>))
311 if (getConfig(&vgOnlyConfig, FilterList() << renderable<EGL_OPENVG_BIT> << notRenderable<EGL_OPENGL_BIT>))
322 if (getConfig(&glOnlyConfig, FilterList() << renderable<EGL_OPENGL_BIT> << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>))
330 if (getConfig(&vgOnlyConfig, FilterList() << renderable<EGL_OPENVG_BIT> << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>))
341 if (getConfig(&glOnlyConfig, FilterList() << renderable<EGL_OPENGL_BIT> << notRenderable<EGL_OPENVG_BIT>))
349 if (getConfig(&es1OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT> << notRenderable<EGL_OPENVG_BIT>))
357 if (getConfig(&es2OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << notRenderable<EGL_OPENVG_BIT>))
372 if (getConfig(&notES1Config, FilterList() << notRenderable<EGL_OPENGL_ES_BIT>))
387 if (getConfig(
[all...]
H A DteglApiCase.hpp67 bool getConfig (eglw::EGLConfig* cfg, const eglu::FilterList& filters);
H A DteglApiCase.cpp159 bool ApiCase::getConfig (EGLConfig* config, const eglu::FilterList& filters) function in class:deqp::egl::ApiCase
H A DteglImageTests.cpp253 EGLConfig getConfig (void) const { return m_config; } function in class:deqp::egl::Image::Context
355 log << TestLog::Message << "Using EGL config " << eglu::getConfigID(egl, dpy, context.getConfig()) << TestLog::EndMessage;
413 log << TestLog::Message << "Using EGL config " << eglu::getConfigID(m_eglTestCtx.getLibrary(), context.getEglDisplay(), context.getConfig()) << TestLog::EndMessage;
H A DteglImageFormatTests.cpp869 EGLConfig getConfig (void);
885 EGLConfig ImageFormatCase::getConfig (void) function in class:deqp::egl::Image::ImageFormatCase
967 m_config = getConfig();
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
H A DPreFillType.java57 Bitmap.Config getConfig() { method in class:PreFillType
146 Bitmap.Config getConfig() { method in class:PreFillType.Builder
H A DBitmapPreFillRunner.java93 toAllocate.getConfig());
105 + toAllocate.getConfig() + " size: " + Util.getBitmapByteSize(bitmap));
125 toAllocate.getConfig());
H A DBitmapPreFiller.java42 if (builder.getConfig() == null) {
77 return Util.getBitmapByteSize(size.getWidth(), size.getHeight(), size.getConfig());
/external/deqp/modules/gles2/functional/
H A Des2fFboRenderTest.cpp325 const FboConfig& getConfig (void) const { return m_config; } function in class:deqp::gles2::Functional::FboIncompleteException
359 const FboConfig& getConfig (void) const { return m_config; } function in class:deqp::gles2::Functional::Framebuffer
544 const FboConfig& getConfig (void) const { return m_config; } function in class:deqp::gles2::Functional::FboRenderCase
668 Framebuffer fbo(context, getConfig(), width, height);
697 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
773 Framebuffer fbo(ctx, getConfig(), width, height);
795 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
875 Framebuffer fboA(context, getConfig(), m_fboAWidth, m_fboAHeight);
885 Framebuffer fboB(context, getConfig(), m_fboBWidth, m_fboBHeight);
957 Framebuffer fbo(context, getConfig(), widt
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DAttributeStrategy.java15 final Key key = keyPool.get(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig());
53 return getBitmapString(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig());
/external/jetty/src/java/org/eclipse/jetty/security/
H A DHashLoginService.java77 public String getConfig() method in class:HashLoginService
83 public void getConfig(String config) method in class:HashLoginService
H A DSpnegoLoginService.java79 public String getConfig() method in class:SpnegoLoginService
H A DJDBCLoginService.java169 public String getConfig() method in class:JDBCLoginService
H A DPropertyUserStore.java77 public String getConfig() method in class:PropertyUserStore
/external/clang/lib/CodeGen/
H A DCGCUDARuntime.cpp34 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock,
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
H A DAndroidImageInfo.java67 switch (bitmap.getConfig()) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DBitmapTest.java41 assertEquals(bitmap.getConfig(), Config.ARGB_8888);
137 assertEquals(shadowOf(bitmapCopy).getConfig(), Config.ARGB_8888);
/external/deqp/modules/gles3/functional/
H A Des3fFboRenderTest.cpp143 const FboConfig& getConfig (void) const { return m_config; } function in class:deqp::gles3::Functional::Framebuffer
589 if (fbo.getConfig().colorType == GL_TEXTURE_2D)
720 if (fboA.getConfig().colorType == GL_TEXTURE_2D)
731 readPixels(context, dst, 0, 0, width, height, glu::mapGLInternalFormat(fboA.getConfig().colorFormat), Vec4(1.0f), Vec4(0.0f));
1156 if (fbo.getConfig().colorType == GL_TEXTURE_2D)
1169 switch (fbo.getConfig().colorType)
1173 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorFormat, newWidth, newHeight);
1178 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorFormat, newWidth, newHeight);
1187 switch (fbo.getConfig().depthStencilType)
1191 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig()
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmap.java89 public final Bitmap.Config getConfig() { method in class:ShadowBitmap
/external/markdown/markdown/
H A D__init__.py476 def getConfig(self, key): member in class:Extension

Completed in 389 milliseconds

12