HomeSort by relevance Sort by last modified time
    Searched refs:png (Results 26 - 50 of 404) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libxml2/doc/
Makefile.am 23 $(wildcard tutorial/images/*.png) \
24 $(wildcard tutorial/images/callouts/*.png) $(wildcard API*.html) \
26 $(wildcard *.gif) w3c.png $(wildcard html/*.html) \
27 $(wildcard html/*.png) libxml2-api.xml index.py search.php \
95 html/home.png \
97 html/left.png \
147 html/right.png \
148 html/up.png \
190 tutorial/images/blank.png \
191 tutorial/images/callouts/1.png \
    [all...]
  /external/syslinux/sample/
Makefile 29 %.ppm.gz: %.png
  /external/ImageMagick/PerlMagick/demo/
Makefile 16 /bin/rm -f demo.jpg button.gif model.png shadow.gif tree.gif \
  /external/libpng/tests/
pngstest 7 # Run ./pngstest on the PNG files in $srcdir/contrib/testpngs which have the
22 for f in "${srcdir}/contrib/testpngs/"*.png
  /system/core/init/
grab-bootchart.sh 21 gnome-open ${TARBALL%.tgz}.png
22 echo "Clean up ${TMPDIR}/ and ./${TARBALL%.tgz}.png when done"
  /prebuilts/go/darwin-x86/src/image/png/
example_test.go 12 "image/png"
25 // This example uses png.Decode which can only decode PNG images.
27 img, err := png.Decode(gopherPNG())
64 f, err := os.Create("image.png")
69 if err := png.Encode(f, img); err != nil {
reader_test.go 5 package png package
83 // the sng command-line tool. Package png doesn't keep that metadata when
84 // png.Decode returns an image.Image.
100 // the sng command-line tool. Package png doesn't keep that metadata when
101 // png.Decode returns an image.Image.
108 // approximation to the sng command-line tool. The PNG model is that
111 // image.Image type returned by png.Decode, such as image.RGBA (with all pixels
114 // can't otherwise discriminate PNG's "IHDR says color (with no alpha) but tRNS
127 func sng(w io.WriteCloser, filename string, png image.Image) {
129 bounds := png.Bounds(
    [all...]
  /prebuilts/go/linux-x86/src/image/png/
example_test.go 12 "image/png"
25 // This example uses png.Decode which can only decode PNG images.
27 img, err := png.Decode(gopherPNG())
64 f, err := os.Create("image.png")
69 if err := png.Encode(f, img); err != nil {
reader_test.go 5 package png package
83 // the sng command-line tool. Package png doesn't keep that metadata when
84 // png.Decode returns an image.Image.
100 // the sng command-line tool. Package png doesn't keep that metadata when
101 // png.Decode returns an image.Image.
108 // approximation to the sng command-line tool. The PNG model is that
111 // image.Image type returned by png.Decode, such as image.RGBA (with all pixels
114 // can't otherwise discriminate PNG's "IHDR says color (with no alpha) but tRNS
127 func sng(w io.WriteCloser, filename string, png image.Image) {
129 bounds := png.Bounds(
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 32 LodePNGInfo getPNGHeaderInfo(const std::vector<unsigned char>& png)
36 lodepng_inspect(&w, &h, &state, &png[0], png.size());
41 const std::vector<unsigned char>& png)
43 // Listing chunks is based on the original file, not the decoded png info.
45 end = &png.back() + 1;
46 begin = chunk = &png.front() + 8;
64 const std::vector<unsigned char>& png)
67 end = &png.back() + 1;
68 begin = chunk = &png.front() + 8
    [all...]
  /external/harfbuzz_ng/test/shaping/
record-test.sh 63 echo "$text" | $hb_view $options "$dir/font.ttf" --output-format=png --output-file="$dir/orig.png"
64 echo "$text" | $hb_view $options "$dir/font.ttf.subset" --output-format=png --output-file="$dir/subset.png"
65 if ! cmp "$dir/orig.png" "$dir/subset.png"; then
66 echo "Images differ. Please inspect $dir/*.png." >&2
72 rm -f "$dir/orig.png"
73 rm -f "$dir/subset.png"
  /external/libpng/contrib/pngminim/decoder/
makefile 54 PNGSRCS=png$(C) pngerror$(C) pngget$(C) pngmem$(C) \
59 PNGH =png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h
65 PNGINC= png.h pngconf.h pngusr.h $(PNGCONF)
67 # Headers the PNG library uses
70 PNGOBJS=png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
  /external/libpng/contrib/pngminim/encoder/
makefile 54 PNGSRCS=png$(C) pngerror$(C) pngget$(C) pngmem$(C) \
59 PNGH =png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h
65 PNGINC= png.h pngconf.h pngusr.h $(PNGCONF)
67 # Headers the PNG library uses
70 PNGOBJS=png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
  /external/swiftshader/third_party/LLVM/docs/tutorial/
Makefile 14 PNG := $(wildcard $(PROJ_SRC_DIR)/*.png)
22 $(Verb) $(DataInstall) $(PNG) $(HTML_DIR)
  /prebuilts/go/darwin-x86/src/image/jpeg/
writer_test.go 12 "image/png"
105 {"../testdata/video-001.png", 1, 24 << 8},
106 {"../testdata/video-001.png", 20, 12 << 8},
107 {"../testdata/video-001.png", 60, 8 << 8},
108 {"../testdata/video-001.png", 80, 6 << 8},
109 {"../testdata/video-001.png", 90, 4 << 8},
110 {"../testdata/video-001.png", 100, 2 << 8},
127 return png.Decode(f)
  /prebuilts/go/darwin-x86/src/mime/
type_unix.go 62 ".png": "image/png",
type_test.go 38 // real registry on the machine and assume that ".png" exists
108 setType(".PNG", "image/png")
118 {typ: "image/png", want: []string{".png"}}, // lowercase
type_windows.go 39 ".PnG": "image/png",
  /prebuilts/go/linux-x86/src/image/jpeg/
writer_test.go 12 "image/png"
105 {"../testdata/video-001.png", 1, 24 << 8},
106 {"../testdata/video-001.png", 20, 12 << 8},
107 {"../testdata/video-001.png", 60, 8 << 8},
108 {"../testdata/video-001.png", 80, 6 << 8},
109 {"../testdata/video-001.png", 90, 4 << 8},
110 {"../testdata/video-001.png", 100, 2 << 8},
127 return png.Decode(f)
  /prebuilts/go/linux-x86/src/mime/
type_unix.go 62 ".png": "image/png",
  /external/bison/doc/
Makefile.am 108 $(FIGS_DOT:.dot=.eps) $(FIGS_DOT:.dot=.pdf) $(FIGS_DOT:.dot=.png)
109 SUFFIXES += .dot .eps .pdf .png
112 bison.html: $(FIGS_DOT:.dot=.png)
125 .dot.png:
  /external/fio/tools/plot/samples/
Makefile 16 rm -rf *png mygraph mymath *py *gpm gnuplot_temp_file* *~
  /build/make/tools/droiddoc/templates-pdk/assets/design/
default.css 260 background: transparent url(disclosure_down.png) no-repeat scroll top left;
273 background: transparent url(disclosure_up.png) no-repeat scroll top left;
326 background: transparent url(disclosure_left.png) no-repeat scroll top left;
336 background: transparent url(disclosure_right.png) no-repeat scroll top left;
503 background-image: url(ico_phone_tablet.png); }
505 background-image: url(ico_web.png); }
507 background-image: url(ico_checklist.png); }
509 background-image: url(ico_action.png); }
511 background-image: url(ico_use.png); }
525 background: transparent url(callout.png) no-repeat scroll 50% 50%
    [all...]
  /external/deqp/framework/qphelper/
qpTestLog.c 36 # include <png.h>
214 { QP_IMAGE_COMPRESSION_MODE_PNG, "PNG" },
686 void pngWriteData (png_structp png, png_bytep dataPtr, png_size_t numBytes)
688 Buffer* buffer = (Buffer*)png_get_io_ptr(png);
690 png_error(png, "unable to resize PNG write buffer!");
693 void pngFlushData (png_structp png)
695 DE_UNREF(png);
699 static deBool writeCompressedPNG (png_structp png, png_infop info, png_byte** rowPointers, int width, int height, int colorFormat)
701 if (setjmp(png_jmpbuf(png)) == 0
723 png_structp png = DE_NULL; local
    [all...]
  /external/skia/tools/skpbench/
skpbench.py 45 help="directory to save .png proofs to disk.")
170 _path.basename(self.skp) + '.png')
171 commandline.extend(['--png', pngfile])

Completed in 1357 milliseconds

12 3 4 5 6 7 8 91011>>