/external/chromium/chrome/browser/extensions/ |
extension_bookmarks_module.cc | 42 typedef QuotaLimitHeuristic::Config Config; 779 static const Config kShortLimitConfig; 780 static const Config kLongLimitConfig; 785 const Config BookmarksQuotaLimitFactory::kShortLimitConfig = { 790 const Config BookmarksQuotaLimitFactory::kLongLimitConfig = {
|
/external/mksh/src/ |
check.pl | 152 use Config; 260 if (($os eq 'VMS') || ($Config{perlpath} =~ m/$Config{_exe}$/i)) { 261 $new_env{'__perlname'} = $Config{perlpath}; 263 $new_env{'__perlname'} = $Config{perlpath} . $Config{_exe}; [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Allocation.java | 296 Bitmap.Config bc = b.getConfig(); [all...] |
/frameworks/ex/carousel/java/com/android/ex/carousel/ |
CarouselRS.java | 564 final int config = configs[i]; local 566 final boolean alpha = (config & CarouselController.STORE_CONFIG_ALPHA) != 0; 567 final boolean depthReads = (config & CarouselController.STORE_CONFIG_DEPTH_READS) != 0; 569 (config & CarouselController.STORE_CONFIG_DEPTH_WRITES) != 0; 918 Bitmap.Config config = bitmap.getConfig(); local [all...] |
CarouselController.java | 60 new int[] {0x00000000, 0xffffffff, 0x00000000}, 0, 3, 3, 1, Bitmap.Config.ARGB_4444); 92 new int[] {0}, 0, 1, 1, 1, Bitmap.Config.ARGB_4444);
|
/frameworks/base/core/jni/android/graphics/ |
Bitmap.cpp | 65 static FromColorProc ChooseFromColorProc(SkBitmap::Config config) {
66 switch (config) {
85 FromColorProc proc = ChooseFromColorProc(dstBitmap.config());
192 switch (src.config()) {
215 SkBitmap::Config config, jboolean isMutable) {
226 bitmap.setConfig(config, width, height);
242 SkBitmap::Config dstConfig, jboolean isMutable) {
329 return bitmap->config();
356 const SkBitmap::Config config = (SkBitmap::Config)p->readInt32(); local [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShortcutRepositoryImplLog.java | 75 private final Config mConfig; 87 public static ShortcutRepository create(Context context, Config config, 90 return new ShortcutRepositoryImplLog(context, config, sources, refresher, 99 ShortcutRepositoryImplLog(Context context, Config config, Corpora corpora, 102 mConfig = config; 107 mOpenHelper = new DbOpenHelper(context, name, DB_VERSION, config); 782 private final Config mConfig; 797 public DbOpenHelper(Context context, String name, int version, Config config) [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CanvasTest.java | 33 import android.graphics.Bitmap.Config; 89 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888); 127 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888); 156 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, 31, Config.ARGB_8888); [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
NinePatchDrawableTest.java | 43 import android.graphics.Bitmap.Config; 111 Bitmap bmp = Bitmap.createBitmap(9, 9, Config.ARGB_8888); 387 Bitmap bitmap = Bitmap.createBitmap(COLOR, width, height, Bitmap.Config.RGB_565);
|
/development/samples/Home/src/com/example/android/home/ |
Home.java | 648 final Bitmap.Config c = 650 Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
|
/external/skia/tests/ |
BitmapCopyTest.cpp | 9 // these are in the same order as the SkBitmap::Config enum 18 gConfigName[src.config()], src.isOpaque(), 19 gConfigName[dst.config()], dst.isOpaque()); 23 static bool canHaveAlpha(SkBitmap::Config config) { 24 return config != SkBitmap::kRGB_565_Config; 29 SkBitmap::Config dstConfig) { 38 if (canHaveAlpha(bitmap.config()) && canHaveAlpha(dstConfig)) { 44 REPORTER_ASSERT(reporter, dst.config() == dstConfig); 55 REPORTER_ASSERT(reporter, dst.config() == dstConfig) [all...] |
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/ |
GameView.java | 28 import android.graphics.Bitmap.Config;
458 bmp = Bitmap.createBitmap(w, h, Config.ARGB_8888);
|
/packages/apps/Browser/src/com/android/browser/widget/ |
BookmarkThumbnailWidgetService.java | 27 import android.graphics.Bitmap.Config; 252 // RemoteViews require a valid bitmap config 254 options.inPreferredConfig = Config.ARGB_8888;
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ShortcutIntentBuilder.java | 312 Bitmap icon = Bitmap.createBitmap(mIconSize, mIconSize, Bitmap.Config.ARGB_8888); 348 Bitmap icon = Bitmap.createBitmap(mIconSize, mIconSize, Bitmap.Config.ARGB_8888);
|
/packages/apps/Gallery/src/com/android/camera/ |
Util.java | 166 Bitmap.Config.ARGB_8888); 323 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
ManageCachePage.java | 219 public void onConfigurationChanged(Configuration config) { 294 Config.ManageCachePage config = Config.ManageCachePage.get(activity); local 296 mSelectionManager, config.cachePinSize, config.cachePinMargin); 298 config.slotViewSpec, config.labelSpec);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
ImageUtils.java | 108 Bitmap.Config.ARGB_8888); 249 overlayBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
|
/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
TextureTestRenderer.java | 77 mBitmap = Bitmap.createBitmap(colors, 4, 4, Bitmap.Config.ARGB_8888); 145 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
|
/cts/tests/tests/text/src/android/text/style/cts/ |
ImageSpanTest.java | 106 Bitmap b = Bitmap.createBitmap(color, width, height, Bitmap.Config.RGB_565);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
FingerPaint.java | 78 mBitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
Sensors.java | 88 mBitmap = Bitmap.createBitmap(w, h, Bitmap.Config.RGB_565);
|
/external/replicaisland/src/com/replica/replicaisland/ |
TextureLibrary.java | 58 sBitmapOptions.inPreferredConfig = Bitmap.Config.RGB_565;
|
/external/skia/bench/ |
BitmapBench.cpp | 100 BitmapBench(void* param, bool isOpaque, SkBitmap::Config c, 138 fName.appendf("_%s%s", gConfigName[fBitmap.config()],
|
/external/skia/gm/ |
shadertext.cpp | 8 static void makebm(SkBitmap* bm, SkBitmap::Config config, int w, int h) { 9 bm->setConfig(config, w, h);
|
/external/skia/include/gpu/ |
SkGr.h | 110 * Convert the SkBitmap::Config to the corresponding PixelConfig, or 113 static GrPixelConfig BitmapConfig2PixelConfig(SkBitmap::Config, 117 return BitmapConfig2PixelConfig(bm.config(), bm.isOpaque());
|