HomeSort by relevance Sort by last modified time
    Searched refs:Config (Results 176 - 200 of 414) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 140 SkBitmap::Config config = decodedBitmap->config(); local
141 if (config == SkBitmap::kARGB_8888_Config) {
143 } else if (config == SkBitmap::kARGB_4444_Config) {
145 } else if (config == SkBitmap::kRGB_565_Config) {
152 // and decodes this block to appropriate color-space as per config object.
153 static bool webp_idecode(SkStream* stream, WebPDecoderConfig& config) {
154 WebPIDecoder* idec = WebPIDecode(NULL, NULL, &config);
156 WebPFreeDecBuffer(&config.output)
268 SkBitmap::Config config = this->getPrefConfig(k32Bit_SrcDepth, hasAlpha); local
331 WebPDecoderConfig config; local
371 WebPDecoderConfig config; local
461 const SkBitmap::Config config = bm.getConfig(); local
    [all...]
SkImageDecoder_libpng.cpp 78 SkBitmap::Config *config, bool *hasAlpha, bool *doDither,
141 SkASSERT(bm->config() == SkBitmap::kARGB_8888_Config);
158 static bool canUpscalePaletteToConfig(SkBitmap::Config dstConfig,
281 SkBitmap::Config config; local
286 if (getBitmapConfig(png_ptr, info_ptr, &config, &hasAlpha,
305 decodedBitmap->setConfig(config, sampler.scaledWidth(),
329 SkBitmap::kIndex8_Config == config ?
355 if (SkBitmap::kIndex8_Config == config && 1 == sampleSize)
643 SkBitmap::Config config; local
1013 SkBitmap::Config config = bitmap.getConfig(); local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.h 30 class Config;
224 Context(const egl::Config *config, const gl::Context *shareContext);
454 const egl::Config *const mConfig;
536 gl::Context *glCreateContext(const egl::Config *config, const gl::Context *shareContext);
  /external/webkit/Source/WebKit/android/
RenderSkinNinePatch.cpp 17 #include "config.h"
51 SkBitmap::Config prefConfig = SkBitmap::kNo_Config;
  /external/webkit/Source/WebKit/android/plugins/
SkANP.cpp 26 // must include config.h first for webkit to fiddle with new/delete
27 #include "config.h"
61 SkBitmap::Config config = SkBitmap::kNo_Config; local
65 config = SkBitmap::kARGB_8888_Config;
68 config = SkBitmap::kRGB_565_Config;
74 dst->setConfig(config, src.width, src.height, src.rowBytes);
85 switch (src.config()) {
93 SkDebugf("SkANP::SetBitmap - unsupported src.config %d\n", src.config());
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
config.py 33 # common/config/ports.py .
58 class Config(object):
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMutateActivity.java 71 mBitmap1 = Bitmap.createBitmap(PATTERN_SIZE, PATTERN_SIZE, Bitmap.Config.ARGB_8888);
BitmapsAlphaActivity.java 57 opts.inPreferredConfig = Bitmap.Config.ARGB_8888;
TextGammaActivity.java 50 Bitmap.Config.ARGB_8888);
ThinPatchesActivity.java 58 mTexture = Bitmap.createBitmap(4, 3, Bitmap.Config.ARGB_8888);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ImageCacheRequest.java 55 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
DoodleFilter.java 57 Bitmap bitmap = Bitmap.createBitmap(src.width(), src.height(), Bitmap.Config.ARGB_8888);
  /packages/apps/Phone/src/com/android/phone/
BitmapUtils.java 116 Bitmap filtered = Bitmap.createBitmap(in, width, height, Bitmap.Config.ARGB_8888);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AppsCorpus.java 41 public AppsCorpus(Context context, Config config, Source appsSource) {
42 super(context, config, appsSource);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
RankAwarePromoterTest.java 41 mPromoter = new RankAwarePromoter(new Config(mContext){
ShouldQueryStrategyTest.java 33 mShouldQuery = new ShouldQueryStrategy(new Config(getContext()){
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlaysAdapter.java 107 mGenericBitmap.getHeight(), Bitmap.Config.ARGB_8888);
  /cts/tests/tests/graphics/src/android/graphics/cts/
SweepGradientTest.java 30 import android.graphics.Bitmap.Config;
51 mBitmap = Bitmap.createBitmap(SIZE, SIZE, Config.ARGB_8888);
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_runner.cc 108 WebSocketExperimentTask::Config* config; local
109 WebSocketExperimentTask::Config task_config;
112 config = &config_.ws_config[STATE_RUN_WS - STATE_RUN_WS];
113 *config = task_config;
114 config->url =
116 config->ws_location =
118 config->http_url =
121 config = &config_.ws_config[STATE_RUN_WSS - STATE_RUN_WS];
122 *config = task_config
    [all...]
  /external/skia/samplecode/
SampleEncode.cpp 20 static void make_image(SkBitmap* bm, SkBitmap::Config config, int configIndex) {
37 bm->setConfig(config, width, height);
38 switch (config) {
77 static const SkBitmap::Config gConfigs[] = {
101 static void make_name(SkString* name, int config, int ext) {
103 name->append(gConfigLabels[config]);
  /external/skia/src/ports/
SkImageRef_ashmem.cpp 27 SkBitmap::Config config,
29 : SkImageRef(stream, config, sampleSize) {
120 SkBitmap* bitmap, SkBitmap::Config config,
124 return this->INHERITED::onDecode(codec, stream, bitmap, config, mode);
130 bool success = this->INHERITED::onDecode(codec, stream, bitmap, config,
  /frameworks/base/media/libstagefright/codecs/aacenc/
Android.mk 3 include frameworks/base/media/libstagefright/codecs/common/Config.mk
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
RgbPlayerActivity.java 134 ? Bitmap.Config.RGB_565
135 : Bitmap.Config.ARGB_8888);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 155 Bitmap.Config.ARGB_8888);
181 Bitmap.Config.ARGB_8888);
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
IconLoader.java 259 return Bitmap.createBitmap(pixels, width, height, Bitmap.Config.ARGB_8888);
322 Bitmap.Config.ARGB_8888);

Completed in 665 milliseconds

1 2 3 4 5 6 78 91011>>