/third_party/python/Lib/test/ |
D | test_largefile.py | 66 self.assertEqual(f.tell(), size + 1) 73 self.assertEqual(f.tell(), 0) 75 self.assertEqual(f.tell(), 1) 77 self.assertEqual(f.tell(), 0) 79 self.assertEqual(f.tell(), 0) 81 self.assertEqual(f.tell(), 42) 83 self.assertEqual(f.tell(), 42) 85 self.assertEqual(f.tell(), 84) 87 self.assertEqual(f.tell(), 84) 89 self.assertEqual(f.tell(), size + 1 + 0) [all …]
|
D | test_fileio.py | 35 self.assertEqual(self.f.tell(), p.tell()) 42 self.assertEqual(self.f.tell(), 20) 44 self.assertEqual(self.f.tell(), 0) 46 self.assertEqual(self.f.tell(), 10) 48 self.assertEqual(self.f.tell(), 15) 50 self.assertEqual(self.f.tell(), 10) 52 self.assertEqual(self.f.tell(), 15) 291 f.tell() 490 self.assertEqual(f.tell(), 10) 492 self.assertEqual(f.tell(), 10) [all …]
|
D | test_memoryio.py | 59 self.assertEqual(0, bytesIo.tell()) 61 self.assertEqual(5, bytesIo.tell()) 63 self.assertEqual(10000, bytesIo.tell()) 76 self.assertEqual(f.tell(), 6) 78 self.assertEqual(f.tell(), 5) 83 self.assertEqual(f.tell(), 1) 134 self.assertEqual(memio.tell(), 6) 138 pos = memio.tell() 140 self.assertEqual(memio.tell(), pos) 175 self.assertEqual(memio.tell(), 10) [all …]
|
D | test_file.py | 29 self.assertEqual(self.f.tell(), p.tell()) 214 if f.tell() != 5: 215 self.fail("File pos after read wrong %d" % f.tell()) 218 if f.tell() != 5: 219 self.fail("File pos after ftruncate wrong %d" % f.tell())
|
D | test_io.py | 112 def tell(self): member in MockRawIOWithoutRead 173 def tell(self): member in MisbehavedRawIO 248 def tell(self, *args): member in MockUnseekableIO 327 self.assertEqual(f.tell(), 5) 333 self.assertEqual(f.tell(), 6) 335 self.assertEqual(f.tell(), 5) 342 self.assertEqual(f.tell(), 13) 345 self.assertEqual(f.tell(), 13) 368 self.assertEqual(f.tell(), 10) 390 self.assertEqual(f.tell(), self.LARGE) [all …]
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_sendfile.py | 200 self.assertEqual(self.file.tell(), len(self.DATA)) 210 self.assertEqual(self.file.tell(), 3000) 222 self.assertEqual(self.file.tell(), 0) 236 self.assertEqual(self.file.tell(), len(self.DATA)) 296 self.assertEqual(0, self.file.tell()) 310 self.assertEqual(self.file.tell(), len(self.DATA)) 329 self.assertEqual(self.file.tell(), len(self.DATA)) 353 self.assertEqual(self.file.tell(), 0) 364 self.assertEqual(self.file.tell(), len(self.DATA)) 373 self.assertEqual(self.file.tell(), 0) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | MinidumpEmitter.cpp | 31 size_t tell() const { return NextOffset; } in tell() function in __anon1d41c2b50111::BlobAllocator 108 size_t BeginOffset = OS.tell(); in writeTo() 111 assert(OS.tell() == BeginOffset + NextOffset && in writeTo() 124 size_t DataEnd = File.tell(); in layout() 162 size_t DataEnd = File.tell(); in layout() 165 DataEnd = File.tell(); in layout() 175 Result.Location.RVA = File.tell(); in layout() 208 DataEnd = File.tell(); in layout() 222 DataEnd.getValueOr(File.tell()) - Result.Location.RVA; in layout()
|
/third_party/cef/include/capi/ |
D | cef_stream_capi.h | 78 int64(CEF_CALLBACK* tell)(struct _cef_read_handler_t* self); 122 int64(CEF_CALLBACK* tell)(struct _cef_stream_reader_t* self); 184 int64(CEF_CALLBACK* tell)(struct _cef_write_handler_t* self); 228 int64(CEF_CALLBACK* tell)(struct _cef_stream_writer_t* self);
|
/third_party/uboot/u-boot-2020.01/tools/binman/ |
D | cbfs_util.py | 483 if fd.tell() > offset: 485 (offset, fd.tell())) 486 fd.write(tools.GetBytes(self._erase_byte, offset - fd.tell())) 496 upto = fd.tell() 518 offset = align_int(fd.tell(), align) 566 if fd.tell() > self._header_offset: 568 (self._header_offset, fd.tell())) 580 self._header_offset = fd.tell() 607 pos = fd.tell() 690 orig_pos = fd.tell() [all …]
|
/third_party/musl/libc-test/src/regression/ |
D | pthread_cond-smasher.c | 56 #define tell(...) trace(__VA_ARGS__) macro 99 tell("thread %u in phase %u (%u), waiting\n", *number, i, phase); in client() 120 tell("start up of main, using %s, library %s\n", VERSION, LIBRARY); in main() 138 tell("main seeing %u threads in phase %u, %s\n", inside[phase], phase, errorstring(ret)); in main() 182 tell("shut down of main, using %s, library %s\n", VERSION, LIBRARY); in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | FileWriter.cpp | 67 uint64_t FileWriter::tell() { in tell() function in FileWriter 68 return OS.tell(); in tell() 72 off_t Offset = OS.tell(); in alignTo()
|
D | FunctionInfo.cpp | 102 const uint64_t FuncInfoOffset = O.tell(); in encode() 114 const auto StartOffset = O.tell(); in encode() 118 const auto Length = O.tell() - StartOffset; in encode() 132 const auto StartOffset = O.tell(); in encode() 136 const auto Length = O.tell() - StartOffset; in encode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFStreamer.h | 34 virtual uint64_t tell() const = 0; 99 uint64_t tell() const override { return Out.tell(); } in tell() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MachObjectWriter.cpp | 145 uint64_t Start = W.OS.tell(); in writeHeader() 160 assert(W.OS.tell() - Start == (is64Bit() ? sizeof(MachO::mach_header_64) in writeHeader() 181 uint64_t Start = W.OS.tell(); in writeSegmentLoadCommand() 211 assert(W.OS.tell() - Start == SegmentLoadCommandSize); in writeSegmentLoadCommand() 231 uint64_t Start = W.OS.tell(); in writeSection() 255 assert(W.OS.tell() - Start == in writeSection() 265 uint64_t Start = W.OS.tell(); in writeSymtabLoadCommand() 275 assert(W.OS.tell() - Start == sizeof(MachO::symtab_command)); in writeSymtabLoadCommand() 288 uint64_t Start = W.OS.tell(); in writeDysymtabLoadCommand() 312 assert(W.OS.tell() - Start == sizeof(MachO::dysymtab_command)); in writeDysymtabLoadCommand() [all …]
|
D | ELFObjectWriter.cpp | 340 uint64_t Padding = offsetToAlignment(W.OS.tell(), Align(Alignment)); in align() 622 uint64_t SecStart = W.OS.tell(); in computeSymbolTable() 758 uint64_t SecEnd = W.OS.tell(); in computeSymbolTable() 768 SecStart = W.OS.tell(); in computeSymbolTable() 773 SecEnd = W.OS.tell(); in computeSymbolTable() 1070 uint64_t StartOffset = W.OS.tell(); in writeObject() 1099 uint64_t SecStart = W.OS.tell(); in writeObject() 1104 uint64_t SecEnd = W.OS.tell(); in writeObject() 1146 uint64_t SecStart = W.OS.tell(); in writeObject() 1156 uint64_t SecEnd = W.OS.tell(); in writeObject() [all …]
|
/third_party/python/Lib/ |
D | sre_parse.py | 286 def tell(self): member in Tokenizer 293 return error(msg, self.string, self.tell() - offset) 441 start = source.tell() 532 here = source.tell() - 1 541 'Possible nested set at position %d' % source.tell(), 550 source.tell() - here) 564 source.tell() - 1), 573 source.tell() - here) 587 source.tell() - 2), 622 here = source.tell() [all …]
|
D | mailbox.py | 670 cur_len = self._file.tell() 684 new_start = new_file.tell() 687 stop - self._file.tell())) 691 new_toc[key] = (new_start, new_file.tell()) 693 self._file_length = new_file.tell() 752 before = self._file.tell() 767 self._file_length = self._file.tell() # Record current length of mailbox 782 string = self._file.read(stop - self._file.tell()) 798 string = self._file.read(stop - self._file.tell()) 807 return _PartialFile(self._file, self._file.tell(), stop) [all …]
|
D | _pyio.py | 373 def tell(self): member in IOBase 800 def tell(self): member in _BufferedIOMixin 801 pos = self.raw.tell() 816 pos = self.tell() 992 def tell(self): member in BytesIO 1211 def tell(self): member in BufferedReader 1212 return _BufferedIOMixin.tell(self) - len(self._read_buf) + self._read_pos 1279 pos = self.raw.tell() 1303 def tell(self): member in BufferedWriter 1304 return _BufferedIOMixin.tell(self) + len(self._write_buf) [all …]
|
/third_party/boost/libs/outcome/doc/src/content/reference/macros/ |
D | nodiscard.md | 3 description = "How to tell the compiler than the return value of a function should not be discarded… 6 Compiler-specific markup used to tell the compiler than the return value of a function should not b…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | SampleProfWriter.cpp | 87 uint64_t SectionStart = OutputStream->tell(); in markSectionStart() 126 OutputStream->tell() - SectionStart}); in addNewSection() 148 uint64_t Offset = OutputStream->tell(); in writeSample() 189 SecLBRProfileStart = OutputStream->tell(); in writeSections() 332 uint64_t FuncOffsetTableStart = OS.tell(); in writeFuncOffsetTable() 412 SecHdrTableOffset = OutputStream->tell(); in allocSecHdrTable() 423 uint64_t Saved = OutputStream->tell(); in writeSecHdrTable() 460 FileStart = OS.tell(); in writeHeader() 475 TableOffset = OutputStream->tell(); in writeHeader() 551 uint64_t Offset = OutputStream->tell(); in writeSample()
|
/third_party/boost/libs/hana/cmake/ |
D | CheckCxxCompilerSupport.cmake | 16 ### system, you can tell CMake about it with 51 ### You can then tell CMake to use that non-system Clang with 63 ### system, you can tell CMake to use it with 81 ### Please tell us whether it successfully compiles or if and how it
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TableGenBackend.cpp | 23 size_t Pos = (size_t)OS.tell(); in printLine() 27 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size(); in printLine()
|
/third_party/cef/libcef_dll/ctocpp/ |
D | write_handler_ctocpp.cc | 63 if (CEF_MEMBER_MISSING(_struct, tell)) in Tell() 69 int64 _retval = _struct->tell(_struct); in Tell()
|
D | read_handler_ctocpp.cc | 63 if (CEF_MEMBER_MISSING(_struct, tell)) in Tell() 69 int64 _retval = _struct->tell(_struct); in Tell()
|
/third_party/parse5/test/data/parser-feedback/ |
D | entities01.test | 44 "description": "I'm ¬it; I tell you", 45 "input": "I'm ¬it; I tell you", 49 "I'm ¬it; I tell you" 54 "description": "I'm ∉ I tell you", 55 "input": "I'm ∉ I tell you", 59 "I'm ∉ I tell you"
|