HomeSort by relevance Sort by last modified time
    Searched full:_file (Results 1 - 25 of 526) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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()
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
file_reporter.h 37 { _file = stderr; }
45 _file = fopen(file, "w");
47 fopen_s(&_file, file, "w");
55 { _file = stream; }
59 fclose(_file);
61 fflush(_file);
69 fprintf(_file, "\n\n%s(%d) : %s(%s);", in_file, in_line, in_macroName, in_macro);
73 { fprintf(_file, "\n\t%s", msg ); }
84 fprintf(_file, "%s::%s", in_className, in_shortTestName);
94 fprintf(_file, "%s", ignoredReason)
142 FILE* _file; member in class:FileReporter
    [all...]
  /ndk/tests/device/test-stlport/unit/cppunit/
file_reporter.h 37 { _file = stderr; }
45 _file = fopen(file, "w");
47 fopen_s(&_file, file, "w");
55 { _file = stream; }
59 fclose(_file);
61 fflush(_file);
69 fprintf(_file, "\n\n%s(%d) : %s(%s);", in_file, in_line, in_macroName, in_macro);
73 { fprintf(_file, "\n\t%s", msg ); }
84 fprintf(_file, "%s::%s", in_className, in_shortTestName);
94 fprintf(_file, "%s", ignoredReason)
142 FILE* _file; member in class:FileReporter
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
CsvWriter.cpp 4 _file.open(path.c_str(), ofstream::out);
10 _file.flush();
11 _file.close();
23 _file << x << _separator << y << _separator << z << std::endl;
39 _file << u << _separator << v << _separator << x << _separator << y << _separator << z;
44 _file << _separator << descriptor_str;
46 _file << std::endl;
CsvWriter.h 20 ofstream _file; member in class:CsvWriter
  /external/lzma/CPP/7zip/UI/Console/
BenchCon.cpp 12 FILE *_file; member in struct:CPrintBenchCallback
21 fputs(s, _file);
38 callback._file = f;
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
RandomAccessFileBuffer.java 33 final RandomAccessFile _file; field in class:RandomAccessFileBuffer
42 _file = new RandomAccessFile(file,"rw");
43 _channel=_file.getChannel();
56 _file = new RandomAccessFile(file,"rw");
57 _channel=_file.getChannel();
69 _file = new RandomAccessFile(file,access==READWRITE?"rw":"r");
70 _channel=_file.getChannel();
90 synchronized (_file)
93 _file.setLength(0);
106 synchronized (_file)
    [all...]
  /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;
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,...);
32 _CRTIMP int __cdecl _fscanf_l(FILE *_File,const char *_Format,_locale_t _Locale,...);
38 int __cdecl vfprintf_s(FILE *_File,const char *_Format,va_list _ArgList);
53 _CRTIMP int __cdecl _fprintf_p(FILE *_File,const char *_Format,...);
56 _CRTIMP int __cdecl _vfprintf_p(FILE *_File,const char *_Format,va_list _ArgList);
65 _CRTIMP int __cdecl _fprintf_l(FILE *_File,const char *_Format,_locale_t _Locale,...);
66 _CRTIMP int __cdecl _fprintf_p_l(FILE *_File,const char *_Format,_locale_t _Locale,...)
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/src/
CMakeLists.txt 141 foreach (_file ${DOCCLASSES})
142 add_custom_command (OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file}_class_doc.i
144 ${CMAKE_BINARY_DIR}/xml/classmraa_1_1_${_file}.xml
145 ${CMAKE_CURRENT_BINARY_DIR}/${_file}_class_doc.i
146 DEPENDS ${CMAKE_BINARY_DIR}/xml/classmraa_1_1_${_file}.xml
148 add_custom_target (${_file}class_doc_i DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_file}_class_doc.i)
149 add_dependencies (${_file}class_doc_i doc)
153 foreach (_file ${DOCFILES})
154 add_custom_command (OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file}_doc.
    [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()
  /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,...);
377 int __cdecl fprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,...);
381 int __cdecl vfprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,va_list _ArgList);
385 int __cdecl fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
420 _CRTIMP int __cdecl _filbuf(FILE *_File);
421 _CRTIMP int __cdecl _flsbuf(int _Ch,FILE *_File);
427 void __cdecl clearerr(FILE *_File);
428 int __cdecl fclose(FILE *_File);
435 int __cdecl feof(FILE *_File);
    [all...]
  /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;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
blob.py 28 self._file = file
35 if self._file:
36 f = self._file
71 if self._file:
72 return self._file.size
  /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...]

Completed in 1136 milliseconds

1 2 3 4 5 6 7 8 91011>>