/external/jetty/src/java/org/eclipse/jetty/io/nio/ |
D | RandomAccessFileBuffer.java | 33 final RandomAccessFile _file; field in RandomAccessFileBuffer 42 _file = new RandomAccessFile(file,"rw"); in RandomAccessFileBuffer() 43 _channel=_file.getChannel(); in RandomAccessFileBuffer() 56 _file = new RandomAccessFile(file,"rw"); in RandomAccessFileBuffer() 57 _channel=_file.getChannel(); in RandomAccessFileBuffer() 69 _file = new RandomAccessFile(file,access==READWRITE?"rw":"r"); in RandomAccessFileBuffer() 70 _channel=_file.getChannel(); in RandomAccessFileBuffer() 90 synchronized (_file) in clear() 93 _file.setLength(0); in clear() 106 synchronized (_file) in peek() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/util/resource/ |
D | FileResource.java | 55 private File _file; field in FileResource 86 _file =new File(new URI(url.toString())); in FileResource() 102 _file = new File(uri); in FileResource() 104 _file = new File("//"+uri.getAuthority()+URIUtil.decodePath(url.getFile())); in FileResource() 113 _file = new File(perm==null?url.getFile():perm.getName()); in FileResource() 116 if (_file.isDirectory()) in FileResource() 133 _file=file; in FileResource() 134 if (_file.isDirectory() && !_urlString.endsWith("/")) in FileResource() 178 ((FileResource)r)._alias=((FileResource)r)._file.getCanonicalFile().toURI().toURL(); in addPath() 194 String abs=_file.getAbsolutePath(); in getAlias() [all …]
|
D | JarFileResource.java | 40 private File _file; field in JarFileResource 67 _file=null; in release() 102 _file=null; in checkConnection() 119 _file=null; in newConnection() 129 _file=new File(_jarFile.getName()); in newConnection() 254 if (checkConnection() && _file!=null) in lastModified() 258 return _file.lastModified(); in lastModified()
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
D | 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/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
D | multistore_file.py | 196 self._file = LockedFile(filename, 'r+', 'r') 273 if not os.path.exists(self._file.filename()): 276 open(self._file.filename(), 'a+b').close() 284 self._file.open_and_lock() 294 if not self._file.is_locked(): 299 'valid for this run.', self._file.filename()) 300 if os.path.getsize(self._file.filename()) == 0: 315 self._file.unlock_and_close() 327 self._file.file_handle().seek(0) 328 return json.load(self._file.file_handle()) [all …]
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
D | CsvWriter.cpp | 4 _file.open(path.c_str(), ofstream::out); in CsvWriter() 10 _file.flush(); in ~CsvWriter() 11 _file.close(); in ~CsvWriter() 23 _file << x << _separator << y << _separator << z << std::endl; in writeXYZ() 39 _file << u << _separator << v << _separator << x << _separator << y << _separator << z; in writeUVXYZ() 44 _file << _separator << descriptor_str; in writeUVXYZ() 46 _file << std::endl; in writeUVXYZ()
|
D | CsvReader.cpp | 5 _file.open(path.c_str(), ifstream::in); in CsvReader() 19 while (getline(_file, line)) { in readPLY()
|
D | CsvReader.h | 35 ifstream _file;
|
D | CsvWriter.h | 20 ofstream _file;
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | MultiPartInputStream.java | 78 protected File _file; field in MultiPartInputStream.MultiPart 130 …shold() > 0 && _size + 1 > MultiPartInputStream.this._config.getFileSizeThreshold() && _file==null) in write() 142 …() > 0 && _size + length > MultiPartInputStream.this._config.getFileSizeThreshold() && _file==null) in write() 152 _file = File.createTempFile("MultiPart", "", MultiPartInputStream.this._tmpDir); in createFile() 154 _file.deleteOnExit(); in createFile() 155 FileOutputStream fos = new FileOutputStream(_file); in createFile() 215 if (_file != null) in getInputStream() 218 return new BufferedInputStream (new FileInputStream(_file)); in getInputStream() 255 if (_file == null) in write() 260 _file = new File (_tmpDir, fileName); in write() [all …]
|
D | RolloverFileOutputStream.java | 60 private File _file; field in RolloverFileOutputStream 198 if (_file==null) in getDatedFilename() 200 return _file.toString(); in getDatedFilename() 238 if (out==null || !file.equals(_file)) in setFile() 241 _file=file; in setFile() 312 _file=null; in close()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/ |
D | blob.py | 28 self._file = file 35 if self._file: 36 f = self._file 71 if self._file: 72 return self._file.size
|
/external/lzma/CPP/7zip/UI/Console/ |
D | BenchCon.cpp | 12 FILE *_file; member 21 fputs(s, _file); in Print() 38 callback._file = f; in BenchCon()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | ANTLRFileStream.as | 8 protected var _file:File; 15 _file = file; 33 return _file.name;
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrProcessor.java | 92 final File _file = new File (fileName); in setMetaOutFile() local 94 if (_file.exists () && ! _file.isFile ()) in setMetaOutFile() 95 … throw new IllegalArgumentException ("not a file: [" + _file.getAbsolutePath () + "]"); in setMetaOutFile() 97 m_mdataOutFile = _file; in setMetaOutFile()
|
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
D | voe_standard_test.h | 66 _file(false), in SubAPIManager() 84 _file = true; in SubAPIManager() 111 bool _externalMedia, _file, _hardware; variable
|
D | voe_standard_test.cc | 49 if (_file) in DisplayStatus() 75 if (!_file) in DisplayStatus()
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | MergeProcessor.java | 69 final File _file = new File (fileName); in setSessionOutFile() local 71 if (_file.exists () && ! _file.isFile ()) in setSessionOutFile() 72 … throw new IllegalArgumentException ("not a file: [" + _file.getAbsolutePath () + "]"); in setSessionOutFile() 74 m_sdataOutFile = _file; in setSessionOutFile()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.cpp | 1667 IBenchPrintCallback *_file; member 1696 RINOK(_file->CheckBreak()); in SetEncodeResult() 1700 PrintResults(_file, info, rating, ShowFreq, CpuFreq, &EncodeRes); in SetEncodeResult() 1709 RINOK(_file->CheckBreak()); in SetDecodeResult() 1714 _file->Print(kSep); in SetDecodeResult() 1717 _file->NewLine(); in SetDecodeResult() 1718 PrintSpaces(*_file, NameFieldSize); in SetDecodeResult() 1724 PrintResults(_file, info2, rating, ShowFreq, CpuFreq, &DecodeRes); in SetDecodeResult() 1731 _file->Print(s); in Print() 1736 _file->NewLine(); in NewLine() [all …]
|
/external/compiler-rt/cmake/Modules/ |
D | CompilerRTDarwinUtils.cmake | 235 foreach (_file ${intermediate}) 236 get_filename_component(_name_we ${_file} NAME_WE) 239 list(REMOVE_ITEM intermediate ${_file}) 240 elseif(${_file} MATCHES ".*/.*\\.S" OR ${_file} MATCHES ".*/.*\\.c") 241 get_filename_component(_name ${_file} NAME)
|
/external/emma/core/java12/com/vladium/emma/rt/ |
D | AppRunner.java | 194 final File _file = new File (fileName); in setSessionOutFile() local 196 if (_file.exists () && ! _file.isFile ()) in setSessionOutFile() 197 … throw new IllegalArgumentException ("not a file: [" + _file.getAbsolutePath () + "]"); in setSessionOutFile() 199 m_sdataOutFile = _file; in setSessionOutFile()
|
/external/bison/lib/ |
D | stdio-impl.h | 98 int _file; \
|
/external/compiler-rt/lib/builtins/ |
D | CMakeLists.txt | 370 foreach (_file ${${arch}_SOURCES}) 371 if (${_file} MATCHES ${arch}/*) 372 get_filename_component(_name ${_file} NAME)
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | base.hpp | 322 CV_EXPORTS void error(int _code, const String& _err, const char* _func, const char* _file, int _lin… 332 … void errorNoReturn(int _code, const String& _err, const char* _func, const char* _file, int _line) in errorNoReturn() argument 334 error(_code, _err, _func, _file, _line); in errorNoReturn()
|
/external/llvm/test/Transforms/MergeFunc/ |
D | 2011-02-08-RemoveEqual.ll | 25 ….kc::impl_fileline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align… 37 store %"struct.kc::impl_casestring__Str"* %_file, %"struct.kc::impl_casestring__Str"** %_file_addr 151 ….kc::impl_fileline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align… 163 store %"struct.kc::impl_casestring__Str"* %_file, %"struct.kc::impl_casestring__Str"** %_file_addr
|