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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
Bitmap_ConfigTest.java 20 import android.graphics.Bitmap.Config;
25 assertEquals(Config.ALPHA_8, Config.valueOf("ALPHA_8"));
26 assertEquals(Config.RGB_565, Config.valueOf("RGB_565"));
27 assertEquals(Config.ARGB_4444, Config.valueOf("ARGB_4444"));
28 assertEquals(Config.ARGB_8888, Config.valueOf("ARGB_8888"));
32 Config[] config = Config.values() local
    [all...]
BitmapTest.java 29 import android.graphics.Bitmap.Config;
98 mBitmap.copy(Config.RGB_565, false);
104 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
105 Bitmap bitmap = mBitmap.copy(Config.ARGB_8888, false);
176 Bitmap bitmap = Bitmap.createBitmap(colors, 10, 10, Config.RGB_565);
181 assertEquals(Config.RGB_565, ret.getConfig());
193 mBitmap = Bitmap.createBitmap(new int[100 * 100], 100, 100, Config.ARGB_8888);
199 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
206 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
237 mBitmap = Bitmap.createBitmap(new int[100 * 100], 100, 100, Config.ARGB_8888)
    [all...]
  /frameworks/base/core/java/android/util/
Config.java 24 public final class Config {
25 /** @hide */ public Config() {}
  /frameworks/compile/mclinker/lib/Support/
FileSystem.cpp 13 #include <llvm/Config/config.h>
  /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::NoValue());
54 int cmp = Config::Compare(key, root_->key_);
60 Node* node = new Node(key, Config::NoValue());
68 template<typename Config, class Allocator>
69 void SplayTree<Config, Allocator>::InsertInternal(int cmp, Node* node) {
83 template<typename Config, class Allocator
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
DefaultRetryScheme.java 21 import android.util.Config;
30 private static final boolean LOCAL_LOGV = DEBUG ? Config.LOGD : Config.LOGV;
  /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/core/
SkBlitMask.h 18 * Returns true if the device config and mask format were supported.
52 * May return NULL if config or format are not supported.
54 static ColorProc ColorFactory(SkBitmap::Config, SkMask::Format, SkColor);
60 static ColorProc PlatformColorProcs(SkBitmap::Config, SkMask::Format, SkColor);
79 * May return NULL if config or format are not supported.
81 static RowProc RowFactory(SkBitmap::Config, SkMask::Format, RowFlags);
87 static RowProc PlatformRowProcs(SkBitmap::Config, SkMask::Format, RowFlags);
  /external/skia/src/images/
SkBitmapRegionDecoder.cpp 4 SkBitmap::Config pref, int sampleSize) {
  /frameworks/compile/mclinker/include/mcld/Config/
Targets.def 1 /*===- llvm/Config/Targets.def - LLVM Target Architectures ------*- C++ -*-===*\
30 #include <llvm/Config/Targets.def>
  /external/skia/include/images/
SkImageDecoder.h 110 virtual void inspect(int index, SkBitmap::Config config, int width, int height) {}
119 /** This optional table describes the caller's preferred config based on
123 pref[] table, which contains the caller's preferred config for that
130 config is actually returned, as it may not be able to support the
144 void setPrefConfigTable(const SkBitmap::Config pref[6]);
181 only the bitmap's width/height/config need be set. If kDecodePixels_Mode
185 kDecodeBounds_Mode, //!< only return width/height/config in bitmap
196 * decoding, the function converts the decoded config in bitmap
202 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false)
    [all...]
SkImageRef.h 34 @param config The preferred config of the decoded bitmap.
37 SkImageRef(SkStream*, SkBitmap::Config config, int sampleSize = 1);
71 SkBitmap::Config, SkImageDecoder::Mode);
93 SkBitmap::Config fConfig;
SkImageRef_GlobalPool.h 18 SkImageRef_GlobalPool(SkStream*, SkBitmap::Config, int sampleSize = 1);
56 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 20 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 44 private ArrayList<Config> mConfigs = new ArrayList<Config>();
56 Config config = ConfigFactory.getConfig(plugInName); local
57 if (null != config) {
58 mConfigs.add(config);
63 private void register(Config config) throws Exception {
65 config.getInfoOfRegistration(),
66 config.getMimeType())
    [all...]
Config.java 21 public interface Config {
  /external/skia/src/opts/
SkBlitRow_opts_none.cpp 31 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig,
41 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig,
  /external/skia/src/ports/
SkImageRef_ashmem.h 22 SkImageRef_ashmem(SkStream*, SkBitmap::Config, int sampleSize = 1);
35 SkBitmap* bitmap, SkBitmap::Config config,
  /external/compiler-rt/
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...]
  /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...]

Completed in 683 milliseconds

1 2 3 4 5 6 7 8 91011>>