Searched refs:Config (Results 1 - 25 of 143) sorted by relevance

123456

/frameworks/base/core/java/android/util/
H A DConfig.java24 public final class Config { class
25 /** @hide */ public Config() {} method in class:Config
/frameworks/compile/mclinker/include/mcld/Support/
H A DSystemUtils.h16 #include <mcld/Config/Config.h>
H A DRegionFactory.h14 #include <mcld/Config/Config.h>
H A DMemoryRegion.h15 #include <mcld/Config/Config.h>
/frameworks/compile/mclinker/include/mcld/Config/
H A DConfig.h1 //===- Config.h.in --------------------------------------------------------===//
17 #include <llvm/Config/config.h>
H A DTargets.def1 /*===- llvm/Config/Targets.def - MCLD Target Architectures ------*- C++ -*-===*\
31 #include <llvm/Config/Targets.def>
/frameworks/compile/mclinker/
H A Dmcld-host-build.mk4 -include $(MCLD_ROOT_PATH)/include/mcld/Config/Config.h \
H A Dmcld-device-build.mk11 -include $(MCLD_ROOT_PATH)/include/mcld/Config/Config.h \
/frameworks/compile/mclinker/lib/Core/
H A DLinkerConfig.cpp10 #include <mcld/Config/Config.h>
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java27 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
[all...]
H A DGraphicsPerformanceTests.java93 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
[all...]
H A DThreadBitmapTest.java41 b = Bitmap.createBitmap(300, 300, Bitmap.Config.RGB_565);
H A DBitmapFactoryTest.java34 new int[] { Color.BLUE }, 1, 1, Bitmap.Config.RGB_565);
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocationFactory.h14 #include <mcld/Config/Config.h>
/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp9 #include <mcld/Config/Config.h>
H A Draw_ostream.cpp9 #include <mcld/Config/Config.h>
/frameworks/base/media/tests/omxjpegdecoder/
H A Domx_jpeg_decoder.h54 void configBitmapSize(SkBitmap* bm, SkBitmap::Config pref, int width,
56 SkBitmap::Config getColorSpaceConfig(SkBitmap::Config pref);
/frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
H A DFountain_v11.java29 import android.util.Config;
45 private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
H A DRSTest_v11.java29 import android.util.Config;
45 private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java183 * Config}, without affecting the underlying allocation backing the bitmap.
205 * @see #setConfig(Config)
207 public void reconfigure(int width, int height, Config config) {
225 * <p>Convenience method for calling {@link #reconfigure(int, int, Config)}
229 * the view system, see {@link #reconfigure(int, int, Config)} for more
232 * @see #reconfigure(int, int, Config)
234 * @see #setConfig(Config)
241 * <p>Convenience method for calling {@link #reconfigure(int, int, Config)}
245 * the view system, see {@link #reconfigure(int, int, Config)} for more
248 * @see #reconfigure(int, int, Config)
384 public enum Config { enum in class:Bitmap
450 Config(int ni) { method in class:Bitmap.Config
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
H A DMffTestCase.java46 MffContext.Config config = new MffContext.Config();
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h15 #include <mcld/Config/Config.h>
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameImage2D.java117 Bitmap.Config config = bitmap.getConfig();
121 if (config != Bitmap.Config.ARGB_8888) {
122 result = bitmap.copy(Bitmap.Config.ARGB_8888, false);
170 Bitmap.Config config = Bitmap.Config.ARGB_8888;
H A DMffContext.java50 public static class Config { class in class:MffContext
135 init(context, new Config());
154 public MffContext(Context context, Config config) {
339 private void init(Context context, Config config) {
347 private void fetchDummySurfaceView(Context context, Config config) {
355 private void determineGLSupport(Context context, Config config) {
367 private void determineCameraSupport(Config config) {
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.cpp43 static const SkBitmap::Config gNo565Pref[] = {

Completed in 517 milliseconds

123456