/external/harfbuzz/contrib/tables/ |
scripts-parse.py | 48 def main(infile, outfile): 49 ranges = unicode_file_parse(infile,
|
/external/openssh/ |
fixprogs | 33 @infile=<IN>; 37 foreach (@infile) {
|
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/ |
rc4.c | 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local 91 infile= *(++argv); 121 if (infile == NULL) 125 in=fopen(infile,"r");
|
/external/openssl/crypto/rc4/ |
rc4.c | 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local 91 infile= *(++argv); 121 if (infile == NULL) 125 in=fopen(infile,"r");
|
/external/jpeg/ |
example.c | 296 FILE * infile; /* source file */ local 306 if ((infile = fopen(filename, "rb")) == NULL) { 322 fclose(infile); 330 jpeg_stdio_src(&cinfo, infile); 399 fclose(infile);
|
jdatasrc.c | 28 FILE * infile; /* source stream */ member in struct:__anon19616 95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE); 182 jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile) 209 src->infile = infile;
|
/external/qemu/distrib/jpeg-6b/ |
example.c | 296 FILE * infile; /* source file */ local 306 if ((infile = fopen(filename, "rb")) == NULL) { 322 fclose(infile); 330 jpeg_stdio_src(&cinfo, infile); 399 fclose(infile);
|
jdatasrc.c | 28 FILE * infile; /* source stream */ member in struct:__anon24881 95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE); 182 jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile) 209 src->infile = infile;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shlex.py | 23 def __init__(self, instream=None, infile=None, posix=False): 28 self.infile = infile 31 self.infile = None 69 self.filestack.appendleft((self.infile, self.instream, self.lineno)) 70 self.infile = newfile 75 print 'shlex: pushing to file %s' % (self.infile,) 82 (self.infile, self.instream, self.lineno) = self.filestack.popleft() 253 if isinstance(self.infile, basestring) and not os.path.isabs(newfile): 254 newfile = os.path.join(os.path.dirname(self.infile), newfile [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shlex.py | 23 def __init__(self, instream=None, infile=None, posix=False): 28 self.infile = infile 31 self.infile = None 69 self.filestack.appendleft((self.infile, self.instream, self.lineno)) 70 self.infile = newfile 75 print 'shlex: pushing to file %s' % (self.infile,) 82 (self.infile, self.instream, self.lineno) = self.filestack.popleft() 253 if isinstance(self.infile, basestring) and not os.path.isabs(newfile): 254 newfile = os.path.join(os.path.dirname(self.infile), newfile [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
InflaterInputStreamTest.java | 65 InputStream infile = Support_Resources 68 InflaterInputStream inflatIP = new InflaterInputStream(infile); 85 InputStream infile = Support_Resources.getStream("hyts_construOD.bin"); local 87 InflaterInputStream inflatIP = new InflaterInputStream(infile, 101 InputStream infile = Support_Resources.getStream("hyts_construODI.bin"); local 103 InflaterInputStream inflatIP = new InflaterInputStream(infile, 119 InputStream infile = Support_Resources.getStream("hyts_construODI.bin"); local 123 inflatIP = new InflaterInputStream(infile, null, 1); 137 inflatIP = new InflaterInputStream(infile, inflate, -1); 173 InputStream infile = Support_Resource local 198 InputStream infile = Support_Resources.getStream("hyts_construOD.bin"); local 393 InputStream infile = Support_Resources local [all...] |
/external/chromium_org/native_client_sdk/src/tools/tests/ |
fix_deps_test.py | 49 with open(self.tempfile) as infile: 50 contents = infile.read() 62 with open(self.tempfile) as infile: 63 contents = infile.read() 73 with open(self.tempfile) as infile: 74 contents = infile.read()
|
/external/chromium_org/tools/ |
sort-headers.py | 74 def SortHeader(infile, outfile): 75 """Sorts the headers in infile, writing the sorted file to outfile.""" 76 for line in infile: 84 line = infile.next() 118 infile = open(filename, 'rb') 120 SortHeader(infile, outfile) 121 infile.close()
|
/external/libpng/contrib/gregbook/ |
readpng.h | 81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
uu_codec.py | 29 infile = StringIO(str(input)) 31 read = infile.read 64 infile = StringIO(str(input)) 66 readline = infile.readline
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
uu_codec.py | 29 infile = StringIO(str(input)) 31 read = infile.read 64 infile = StringIO(str(input)) 66 readline = infile.readline
|
/bootable/recovery/tools/ota/ |
convert-to-bmp.py | 10 infile = sys.argv[1] variable 16 im = Image.open(infile)
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
dsa.c | 107 char *infile,*outfile,*prog; local 129 infile=NULL; 152 infile= *(++argv); 205 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog); 257 if (infile == NULL) 261 if (BIO_read_filename(in,infile) <= 0) 263 perror(infile); 274 pkey = load_pubkey(bio_err, infile, informat, 1, 277 pkey = load_key(bio_err, infile, informat, 1,
|
sess_id.c | 97 char *infile=NULL,*outfile=NULL,*context=NULL; local 128 infile= *(++argv); 165 x=load_sess_id(infile,informat); 281 static SSL_SESSION *load_sess_id(char *infile, int format) 293 if (infile == NULL) 297 if (BIO_read_filename(in,infile) <= 0) 299 perror(infile);
|
/external/chromium_org/third_party/ots/tools/ |
ttf-checksum.py | 12 def checkChecksum(infile): 13 contents = infile.read()
|
/external/openssl/apps/ |
dsa.c | 107 char *infile,*outfile,*prog; local 129 infile=NULL; 152 infile= *(++argv); 205 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog); 257 if (infile == NULL) 261 if (BIO_read_filename(in,infile) <= 0) 263 perror(infile); 274 pkey = load_pubkey(bio_err, infile, informat, 1, 277 pkey = load_key(bio_err, infile, informat, 1,
|
/external/zlib/src/examples/ |
gun.c | 82 int infile; member in struct:ind 103 ret = (int)read(me->infile, next, ret); 371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been 383 local int gunpipe(z_stream *strm, int infile, int outfile) 392 ind.infile = infile; 551 int infile, outfile; local 556 infile = 0; /* stdin */ 559 infile = open(inname, O_RDONLY, 0); 560 if (infile == -1) [all...] |
/external/libvorbis/vq/ |
huffbuild.c | 64 char *infile; local 73 infile=strdup(argv[1]); 74 base=strdup(infile); 105 file=fopen(infile,"r"); 107 fprintf(stderr,"Could not open file %s\n",infile);
|
/external/chromium_org/tools/generate_stubs/ |
generate_stubs_unittest.py | 74 infile = StringIO.StringIO() 75 signatures = gs.ParseSignatures(infile) 80 infile = StringIO.StringIO(file_contents) 81 signatures = gs.ParseSignatures(infile) 94 infile = StringIO.StringIO(file_contents) 95 signatures = gs.ParseSignatures(infile) 108 infile = StringIO.StringIO(i) 109 self.assertRaises(gs.BadSignatureError, gs.ParseSignatures, infile) 121 infile = StringIO.StringIO(file_contents) 122 signatures = gs.ParseSignatures(infile) [all...] |
/external/jhead/ |
jpgfile.c | 129 int ReadJpegSections (FILE * infile, ReadMode_t ReadMode) 134 a = fgetc(infile); 136 if (a != 0xff || fgetc(infile) != M_SOI){ 148 marker = fgetc(infile); 159 Sections[SectionsRead].Offset = ftell(infile); 162 lh = fgetc(infile); 163 ll = fgetc(infile); 187 got = fread(Data+2, 1, itemlen-2, infile); // Read the whole section. 203 cp = ftell(infile); 204 fseek(infile, 0, SEEK_END) 526 FILE * infile; local [all...] |