Searched refs:HARDWARE (Results 1 - 13 of 13) sorted by relevance
/frameworks/base/services/core/java/com/android/server/lights/ |
H A D | Light.java | 25 public static final int LIGHT_FLASH_HARDWARE = Flash.HARDWARE;
|
/frameworks/base/graphics/java/android/graphics/ |
H A D | Bitmap.java | 397 * is {@link Config#HARDWARE}. 400 if (getConfig() == Config.HARDWARE) { 531 HARDWARE (7); enum constant in enum:Bitmap.Config 536 null, ALPHA_8, null, RGB_565, ARGB_4444, ARGB_8888, RGBA_F16, HARDWARE 561 * @throws IllegalStateException if the bitmap's config is {@link Config#HARDWARE} 565 + "pixel access is not supported on Config#HARDWARE bitmaps"); 603 * @throws IllegalStateException if the bitmap's config is {@link Config#HARDWARE} 607 checkHardware("unable to copyPixelsFromBuffer, Config#HARDWARE bitmaps are immutable"); 637 if (getConfig() == Config.HARDWARE) { 654 * @throws IllegalArgumentException if config is {@link Config#HARDWARE} an [all...] |
H A D | BitmapFactory.java | 110 * {@link android.graphics.Bitmap.Config#HARDWARE}, 441 if (opts.inBitmap != null && opts.inBitmap.getConfig() == Bitmap.Config.HARDWARE) { 445 if (opts.inMutable && opts.inPreferredConfig == Bitmap.Config.HARDWARE) { 446 throw new IllegalArgumentException("Bitmaps with Config.HARDWARE cannot be " + 474 * is {@link android.graphics.Bitmap.Config#HARDWARE} 518 * is {@link android.graphics.Bitmap.Config#HARDWARE} 559 * is {@link android.graphics.Bitmap.Config#HARDWARE} 619 * is {@link android.graphics.Bitmap.Config#HARDWARE} 703 * is {@link android.graphics.Bitmap.Config#HARDWARE} 787 * is {@link android.graphics.Bitmap.Config#HARDWARE} [all...] |
H A D | BaseCanvas.java | 556 if (!isHardwareAccelerated() && bitmap.getConfig() == Bitmap.Config.HARDWARE) {
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | TaskSnapshotLoader.java | 78 options.inPreferredConfig = Config.HARDWARE;
|
/frameworks/base/core/java/android/app/ |
H A D | SharedElementCallback.java | 183 if (bitmap.getConfig() != Bitmap.Config.HARDWARE) {
|
H A D | ActivityOptions.java | 1420 final Bitmap hwBitmap = mThumbnail.copy(Config.HARDWARE, false /* isMutable */);
|
H A D | WallpaperManager.java | 463 options.inPreferredConfig = Bitmap.Config.HARDWARE; 831 * @see Bitmap.Config#HARDWARE
|
/frameworks/base/services/core/jni/ |
H A D | com_android_server_lights_LightsService.cpp | 84 flash != static_cast<jint>(Flash::HARDWARE)) {
|
/frameworks/base/core/java/android/os/ |
H A D | Build.java | 99 public static final String HARDWARE = getString("ro.hardware"); field in class:Build
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | ShadowKeyDrawable.java | 174 bitmap = bitmap.copy(Bitmap.Config.HARDWARE, false);
|
/frameworks/base/cmds/incident_helper/src/parsers/ |
H A D | SystemPropertiesParser.cpp | 145 ro.addSubMessage(SystemPropertiesProto::Ro::HARDWARE, &hardware);
|
/frameworks/base/core/tests/coretests/src/android/transition/ |
H A D | FadeTransitionTest.java | 149 assertEquals(Bitmap.Config.HARDWARE, bitmap.getConfig());
|
Completed in 472 milliseconds