HomeSort by relevance Sort by last modified time
    Searched refs:getConfig (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/markdown/extensions/
__init__.py 51 def getConfig(self, key, default=''):
60 return dict([(key, self.getConfig(key)) for key in self.config.keys()])
  /cts/tests/tests/drm/src/android/drm/cts/
ConfigFactory.java 33 public static Config getConfig(String plugInName) {
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderContext.h 32 int getConfig() const { return m_config; }
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderInterface.h 32 virtual Encode_Status getConfig(VideoParamConfigSet *videoEncConfig) = 0;
PVSoftMPEG4Encoder.h 47 virtual Encode_Status getConfig(VideoParamConfigSet *videoEncConfig) {return ENCODE_SUCCESS;}
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplication.java 155 public synchronized Config getConfig() {
175 return new SearchSettingsImpl(getContext(), getConfig());
220 int priority = getConfig().getQueryThreadPriority();
241 return new SuggestionsProviderImpl(getConfig(),
277 getIconLoaderExecutor(), getConfig());
308 return new EventLogLogger(getContext(), getConfig());
343 getConfig().getUserAgent());
362 return new Help(getContext(), getConfig());
  /external/markdown/markdown/extensions/
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")
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"):
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.h 47 EglConfig* getConfig(EGLConfig conf);
48 EglConfig* getConfig(EGLint id );
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
TransformationUtils.java 60 result = Bitmap.createBitmap(width, height, toCrop.getConfig() == null ?
61 Bitmap.Config.ARGB_8888 : toCrop.getConfig());
91 Bitmap.Config config = toFit.getConfig() != null ? toFit.getConfig() : Bitmap.Config.ARGB_8888;
251 Bitmap result = pool.get(newWidth, newHeight, toOrient.getConfig());
253 result = Bitmap.createBitmap(newWidth, newHeight, toOrient.getConfig());
CenterCrop.java 28 final Bitmap toReuse = pool.get(outWidth, outHeight, resource.get().getConfig());
  /external/deqp/modules/egl/
teglNegativeApiTests.cpp 264 if (getConfig(&es1OnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENGL_ES_BIT) << (ConfigRenderableType() ^ EGL_OPENGL_BIT)))
272 if (getConfig(&es2OnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENGL_ES2_BIT) << (ConfigRenderableType() ^ EGL_OPENGL_BIT)))
280 if (getConfig(&vgOnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENVG_BIT) << (ConfigRenderableType() ^ EGL_OPENGL_BIT)))
291 if (getConfig(&glOnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENGL_BIT) << (ConfigRenderableType() ^ (EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT))))
299 if (getConfig(&vgOnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENVG_BIT) << (ConfigRenderableType() ^ (EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT))))
310 if (getConfig(&glOnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENGL_BIT) << (ConfigRenderableType() ^ EGL_OPENVG_BIT)))
318 if (getConfig(&es1OnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENGL_ES_BIT) << (ConfigRenderableType() ^ EGL_OPENVG_BIT)))
326 if (getConfig(&es2OnlyConfig, FilterList() << (ConfigRenderableType() & EGL_OPENGL_ES2_BIT) << (ConfigRenderableType() ^ EGL_OPENVG_BIT)))
341 if (getConfig(&notES1Config, FilterList() << (ConfigRenderableType() ^ EGL_OPENGL_ES_BIT)))
356 if (getConfig(&notES2Config, FilterList() << (ConfigRenderableType() ^ EGL_OPENGL_ES2_BIT))
    [all...]
teglApiCase.hpp 61 bool getConfig (EGLConfig* cfg, const eglu::FilterList& filters);
  /external/deqp/modules/gles2/functional/
es2fFboRenderTest.cpp 325 const FboConfig& getConfig (void) const { return m_config; }
359 const FboConfig& getConfig (void) const { return m_config; }
544 const FboConfig& getConfig (void) const { return m_config; }
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(), width, height)
    [all...]
  /cts/libs/deviceutil/src/android/cts/util/
WidgetTestUtils.java 52 || b1.getConfig() != b2.getConfig()) {
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerRunningTaskInfoTest.java 72 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
99 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
AttributeStrategy.java 14 final Key key = keyPool.get(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig());
52 return getBitmapString(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig());
  /cts/tests/tests/text/src/android/text/cts/
MyanmarTest.java 58 bitmapC.getConfig());
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
SampleApplication.h 43 EGLConfig getConfig() const;
  /external/clang/lib/CodeGen/
CGCUDARuntime.cpp 34 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock,
  /frameworks/base/media/java/android/media/audiopolicy/
AudioPolicy.java 60 public AudioPolicyConfig getConfig() { return mConfig; }
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
BitmapUtils.java 122 Bitmap target = Bitmap.createBitmap(width, height, getConfig(bitmap));
131 private static Bitmap.Config getConfig(Bitmap bitmap) {
132 Bitmap.Config config = bitmap.getConfig();
158 Bitmap target = Bitmap.createBitmap(size, size, getConfig(bitmap));
  /frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
HelloComputeNDK.java 43 mBitmapIn.getConfig());
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 122 Bitmap target = Bitmap.createBitmap(width, height, getConfig(bitmap));
131 private static Bitmap.Config getConfig(Bitmap bitmap) {
132 Bitmap.Config config = bitmap.getConfig();
158 Bitmap target = Bitmap.createBitmap(size, size, getConfig(bitmap));
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapUtils.java 122 Bitmap target = Bitmap.createBitmap(width, height, getConfig(bitmap));
131 private static Bitmap.Config getConfig(Bitmap bitmap) {
132 Bitmap.Config config = bitmap.getConfig();
158 Bitmap target = Bitmap.createBitmap(size, size, getConfig(bitmap));

Completed in 1562 milliseconds

1 2 3 4 5 6 7 8 9