/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_imgfile.py | 3 """Simple test script for imgfile.c 9 imgfile = import_module('imgfile', deprecated=True) variable 14 """Run through the imgfile's battery of possible methods 28 sizes = imgfile.getsizes(name) 29 except imgfile.error: 39 sizes = imgfile.getsizes(name) 47 image = imgfile.read(name) 56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2]) 75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0 [all...] |
test_imageop.py | 4 effect of partially testing the imgfile module as well. 73 import imgfile 181 image (in 'imgfile' format) width and height 183 import imgfile 185 sizes = imgfile.getsizes(name) 186 except imgfile.error: 188 sizes = imgfile.getsizes(name) 190 print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes)) 192 image = imgfile.read(name)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_imgfile.py | 3 """Simple test script for imgfile.c 9 imgfile = import_module('imgfile', deprecated=True) variable 14 """Run through the imgfile's battery of possible methods 28 sizes = imgfile.getsizes(name) 29 except imgfile.error: 39 sizes = imgfile.getsizes(name) 47 image = imgfile.read(name) 56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2]) 75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0 [all...] |
test_imageop.py | 4 effect of partially testing the imgfile module as well. 73 import imgfile 181 image (in 'imgfile' format) width and height 183 import imgfile 185 sizes = imgfile.getsizes(name) 186 except imgfile.error: 188 sizes = imgfile.getsizes(name) 190 print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes)) 192 image = imgfile.read(name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_imgfile.py | 3 """Simple test script for imgfile.c 9 imgfile = import_module('imgfile', deprecated=True) variable 14 """Run through the imgfile's battery of possible methods 28 sizes = imgfile.getsizes(name) 29 except imgfile.error: 39 sizes = imgfile.getsizes(name) 47 image = imgfile.read(name) 56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2]) 75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0 [all...] |
test_imageop.py | 4 effect of partially testing the imgfile module as well. 73 import imgfile 181 image (in 'imgfile' format) width and height 183 import imgfile 185 sizes = imgfile.getsizes(name) 186 except imgfile.error: 188 sizes = imgfile.getsizes(name) 190 print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes)) 192 image = imgfile.read(name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_imgfile.py | 3 """Simple test script for imgfile.c 9 imgfile = import_module('imgfile', deprecated=True) variable 14 """Run through the imgfile's battery of possible methods 28 sizes = imgfile.getsizes(name) 29 except imgfile.error: 39 sizes = imgfile.getsizes(name) 47 image = imgfile.read(name) 56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2]) 75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0 [all...] |
test_imageop.py | 4 effect of partially testing the imgfile module as well. 73 import imgfile 181 image (in 'imgfile' format) width and height 183 import imgfile 185 sizes = imgfile.getsizes(name) 186 except imgfile.error: 188 sizes = imgfile.getsizes(name) 190 print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes)) 192 image = imgfile.read(name)
|
/external/vboot_reference/utility/ |
bmpblk_font.c | 168 char *imgfile = argv[optind+i]; local 174 s = strrchr(imgfile, '_'); 176 error("Unable to parse the character from filename %s\n", imgfile); 180 imgdata = read_entire_file(imgfile, &imgsize); 185 error("%s does not contain a valid BMP image\n", imgfile); 201 printf("%s => 0x%x %dx%d\n", imgfile, entry.ascii,
|