/cts/tests/tests/graphics/src/android/graphics/cts/ |
Bitmap_ConfigTest.java | 20 import android.graphics.Bitmap.Config; 25 @TestTargetClass(Bitmap.Config.class) 34 assertEquals(Config.ALPHA_8, Config.valueOf("ALPHA_8")); 35 assertEquals(Config.RGB_565, Config.valueOf("RGB_565")); 36 assertEquals(Config.ARGB_4444, Config.valueOf("ARGB_4444")); 37 assertEquals(Config.ARGB_8888, Config.valueOf("ARGB_8888")) 46 Config[] config = Config.values(); local [all...] |
BitmapTest.java | 33 import android.graphics.Bitmap.Config; 106 args = {android.graphics.Bitmap.Config.class, boolean.class} 113 mBitmap.copy(Config.RGB_565, false); 119 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888); 120 Bitmap bitmap = mBitmap.copy(Config.ARGB_8888, false); 210 args = {int[].class, int.class, int.class, android.graphics.Bitmap.Config.class} 215 Bitmap bitmap = Bitmap.createBitmap(colors, 10, 10, Config.RGB_565); 220 assertEquals(Config.RGB_565, ret.getConfig()); 237 mBitmap = Bitmap.createBitmap(new int[100 * 100], 100, 100, Config.ARGB_8888); 243 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888) [all...] |
/frameworks/base/core/java/android/util/ |
Config.java | 24 public final class Config { 25 /** @hide */ public Config() {}
|
/external/v8/src/ |
splay-tree-inl.h | 37 template<typename Config, class Allocator> 38 SplayTree<Config, Allocator>::~SplayTree() { 44 template<typename Config, class Allocator> 45 bool SplayTree<Config, Allocator>::Insert(const Key& key, Locator* locator) { 48 root_ = new Node(key, Config::kNoValue); 54 int cmp = Config::Compare(key, root_->key_); 60 Node* node = new Node(key, Config::kNoValue); 68 template<typename Config, class Allocator> 69 void SplayTree<Config, Allocator>::InsertInternal(int cmp, Node* node) { 83 template<typename Config, class Allocator [all...] |
/external/chromium/chrome/browser/net/websocket_experiment/ |
websocket_experiment_runner.h | 30 class Config { 32 Config() 38 WebSocketExperimentTask::Config ws_config[6]; 67 Config config_;
|
/external/skia/src/images/ |
SkBitmapRegionDecoder.cpp | 4 SkBitmap::Config pref, int sampleSize) {
|
/external/skia/include/images/ |
SkImageDecoder.h | 117 virtual void inspect(int index, SkBitmap::Config config, int width, int height) {} 126 /** This optional table describes the caller's preferred config based on 130 pref[] table, which contains the caller's preferred config for that 137 config is actually returned, as it may not be able to support the 151 void setPrefConfigTable(const SkBitmap::Config pref[6]); 188 only the bitmap's width/height/config need be set. If kDecodePixels_Mode 192 kDecodeBounds_Mode, //!< only return width/height/config in bitmap 203 * decoding, the function converts the decoded config in bitmap 209 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false) [all...] |
SkImageRef.h | 41 @param config The preferred config of the decoded bitmap. 44 SkImageRef(SkStream*, SkBitmap::Config config, int sampleSize = 1); 78 SkBitmap::Config, SkImageDecoder::Mode); 100 SkBitmap::Config fConfig;
|
SkImageRef_GlobalPool.h | 25 SkImageRef_GlobalPool(SkStream*, SkBitmap::Config, int sampleSize = 1); 61 SkBitmap* bitmap, SkBitmap::Config config,
|
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
Config.h | 7 // Config.h: Defines the egl::Config class, describing the format, type 26 class Config 29 Config(D3DDISPLAYMODE displayMode, EGLint minSwapInterval, EGLint maxSwapInterval, D3DFORMAT renderTargetFormat, D3DFORMAT depthStencilFormat, EGLint multiSample); 52 EGLint mConformant; // Whether contexts created with this config are conformant 81 bool operator()(const Config *x, const Config *y) const; 82 bool operator()(const Config &x, const Config &y) const; 86 EGLint wantedComponentsSize(const Config &config) const [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
CanvasTexture.java | 21 import android.graphics.Bitmap.Config; 28 private final Config mConfig; 31 mConfig = Config.ARGB_8888;
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
AbstractPromoter.java | 25 private final Config mConfig; 27 protected AbstractPromoter(SuggestionFilter filter, Promoter next, Config config) { 30 mConfig = config; 44 protected Config getConfig() {
|
AbstractCorpus.java | 29 private final Config mConfig; 31 public AbstractCorpus(Context context, Config config) { 33 mConfig = config;
|
/cts/tests/tests/drm/src/android/drm/cts/ |
DRMTest.java | 48 private ArrayList<Config> mConfigs = new ArrayList<Config>(); 60 Config config = ConfigFactory.getConfig(plugInName); local 61 if (null != config) { 62 mConfigs.add(config); 67 private void register(Config config) throws Exception { 69 config.getInfoOfRegistration(), 70 config.getMimeType()) [all...] |
Config.java | 21 public interface Config {
|
/external/skia/src/ports/ |
SkImageRef_ashmem.h | 15 SkImageRef_ashmem(SkStream*, SkBitmap::Config, int sampleSize = 1); 27 SkBitmap* bitmap, SkBitmap::Config config,
|
/external/skia/include/core/ |
SkBlitRow.h | 20 config passed to the Factory. 39 static Proc Factory(unsigned flags, SkBitmap::Config); 97 typedef void (*Proc)(void* dst, size_t dstRB, SkBitmap::Config dstConfig, 103 static Proc Factory(SkBitmap::Config dstConfig, SkColor color); 108 static Proc PlatformProcs(SkBitmap::Config dstConfig, SkColor color);
|
/external/skia/include/gpu/ |
SkGpuDeviceFactory.h | 48 virtual SkDevice* newDevice(SkCanvas*, SkBitmap::Config, int width,
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
BitmapTest.java | 27 Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888); 28 Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565); 29 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); 55 assertTrue("getConfig", bm1.getConfig() == Bitmap.Config.ARGB_8888); 56 assertTrue("getConfig", bm2.getConfig() == Bitmap.Config.RGB_565); 57 assertTrue("getConfig", bm3.getConfig() == Bitmap.Config.ARGB_4444); 62 Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888); 64 Bitmap.Config.ARGB_8888); 87 Bitmap.Config.ARGB_8888); 112 Bitmap bm = Bitmap.createBitmap(colors, 10, 10, Bitmap.Config.RGB_565) 129 Bitmap.Config config = Bitmap.Config.ARGB_8888; local 155 Bitmap.Config config = Bitmap.Config.RGB_565; local 185 Bitmap.Config config = Bitmap.Config.ARGB_8888; local [all...] |
GraphicsPerformanceTests.java | 93 Bitmap.Config.RGB_565); 205 return Bitmap.createBitmap(7, 7, Bitmap.Config.RGB_565); 223 return Bitmap.createBitmap(15, 15, Bitmap.Config.RGB_565); 241 return Bitmap.createBitmap(31, 31, Bitmap.Config.RGB_565); 259 return Bitmap.createBitmap(63, 63, Bitmap.Config.RGB_565); 277 return Bitmap.createBitmap(127, 127, Bitmap.Config.RGB_565); 295 return Bitmap.createBitmap(319, 239, Bitmap.Config.RGB_565); 313 return Bitmap.createBitmap(319, 479, Bitmap.Config.RGB_565); 331 return Bitmap.createBitmap(8, 8, Bitmap.Config.RGB_565); 349 return Bitmap.createBitmap(16, 16, Bitmap.Config.RGB_565) [all...] |
/external/chromium/chrome/browser/extensions/ |
extensions_quota_service.h | 85 struct Config { 114 void Reset(const Config& config, const base::TimeTicks& start); 145 explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map); 155 const Config& config() { return config_; } function in class:QuotaLimitHeuristic 164 const Config config_; 176 explicit TimedLimit(const Config& config, BucketMapper* map [all...] |
/frameworks/compile/libbcc/runtime/ |
Makefile | 6 include make/config.mk 45 @echo " <platform name>-<config name>:" 46 @echo " build the libraries for a single platform config" 47 @echo " <platform name>-<config name>-<arch name>:" 48 @echo " build the libraries for a single config and arch" 126 # Per-Config Libraries 127 $(foreach config,$(Tmp.Configs),\ 128 $(call PerPlatformConfig_template,$(config))) 132 $(call Set,Tmp.Config,$(1)) 133 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name)/$(Tmp.Config)) [all...] |
/external/iproute2/ |
configure | 21 echo "TC_CONFIG_ATM:=y" >>Config 54 echo "TC_CONFIG_XT:=y" >>Config 63 if grep TC_CONFIG_XT Config > /dev/null 93 echo "TC_CONFIG_XT_OLD:=y" >>Config 102 if grep TC_CONFIG_XT Config > /dev/null 134 echo "TC_CONFIG_XT_OLD_H:=y" >>Config 141 if ! grep TC_CONFIG_XT Config > /dev/null 158 echo "IPT_LIB_DIR:=$dir/$TABLES" >> Config 166 echo "# Generated config based on" $INCLUDE >Config [all...] |
/cts/tests/tests/drm/src/android/drm/cts/configs/ |
FwdLockConfig.java | 21 import android.drm.cts.Config; 23 public class FwdLockConfig implements Config {
|
PassthruConfig.java | 21 import android.drm.cts.Config; 23 public class PassthruConfig implements Config {
|