HomeSort by relevance Sort by last modified time
    Searched refs:Config (Results 1 - 25 of 573) 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);
178 Bitmap bitmap = Bitmap.createBitmap(colors, 10, 10, Config.RGB_565);
183 assertEquals(Config.RGB_565, ret.getConfig());
195 mBitmap = Bitmap.createBitmap(new int[100 * 100], 100, 100, Config.ARGB_8888);
201 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
208 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
239 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() {}
  /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...]
  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 16 #include <mcld/Config/Config.h>
  /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/legacy/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/legacy/src/images/
SkBitmapRegionDecoder.cpp 4 SkBitmap::Config pref, int sampleSize) {
  /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) {
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 21 bool SkImageDecoder::DecodeFile(const char file[], SkBitmap*, SkBitmap::Config,
26 bool SkImageDecoder::decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode) {
30 bool SkImageDecoder::DecodeStream(SkStream*, SkBitmap*, SkBitmap::Config, SkImageDecoder::Mode,
35 bool SkImageDecoder::DecodeMemory(const void*, size_t, SkBitmap*, SkBitmap::Config,
  /frameworks/compile/mclinker/include/mcld/Config/
Config.h 1 //===- Config.h.in --------------------------------------------------------===//
17 #include <llvm/Config/config.h>
  /frameworks/compile/mclinker/
mcld-host-build.mk 4 -include $(MCLD_ROOT_PATH)/include/mcld/Config/Config.h \
  /external/skia/include/images/
SkImageRef_GlobalPool.h 18 SkImageRef_GlobalPool(SkStream*, SkBitmap::Config, int sampleSize = 1);
50 SkBitmap* bitmap, SkBitmap::Config config,
SkImageRef.h 34 @param config The preferred config of the decoded bitmap.
37 SkImageRef(SkStream*, SkBitmap::Config config, int sampleSize = 1, SkBaseMutex* mutex = NULL);
68 SkBitmap::Config, SkImageDecoder::Mode);
91 SkBitmap::Config fConfig;
  /external/skia/legacy/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/glrenderer/
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() {
  /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...]
  /external/skia/legacy/src/opts/
SkBlitRow_opts_none.cpp 31 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig,
41 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig,
  /external/skia/legacy/src/ports/
SkImageRef_ashmem.h 22 SkImageRef_ashmem(SkStream*, SkBitmap::Config, int sampleSize = 1);
35 SkBitmap* bitmap, SkBitmap::Config config,

Completed in 729 milliseconds

1 2 3 4 5 6 7 8 91011>>