/external/python/cpython2/Lib/plat-mac/Carbon/ |
File.py | 1 from _File import *
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/Carbon/ |
File.py | 1 from _File import *
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/ |
File.py | 1 from _File import *
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
trace_test.py | 21 self._file = None 28 self._file = tempfile.NamedTemporaryFile() 29 trace_enable(open(self._file.name, 'a+')) 35 e = ParsedTraceEvents(trace_filename = self._file.name) 36 self._file.close() 37 self._file = None 42 return self._file.name 47 if self._file: 48 self._file.close()
|
/external/lzma/CPP/7zip/UI/Console/ |
BenchCon.cpp | 12 FILE *_file;
member in struct:CPrintBenchCallback 21 fputs(s, _file);
26 fputc('\n', _file);
38 callback._file = f;
|
/frameworks/compile/libbcc/bcinfo/Wrap/ |
file_wrapper_input.cpp | 24 _file = fopen(name, "rb"); 25 if (_file == nullptr) { 32 fclose(_file); 36 size_t found = fread((char*) buffer, 1, wanted, _file); 37 if (feof(_file) || ferror(_file)) { 63 return fseek(_file, (long) pos, SEEK_SET) == 0; // NOLINT
|
file_wrapper_output.cpp | 23 _file = fopen(name, "wb"); 24 if (nullptr == _file) { 31 fclose(_file); 35 return EOF != fputc(byte, _file); 44 return buffer_size == fwrite(buffer, 1, buffer_size, _file);
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRFileStream.as | 8 protected var _file:File; 15 _file = file; 33 return _file.name;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/ |
stdio_s.h | 19 _CRTIMP errno_t __cdecl clearerr_s(FILE *_File); 20 int __cdecl fprintf_s(FILE *_File,const char *_Format,...); 21 size_t __cdecl fread_s(void *_DstBuf,size_t _DstSize,size_t _ElementSize,size_t _Count,FILE *_File); 22 _CRTIMP int __cdecl _fscanf_s_l(FILE *_File,const char *_Format,_locale_t _Locale,...); 29 _CRTIMP int __cdecl _fscanf_l(FILE *_File,const char *_Format,_locale_t _Locale,...); 36 int __cdecl vfprintf_s(FILE *_File,const char *_Format,va_list _ArgList); 54 _CRTIMP int __cdecl _fprintf_p(FILE *_File,const char *_Format,...); 57 _CRTIMP int __cdecl _vfprintf_p(FILE *_File,const char *_Format,va_list _ArgList); 66 _CRTIMP int __cdecl _fprintf_l(FILE *_File,const char *_Format,_locale_t _Locale,...); 67 _CRTIMP int __cdecl _fprintf_p_l(FILE *_File,const char *_Format,_locale_t _Locale,...) [all...] |
/development/tools/axl/ |
log.py | 25 """_file: filename or open file""" 28 self._file = open(file, "a") 30 self._file = file 41 self._file.write("%s %s\n" % (timeStr, ln)) 42 self._file.flush()
|
/external/lzma/CPP/7zip/Archive/Common/ |
MultiStream.cpp | 85 CFileItem _file;
91 _file.Name = name;
92 _file.IsStartPosDefined = true;
93 _file.StartPos = 0;
108 _file.UnPackSize = _curPos;
109 _file.FileCRC = _crc.GetDigest();
110 RINOK(WriteVolumeHeader(_archive, _file, _options));
113 _file.StartPos += _file.UnPackSize;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
stdio.h | 31 int _file; member in struct:_iobuf 153 int __cdecl __mingw_fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...); 378 int __cdecl fprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,...); 385 int __cdecl vfprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,va_list _ArgList); 392 int __cdecl fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; 432 _CRTIMP int __cdecl _filbuf(FILE *_File); 433 _CRTIMP int __cdecl _flsbuf(int _Ch,FILE *_File); 439 void __cdecl clearerr(FILE *_File); 440 int __cdecl fclose(FILE *_File); 447 int __cdecl feof(FILE *_File); [all...] |
/external/python/cpython2/Lib/ |
sunau.py | 161 if self._file: 165 self._file = file 212 return self._file 260 data = self._file.read() 262 data = self._file.read(nframes * self._framesize) 273 self._file.seek(self._data_pos) 284 self._file.seek(self._data_pos + pos * self._framesize) 288 self._file = None 299 if self._file: 303 self._file = fil [all...] |
aifc.py | 260 # _file -- the open file with methods read(), close(), and seek() 297 self._file = file 312 chunk = Chunk(self._file) 353 return self._file 366 self._file.close() 540 # _file -- the open file with methods write(), close(), tell(), seek() 579 self._file = file 597 if self._file: 726 self._file.write(data) 737 if self._file is None [all...] |
mailbox.py | 582 self._file = f 631 _lock_file(self._file) 637 _unlock_file(self._file) 646 _sync_flush(self._file) 655 # Check length of self._file; if it's changed, some other process 657 self._file.seek(0, 2) 658 cur_len = self._file.tell() 670 self._file.seek(start) 674 buffer = self._file.read(min(4096, 675 stop - self._file.tell()) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
aifc.py | 260 # _file -- the open file with methods read(), close(), and seek() 297 self._file = file 312 chunk = Chunk(self._file) 353 return self._file 363 self._file.close() 538 # _file -- the open file with methods write(), close(), tell(), seek() 577 self._file = file 595 if self._file: 724 self._file.write(data) 735 if self._file is None [all...] |
sunau.py | 161 if self._file: 165 self._file = file 208 return self._file 256 data = self._file.read() 258 data = self._file.read(nframes * self._framesize * self._nchannels) 267 self._file.seek(self._hdr_size) 275 self._file.seek(pos * self._framesize + self._hdr_size) 279 self._file = None 290 if self._file: 294 self._file = fil [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
aifc.py | 260 # _file -- the open file with methods read(), close(), and seek() 297 self._file = file 312 chunk = Chunk(self._file) 353 return self._file 363 self._file.close() 538 # _file -- the open file with methods write(), close(), tell(), seek() 577 self._file = file 595 if self._file: 724 self._file.write(data) 735 if self._file is None [all...] |
sunau.py | 161 if self._file: 165 self._file = file 208 return self._file 256 data = self._file.read() 258 data = self._file.read(nframes * self._framesize * self._nchannels) 267 self._file.seek(self._hdr_size) 275 self._file.seek(pos * self._framesize + self._hdr_size) 279 self._file = None 290 if self._file: 294 self._file = fil [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
aifc.py | 260 # _file -- the open file with methods read(), close(), and seek() 297 self._file = file 312 chunk = Chunk(self._file) 353 return self._file 363 self._file.close() 538 # _file -- the open file with methods write(), close(), tell(), seek() 577 self._file = file 595 if self._file: 724 self._file.write(data) 735 if self._file is None [all...] |
sunau.py | 161 if self._file: 165 self._file = file 208 return self._file 256 data = self._file.read() 258 data = self._file.read(nframes * self._framesize * self._nchannels) 267 self._file.seek(self._hdr_size) 275 self._file.seek(pos * self._framesize + self._hdr_size) 279 self._file = None 290 if self._file: 294 self._file = fil [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
aifc.py | 260 # _file -- the open file with methods read(), close(), and seek() 297 self._file = file 312 chunk = Chunk(self._file) 353 return self._file 363 self._file.close() 538 # _file -- the open file with methods write(), close(), tell(), seek() 577 self._file = file 595 if self._file: 724 self._file.write(data) 735 if self._file is None [all...] |
sunau.py | 161 if self._file: 165 self._file = file 208 return self._file 256 data = self._file.read() 258 data = self._file.read(nframes * self._framesize * self._nchannels) 267 self._file.seek(self._hdr_size) 275 self._file.seek(pos * self._framesize + self._hdr_size) 279 self._file = None 290 if self._file: 294 self._file = fil [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
aifc.py | 248 # _file -- the open file with methods read(), close(), and seek()
285 self._file = file
300 chunk = Chunk(self._file)
341 return self._file
351 self._file.close()
526 # _file -- the open file with methods write(), close(), tell(), seek()
565 self._file = file
583 if self._file:
712 self._file.write(data)
726 self._file.write(chr(0)) [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
stdio.c | 73 ret = (int)read(fp->_file, buf, (size_t)n);
95 (void) lseek(fp->_file, (off_t)0, SEEK_END);
97 return (int)(write(fp->_file, (char *)buf, (size_t)n));
112 ret = lseek(fp->_file, (off_t)offset, whence);
132 return (close(((FILE *)cookie)->_file));
|