/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | struct_field_simple.rscript | 24 struct Simple simple; 30 rsDebug("simple.I ", simple.I); 32 rsDebug("simple.L.lo", (unsigned)simple.L & ~0U); 34 rsDebug("simple.L.hi", (unsigned)((ulong)simple.L >> 32)); 36 _RS_ASSERT(simple.I == argI); 37 _RS_ASSERT(simple.L == argL);
|
D | UT_struct_field_simple.java | 32 ScriptField_Simple.Item simple = new ScriptField_Simple.Item(); in run() local 35 simple.I = I; in run() 36 simple.L = L; in run() 37 s.set_simple(simple); in run()
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | struct_field_simple.rscript | 26 struct Simple simple; 32 rsDebug("simple.I ", simple.I); 34 rsDebug("simple.L.lo", (unsigned)simple.L & ~0U); 36 rsDebug("simple.L.hi", (unsigned)((ulong)simple.L >> 32)); 38 _RS_ASSERT(simple.I == argI); 39 _RS_ASSERT(simple.L == argL);
|
D | UT_struct_field_simple.java | 34 ScriptField_Simple.Item simple = new ScriptField_Simple.Item(); in run() local 37 simple.I = I; in run() 38 simple.L = L; in run() 39 s.set_simple(simple); in run()
|
/frameworks/base/tools/hoststubgen/scripts/ |
D | dump-jar | 50 simple=0 62 simple=1 77 if (( $simple )) ; then 93 if (( $simple )) ; then 144 if ! (( $simple )) ; then
|
/frameworks/av/services/camera/libcameraservice/device3/ |
D | DistortionMapper.h | 92 DistortionMapperInfo *mapperInfo, bool clamp, bool simple = true); 104 DistortionMapperInfo *mapperInfo, bool clamp, bool simple = true); 116 const DistortionMapperInfo *mapperInfo, bool clamp, bool simple = true) const; 128 const DistortionMapperInfo *mapperInfo, bool clamp, bool simple = true) const; 199 const DistortionMapperInfo *mapperInfo, bool clamp, bool simple) const;
|
D | DistortionMapper.cpp | 272 DistortionMapperInfo *mapperInfo, bool clamp, bool simple) { in mapRawToCorrected() argument 275 if (simple) return mapRawToCorrectedSimple(coordPairs, coordCount, mapperInfo, clamp); in mapRawToCorrected() 353 DistortionMapperInfo *mapperInfo, bool clamp, bool simple) { in mapRawRectToCorrected() argument 364 mapRawToCorrected(coords, 2, mapperInfo, clamp, simple); in mapRawRectToCorrected() 377 const DistortionMapperInfo *mapperInfo, bool clamp, bool simple) const { in mapCorrectedToRaw() 378 return mapCorrectedToRawImpl(coordPairs, coordCount, mapperInfo, clamp, simple); in mapCorrectedToRaw() 383 const DistortionMapperInfo *mapperInfo, bool clamp, bool simple) const { in mapCorrectedToRawImpl() 386 if (simple) return mapCorrectedToRawImplSimple(coordPairs, coordCount, mapperInfo, clamp); in mapCorrectedToRawImpl() 439 const DistortionMapperInfo *mapperInfo, bool clamp, bool simple) const { in mapCorrectedRectToRaw() 451 mapCorrectedToRaw(coords, 2, mapperInfo, clamp, simple); in mapCorrectedRectToRaw()
|
/frameworks/av/services/camera/libcameraservice/fuzzer/ |
D | DistortionMapperFuzzer.cpp | 61 bool simple = fdp.ConsumeBool(); in LLVMFuzzerTestOneInput() local 69 m.mapCorrectedToRaw(input.data(), input.size()/2, mapperInfo, clamp, simple); in LLVMFuzzerTestOneInput()
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/simple/ |
D | AnotherSimpleTest.java | 17 package android.test.suitebuilder.examples.simple;
|
D | SimpleTest.java | 17 package android.test.suitebuilder.examples.simple;
|
/frameworks/layoutlib/create/tests/res/mock_data/mock_android/data/ |
D | anotherDataFile | 1 A simple data file that should *not* be copied to the output jar.
|
D | dataFile | 1 A simple data file that should be copied to the output jar unchanged.
|
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/ |
D | BrightnessMappingStrategyTest.java | 174 BrightnessMappingStrategy simple = BrightnessMappingStrategy.create(mContext, ddc, in testSimpleStrategyMappingAtControlPoints() local 176 assertNotNull("BrightnessMappingStrategy should not be null", simple); in testSimpleStrategyMappingAtControlPoints() 178 assertEquals(DISPLAY_LEVELS[i], simple.getBrightness(LUX_LEVELS[i]), TOLERANCE); in testSimpleStrategyMappingAtControlPoints() 186 BrightnessMappingStrategy simple = BrightnessMappingStrategy.create(mContext, ddc, in testSimpleStrategyMappingBetweenControlPoints() local 188 assertNotNull("BrightnessMappingStrategy should not be null", simple); in testSimpleStrategyMappingBetweenControlPoints() 191 final float brightness = simple.getBrightness(lux); in testSimpleStrategyMappingBetweenControlPoints() 706 BrightnessMappingStrategy simple = BrightnessMappingStrategy.create(mContext, ddc, mode, in testAutoBrightnessModeAndPreset() local 708 assertNotNull("BrightnessMappingStrategy should not be null", simple); in testAutoBrightnessModeAndPreset() 710 assertEquals(DISPLAY_LEVELS[i], simple.getBrightness(LUX_LEVELS[i]), TOLERANCE); in testAutoBrightnessModeAndPreset()
|
/frameworks/base/startop/apps/ColorChanging/ |
D | README.md | 1 This directory contains a simple Android app that is meant to help in
|
/frameworks/rs/script_api/ |
D | rs_time.spec | 26 simple: int 35 simple: long
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/docs/ |
D | extending.md | 12 simple changes to the Shell library base modules which are shared by all products
|
/frameworks/base/tools/aapt2/ |
D | formats.md | 7 consumed by the AAPT2 link phase. It is a simple container format for storing compiled PNGs, 12 The file starts with a simple header. All multi-byte fields are little-endian.
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/kotlin/ |
D | FlowUtilTests.kt | 53 fun simple() = runBlocking { in <lambda>() method 158 fun simple() = runBlocking { in <lambda>() method in com.android.systemui.util.kotlin.SetChangesFlowTest 210 fun simple() = runBlocking { in <lambda>() method
|
/frameworks/native/cmds/bugreportz/ |
D | readme.md | 4 the simple protocol defined below.
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | DistortionMapperTest.cpp | 220 int32_t* activeArray, DistortionMapper &m, bool clamp, bool simple) { in RandomTransformTest() argument 246 res = m.mapCorrectedToRaw(randCoords.data(), randCoords.size() / 2, mapperInfo, clamp, simple); in RandomTransformTest() 251 res = m.mapRawToCorrected(randCoords.data(), randCoords.size() / 2, mapperInfo, clamp, simple); in RandomTransformTest()
|
/frameworks/base/media/mca/samples/CameraEffectsRecordingSample/res/raw/ |
D | cameraeffectsrecordingsample.graph | 15 // A simple graph that displays the raw camera stream.
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
D | FastDataTest.java | 142 final String simple = new String(buf); in testUTF_Bounds() local 143 out.writeUTF(simple); in testUTF_Bounds() 144 out.writeInternedUTF(simple); in testUTF_Bounds()
|
/frameworks/base/packages/SystemUI/docs/ |
D | falsing.md | 75 all within some small x & y region ("touch slop"). Useful for only the most simple of scenarios, 93 in fact look like a simple tap. 97 the gesture fails to validate as a simple tap. 230 `FalsingBeliefListener` is a simple one method interface that will be called 234 universal signal that will save the phone owner a lot of accidents. A simple
|
/frameworks/base/startop/apps/test/ |
D | README.md | 1 This directory contains a simple Android app that is meant to help in doing
|
/frameworks/base/core/java/android/view/contentcapture/ |
D | ViewNode.java | 1044 ViewNodeText(Parcel in, boolean simple) { in ViewNodeText() argument 1049 if (!simple) { in ViewNodeText() 1059 void writeToParcel(Parcel out, boolean simple) { in writeToParcel() argument 1065 if (!simple) { in writeToParcel()
|