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

1 2 34 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
OvalShapeTest.java 26 import android.graphics.Bitmap.Config;
58 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888);
  /external/skia/src/images/
SkImageRef_GlobalPool.cpp 10 SkBitmap::Config config,
12 : SkImageRef(stream, config, sampleSize) {
25 SkBitmap* bitmap, SkBitmap::Config config,
27 if (!this->INHERITED::onDecode(codec, stream, bitmap, config, mode)) {
SkImageDecoder_libpvjpeg.cpp 15 SkBitmap::Config pref, Mode);
76 SkBitmap::Config prefConfig, SkImageDecoder::Mode mode) {
141 SkBitmap::Config prefConfig, Mode mode)
SkImageRef.cpp 16 SkImageRef::SkImageRef(SkStream* stream, SkBitmap::Config config,
22 fConfig = config;
30 this, config, (int)stream->getLength());
53 SkASSERT(SkBitmap::kNo_Config != fBitmap.config());
55 bitmap->setConfig(fBitmap.config(), fBitmap.width(), fBitmap.height());
79 SkBitmap* bitmap, SkBitmap::Config config,
81 return codec->decode(stream, bitmap, config, mode);
91 /* As soon as we really know our config, we record it, so that o
    [all...]
  /frameworks/base/media/tests/omxjpegdecoder/
jpeg_decoder_bench.cpp 55 SkBitmap::Config prefConfig = SkBitmap::kARGB_8888_Config;
72 SkBitmap::Config prefConfig = SkBitmap::kARGB_8888_Config;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetUtils.java 28 import android.graphics.Bitmap.Config;
71 sStackPhotoWidth, sStackPhotoHeight, Config.ARGB_8888);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
AbstractGoogleSource.java 19 import com.android.quicksearchbox.Config;
108 public int getMaxShortcuts(Config config) {
109 return config.getMaxShortcutsPerWebSource();
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
BlendingPromoterTest.java 119 ListSuggestionCursorNoDuplicates promoted = promote(config(), shortcuts, maxPromoted);
128 Config config = config(maxShortcutsPerWebSource, maxShortcutsPerNonWebSource); local
130 return promote(config, shortcuts, maxPromoted);
133 private ListSuggestionCursorNoDuplicates promote(Config config, SuggestionCursor shortcuts,
135 ShortcutPromoter promoter = new ShortcutPromoter(config,
136 new RankAwarePromoter(config, null, null), null);
142 private Config config() method in class:BlendingPromoterTest
146 private Config config(final int maxShortcutsPerWebSource, method in class:BlendingPromoterTest
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
config_unittest.py 39 import config namespace
65 config.clear_cached_configuration()
73 return config.Config(e, fs)
147 # global configuration cache in config.py.
150 c = config.Config(e, fs)
180 c = config.Config(executive.Executive(), filesystem.FileSystem())
186 c = config.Config(executive.Executive(), filesystem.FileSystem()
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
TextureTest.java 20 import android.graphics.Bitmap.Config;
135 Config config = Config.ARGB_8888; local
136 mBitmap = Bitmap.createBitmap(47, 42, config);
199 Config config = Config.ARGB_8888; local
200 Bitmap bitmap = Bitmap.createBitmap(47, 42, config);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 29 import android.graphics.Bitmap.Config;
71 Bitmap b = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
80 Bitmap combinedBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
PictureTest.java 99 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
109 bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
116 bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
AvoidXfermodeTest.java 29 import android.graphics.Bitmap.Config;
67 Bitmap b = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
CornerPathEffectTest.java 32 import android.graphics.Bitmap.Config;
67 Bitmap bitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapPixels.java 141 mBitmap1 = Bitmap.createBitmap(N, N, Bitmap.Config.ARGB_8888);
142 mBitmap2 = Bitmap.createBitmap(N, N, Bitmap.Config.RGB_565);
143 mBitmap3 = Bitmap.createBitmap(N, N, Bitmap.Config.ARGB_4444);
  /external/chromium/chrome/browser/extensions/
extensions_quota_service.cc 80 void QuotaLimitHeuristic::Bucket::Reset(const Config& config,
82 num_tokens_ = config.refill_token_count;
83 expiration_ = start + config.refill_interval;
86 QuotaLimitHeuristic::QuotaLimitHeuristic(const Config& config,
88 : config_(config), bucket_mapper_(map) {
107 const base::TimeDelta& sustain, const Config& config, BucketMapper* map)
108 : QuotaLimitHeuristic(config, map)
    [all...]
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.cc 36 const Config& config, URLFetcher::Delegate* delegate) {
45 new URLFetcher(config.http_url, URLFetcher::GET, delegate);
55 const Config& config, net::WebSocketDelegate* delegate) {
64 new net::WebSocket::Request(config.url,
65 config.ws_protocol,
66 config.ws_origin,
67 config.ws_location,
68 config.protocol_version
    [all...]
  /external/skia/include/core/
SkDevice.h 43 virtual SkDevice* newDevice(SkCanvas*, SkBitmap::Config, int width,
49 virtual SkDevice* newDevice(SkCanvas*, SkBitmap::Config, int width,
56 /** Construct a new device, extracting the width/height/config/isOpaque values from
96 /** Return the bitmap config of the device's pixels
98 SkBitmap::Config config() const { return fBitmap.getConfig(); } function in class:SkDevice
99 /** Returns true if the device's bitmap's config treats every pixels as
262 the pixels directly. Note: only the pixels field should be altered. The config/width/height/rowbytes
  /external/skia/src/animator/
SkDrawBitmap.cpp 67 SkDrawBitmap::SkDrawBitmap() : format((SkBitmap::Config) -1), height(-1),
97 SkASSERT(format != (SkBitmap::Config) -1);
101 fBitmap.setConfig((SkBitmap::Config) format, width, height, rowBytes);
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2UriObserverTests.java 23 import android.graphics.Bitmap.Config;
56 Bitmap favicon = Bitmap.createBitmap(16, 16, Config.ARGB_8888);
92 Bitmap favicon = Bitmap.createBitmap(16, 16, Config.ARGB_8888);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 20 import android.graphics.Bitmap.Config;
95 options.inPreferredConfig = Config.ARGB_8888;
115 Bitmap tile = Bitmap.createBitmap(length, length, Config.ARGB_8888);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
EventLogLogger.java 35 private final Config mConfig;
41 public EventLogLogger(Context context, Config config) {
43 mConfig = config;
56 protected Config getConfig() {
SearchableCorpusFactory.java 38 private final Config mConfig;
44 public SearchableCorpusFactory(Context context, Config config, SearchSettings settings,
47 mConfig = config;
63 protected Config getConfig() {
  /external/llvm/
Makefile 16 # 4. Build libs, which are needed by llvm-config.
17 # 5. Build llvm-config, which determines inter-lib dependencies for tools.
34 tools/llvm-config tools runtime docs unittests
44 include $(LEVEL)/Makefile.config
162 $(TopDistDir)/include/llvm/Config/config.h \
186 include/llvm/Config/config.h \
187 include/llvm/Config/Targets.def \
188 include/llvm/Config/AsmPrinters.def
    [all...]
  /frameworks/compile/libbcc/runtime/make/platform/
darwin_fat.mk 22 # Arch.<Config Name> - Set the target architecture on a per-config basis.
35 # be override on a per-config, per-arch, or per-config-and-arch basis using:
36 # <Option Name>.<Config Name> := ...
38 # <Option Name>.<Config Name>.<Arch Name> := ...

Completed in 974 milliseconds

1 2 34 5 6 7 8 91011>>