/frameworks/base/tools/aapt2/integration-tests/DumpTest/ |
D | multiple_uses_sdk_expected.txt | 4 application-icon-120:'res/drawable-ldpi-v4/icon.png' 5 application-icon-160:'res/drawable-mdpi-v4/icon.png' 6 application-icon-240:'res/drawable-hdpi-v4/icon.png' 7 application: label='w45wmultiapknexus_10' icon='res/drawable-mdpi-v4/icon.png'
|
D | minimal_expected.txt | 70 application-icon-160:'res/theme/1f.png' 71 application-icon-240:'res/theme/1f.png' 72 application-icon-320:'res/theme/1f.png' 73 application-icon-480:'res/theme/1f.png' 74 application-icon-640:'res/theme/1f.png' 75 application: label='Bubble Girl' icon='res/theme/1f.png'
|
D | components_full_proto.txt | 474 path: "res/u3.png" 489 path: "res/SD.png" 504 path: "res/jy.png" 519 path: "res/D2.png" 534 path: "res/CG.png" 575 path: "res/7c.png" 590 path: "res/tf.png" 605 path: "res/1S.png" 620 path: "res/5Q.png" 635 path: "res/C9.png"
|
/frameworks/base/cmds/idmap2/libidmap2/ |
D | FabricatedOverlay.cpp | 138 auto png = android::ReadPng(&png_chunk_filter, &diag); in buildBinaryData() local 139 if (!png) { in buildBinaryData() 144 std::unique_ptr<NinePatch> nine_patch = NinePatch::Create(png->rows.get(), in buildBinaryData() 145 png->width, png->height, in buildBinaryData() 151 png->width -= 2; in buildBinaryData() 152 png->height -= 2; in buildBinaryData() 153 memmove(png->rows.get(), png->rows.get() + 1, png->height * sizeof(uint8_t**)); in buildBinaryData() 154 for (int32_t h = 0; h < png->height; h++) { in buildBinaryData() 155 memmove(png->rows[h], png->rows[h] + 4, png->width * 4); in buildBinaryData() 160 if (!android::WritePng(png.get(), nine_patch.get(), &buffer_output_stream, {}, in buildBinaryData()
|
/frameworks/base/cmds/idmap2/tests/data/target/ |
D | build | 20 aapt2 compile res/drawable/dr1.png -o . 21 …idManifest.xml -A assets -o target-no-overlayable.apk values_values.arsc.flat drawable_dr1.png.flat 23 rm drawable_dr1.png.flat
|
/frameworks/base/packages/SystemUI/scripts/ |
D | copy_profile_icons.sh | 11 adb pull /data/system/users/${photo}/photo.png 12 adb push photo.png /data/user/${user}/users/${photo}
|
/frameworks/base/cmds/screencap/ |
D | screencap.cpp | 171 status_t saveImage(const char* fn, bool png, const ScreenCaptureResults& captureResults) { in saveImage() argument 204 if (png) { in saveImage() 262 bool png = false; in main() local 268 png = true; in main() 325 png = true; in main() 386 if (const status_t saveImageStatus = saveImage(fn, png, result) != 0) { in main()
|
/frameworks/base/cmds/bootanimation/ |
D | FORMAT.md | 75 ## clock_font.png 85 ## progress_font.png 88 follows the same specification as the one described for clock_font.png. 95 named sequentially (e.g. `part000.png`, `part001.png`, ...) and added to the zip archive in that 128 for fn in *.png ; do 135 pngquant --force --ext .png *.png 136 # alternatively: mogrify -colors 256 anim-tmp/*/*.png 141 zip -0qry -i \*.txt \*.png \*.wav @ ../bootanimation.zip *.txt part*
|
/frameworks/av/media/libmedia/docs/ |
D | Makefile | 1 paused.png : paused.dot
|
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/ |
D | NekoLand.java | 284 final File png = new File(dir, cat.getName().replaceAll("[/ #:]+", "_") + ".png"); in shareCat() local 288 OutputStream os = new FileOutputStream(png); in shareCat() 293 new String[]{png.toString()}, in shareCat() 296 Log.v("Neko", "cat file: " + png); in shareCat() 297 Uri uri = FileProvider.getUriForFile(this, "com.android.egg.fileprovider", png); in shareCat()
|
/frameworks/base/packages/SystemUI/docs/device-entry/ |
D | glossary.md | 8 | Lock screen<br><br>![ss_aod](imgs/lockscreen.png) | The first screen available w… 9 | Bouncer, [bouncer.md][2]<br><br>![ss_aod](imgs/bouncer_pin.png) | The component responsible fo… 11 | Ambient display (AOD), [doze.md][6]<br><br>![ss_aod](imgs/aod.png) | UI shown when the device is … 24 | Bypass User Journey <br><br>![ss_bypass](imgs/bypass.png) | Once the user successfully authentica…
|
D | bouncer.md | 5 ![ss-bouncer](./imgs/bouncer_pin.png)
|
D | doze.md | 7 ![ss-aod](./imgs/aod.png)
|
/frameworks/base/packages/SystemUI/docs/ |
D | clock-plugins.md | 102 os.system('adb -s %s shell screencap -p > %s/screencap_%06d.png' % (serial, OUTPUT_FOLDER, count)) 119 return [os.path.join(path, name) for name in os.listdir(path) if name.endswith('.png')] 136 raise ValueError("folder '%s' doesn't contain any png files" % path) 138 imwrite('average.png', AVG)
|
D | status-bar-data-pipeline.md | 10 ![image of status bar](status-bar.png) 28 ![diagram of UI, domain, and data layers](modern-architecture.png) 74 ![diagram of wifi and mobile pipelines](status-bar-pipeline.png) 91 ![diagram of mobile parent child relationship](status-bar-mobile-pipeline.png)
|
D | media-controls.md | 11 ![media controls pipeline](media-controls-pipeline.png)
|
D | physics-animation-layout.md | 16 …figured using the controller's configuration methods.](physics-animation-layout-config-methods.png)
|
/frameworks/native/cmds/installd/ |
D | installd.rc | 49 mkdir /config/sdcardfs/extensions/1057/png
|
/frameworks/base/cmds/idmap2/ |
D | Android.bp | 232 "tests/data/**/*.png",
|
/frameworks/base/tools/aapt2/cmd/ |
D | Compile.cpp | 573 android::Png png(context->GetDiagnostics()); in CompilePng() local 574 if (!png.process(path_data.source, &legacy_stream, &legacy_buffer, {})) { in CompilePng()
|
/frameworks/base/media/native/midi/include/ |
D | Doxyfile | 1509 # doxygen run you need to manually remove any form_*.png images from the HTML 1520 # Note that when changing this option you need to delete any form_*.png files in 2371 # Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, 2372 # png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, 2373 # gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, 2374 # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and 2375 # png:gdiplus:gdiplus. 2376 # The default value is: png. 2379 DOT_IMAGE_FORMAT = png
|
/frameworks/av/media/codec2/docs/ |
D | doxygen.config | 1459 # doxygen run you need to manually remove any form_*.png images from the HTML 1470 # Note that when changing this option you need to delete any form_*.png files in 2330 # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, 2331 # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and 2332 # png:gdiplus:gdiplus. 2333 # The default value is: png. 2336 DOT_IMAGE_FORMAT = png
|
/frameworks/av/media/libheadtracking/ |
D | README.md | 124 ![Pose processing graph](PoseProcessingGraph.png)
|
/frameworks/wilhelm/doc/ |
D | Doxyfile | 1048 # to manually remove any form_*.png images from the HTML output directory 1056 # Note that when changing this option you need to delete any form_*.png files 1569 # generated by dot. Possible values are png, jpg, or gif 1570 # If left blank png will be used. 1572 DOT_IMAGE_FORMAT = png
|
/frameworks/native/docs/ |
D | Doxyfile | 48 PROJECT_LOGO = logo.png 1221 # to manually remove any form_*.png images from the HTML output directory 1229 # Note that when changing this option you need to delete any form_*.png files 1841 # generated by dot. Possible values are svg, png, jpg, or gif. 1842 # If left blank png will be used. If you choose svg you need to set 1846 DOT_IMAGE_FORMAT = png
|