/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/ |
D | ImageGoodnessFilterTest.java | 41 FrameValue sharpnessFrame = createFrame(FrameType.single(), new int[] { 1 }). in testAwfulPicture() 44 FrameValue oEFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testAwfulPicture() 46 FrameValue uEFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testAwfulPicture() 48 FrameValue colorFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testAwfulPicture() 50 FrameValue contrastFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testAwfulPicture() 69 FrameValue sharpnessFrame = createFrame(FrameType.single(), new int[] { 1 }). in testBadPicture() 72 FrameValue oEFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testBadPicture() 74 FrameValue uEFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testBadPicture() 76 FrameValue colorFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testBadPicture() 78 FrameValue contrastFrame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testBadPicture() [all …]
|
D | AverageFilterTest.java | 33 FrameValue frame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testAverageFilter() 44 FrameValue frame = createFrame(FrameType.single(), new int[] { 1 }).asFrameValue(); in testAverageFilter2()
|
D | IfElseFilterTest.java | 68 FrameValue conditionFrame = createFrame(FrameType.single(boolean.class), new int[] {1}). in testIfElseFilterTrue() 100 FrameValue conditionFrame = createFrame(FrameType.single(boolean.class), new int[] {1}). in testIfElseFilterFalse()
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | ContextCompat.java | 164 final File single; in getObbDirs() local 166 single = ContextCompatHoneycomb.getObbDir(context); in getObbDirs() 168 single = buildPath(Environment.getExternalStorageDirectory(), DIR_ANDROID, DIR_OBB, in getObbDirs() 171 return new File[] { single }; in getObbDirs() 224 final File single; in getExternalFilesDirs() local 226 single = ContextCompatFroyo.getExternalFilesDir(context, type); in getExternalFilesDirs() 228 single = buildPath(Environment.getExternalStorageDirectory(), DIR_ANDROID, DIR_DATA, in getExternalFilesDirs() 231 return new File[] { single }; in getExternalFilesDirs() 284 final File single; in getExternalCacheDirs() local 286 single = ContextCompatFroyo.getExternalCacheDir(context); in getExternalCacheDirs() [all …]
|
/frameworks/rs/scriptc/ |
D | rs_value_types.rsh | 107 * into a single 32 bit field with 32 bit alignment. 117 * into a single 64 bit field with 64 bit alignment. 127 * into a single 64 bit field with 64 bit alignment. 258 * A vector of two floats. These two floats are packed into a single 64 bit field 261 * A vector of two floats. These two floats are packed into a single 64 bit field 269 * A vector of three floats. These three floats are packed into a single 128 bit field 277 * A vector of four floats type. These four floats are packed into a single 128 bit field 285 * A vector of two doubles. These two double fields packed into a single 128 bit field 293 * A vector of three doubles. These three double fields packed into a single 256 bit field 301 * A vector of four doubles. These four double fields packed into a single 256 bit field [all …]
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | ResizeFilter.java | 35 .addInputPort("outputWidth", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature() 36 .addInputPort("outputHeight", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature() 37 .addInputPort("useMipmaps", Signature.PORT_OPTIONAL, FrameType.single(boolean.class)) in getSignature()
|
D | NewChromaHistogramFilter.java | 60 .addInputPort("huebins", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature() 61 .addInputPort("saturationbins", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature() 63 FrameType.single(int.class)) in getSignature() 64 .addInputPort("valuethreshold", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature()
|
D | CropFilter.java | 53 .addInputPort("cropRect", Signature.PORT_REQUIRED, FrameType.single(Quad.class)) in getSignature() 54 .addInputPort("outputWidth", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature() 55 .addInputPort("outputHeight", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature() 56 .addInputPort("useMipmaps", Signature.PORT_OPTIONAL, FrameType.single(boolean.class)) in getSignature()
|
D | ToStringFilter.java | 35 .addInputPort("object", Signature.PORT_REQUIRED, FrameType.single()) in getSignature() 36 .addOutputPort("string", Signature.PORT_REQUIRED, FrameType.single(String.class)) in getSignature()
|
D | ScaleFilter.java | 39 .addInputPort("scale", Signature.PORT_OPTIONAL, FrameType.single(float.class)) in getSignature() 40 .addInputPort("useMipmaps", Signature.PORT_OPTIONAL, FrameType.single(boolean.class)) in getSignature()
|
D | ThroughputFilter.java | 39 FrameType throughputType = FrameType.single(Throughput.class); in getSignature() 44 .addInputPort("period", Signature.PORT_OPTIONAL, FrameType.single(int.class)) in getSignature()
|
D | RotateFilter.java | 45 .addInputPort("rotateAngle", Signature.PORT_REQUIRED, FrameType.single(float.class)) in getSignature() 46 .addInputPort("sourceRect", Signature.PORT_OPTIONAL, FrameType.single(Quad.class)) in getSignature()
|
D | ViewFilter.java | 69 .addInputPort("scaleMode", Signature.PORT_OPTIONAL, FrameType.single(String.class)) in getSignature() 70 .addInputPort("flip", Signature.PORT_OPTIONAL, FrameType.single(boolean.class)); in getSignature()
|
D | StatsFilter.java | 64 FrameType floatT = FrameType.single(float.class); in getSignature() 67 .addInputPort("cropRect", Signature.PORT_OPTIONAL, FrameType.single(Quad.class)) in getSignature()
|
D | VariableSource.java | 43 .addOutputPort("value", Signature.PORT_REQUIRED, FrameType.single()) in getSignature()
|
D | ValueTarget.java | 55 .addInputPort("value", Signature.PORT_REQUIRED, FrameType.single()) in getSignature()
|
D | TextViewTarget.java | 48 .addInputPort("text", Signature.PORT_REQUIRED, FrameType.single(String.class)) in getSignature()
|
/frameworks/base/docs/html/design/auto/ |
D | index.jd | 52 <div class="auto-img-container-single"> 68 <div class="auto-img-container-single"> 84 <div class="auto-img-container-single"> 93 <div class="auto-img-container-single"> 108 <div class="auto-img-container-single"> 125 <div class="auto-img-container-single"> 135 <div class="auto-img-container-single"> 151 <div class="auto-img-container-single"> 160 <div class="auto-img-container-single">
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
D | ListUtils.java | 42 public static <T> boolean listElementsEqualTo(List<T> list, T single) { in listElementsEqualTo() argument 47 return (list.size() == 1 && list.contains(single)); in listElementsEqualTo()
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_value_types.jd | 518 <p> A vector of two chars. These two chars are packed into a single 16 bit field 532 <p> A vector of three chars. These three chars are packed into a single 32 bit field 546 <p> A vector of four chars. These four chars are packed into a single 32 bit field 560 <p> A vector of two doubles. These two double fields packed into a single 128 bit field 574 <p> A vector of three doubles. These three double fields packed into a single 256 bit field 588 <p> A vector of four doubles. These four double fields packed into a single 256 bit field 602 <p> A vector of two floats. These two floats are packed into a single 64 bit field 606 <p> A vector of two floats. These two floats are packed into a single 64 bit field 620 <p> A vector of three floats. These three floats are packed into a single 128 bit field 634 <p> A vector of four floats type. These four floats are packed into a single 128 bit field [all …]
|
/frameworks/base/core/tests/overlaytests/OverlayAppFirst/res/raw/ |
D | lorem_ipsum.txt | 1 Lorem ipsum: single overlay.
|
/frameworks/base/docs/html/training/multiscreen/ |
D | screensizes.jd | 163 <li><code>res/layout/main.xml</code>, single-pane (default) layout: 189 600 dp, so if you want your UI to have two panes on those screens (but a single 190 list on smaller screens), you can use the same two layouts from the previous section for single 196 <li><code>res/layout/main.xml</code>, single-pane (default) layout: 208 while smaller screens will select the <code>layout/main.xml</code> (single-pane) 224 want to design your UI so that it shows a single-pane UI on phones but a 229 <li><code>res/layout/main.xml:</code> single-pane layout</li> 243 <li><code>res/layout/main.xml</code>, single-pane layout</li> 282 <li><b>small screen, portrait:</b> single pane, with logo</li> 283 <li><b>small screen, landscape:</b> single pane, with logo</li> [all …]
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
D | CSVWriterFilter.java | 50 FrameType floatT = FrameType.single(float.class); in getSignature() 51 FrameType stringT = FrameType.single(String.class); in getSignature()
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | .gitignore | 7 # The only way to negate an exclusion is by including every single parent
|
/frameworks/base/tests/SmokeTest/ |
D | README | 2 the build system on every single build. They are intended to run very quickly.
|