HomeSort by relevance Sort by last modified time
    Searched refs:truncate (Results 1 - 25 of 419) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-mips/syscalls/
truncate.S 4 .globl truncate
6 .ent truncate
8 truncate: label
22 .end truncate
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
AsyncFileWriter.h 46 virtual void truncate(long long length) = 0;
FileWriterSync.idl 37 [RaisesException] void truncate(long long size);
FileWriterSync.h 56 void truncate(long long length, ExceptionState&);
FileWriter.idl 45 [RaisesException] void truncate(long long size);
  /external/chromium_org/third_party/WebKit/public/web/
WebFileWriter.h 45 // Only one write or one truncate operation can be in progress at a time.
48 virtual void truncate(long long length) = 0;
50 // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
51 // Do not call cancel when there is no write or truncate in progress.
  /bionic/libc/arch-arm/syscalls/
truncate.S 6 ENTRY(truncate) function
15 END(truncate)
  /bionic/libc/arch-x86/syscalls/
truncate.S 6 ENTRY(truncate) function
24 END(truncate)
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 36 void truncate();
  /external/chromium_org/third_party/WebKit/Source/web/
AsyncFileWriterChromium.cpp 66 void AsyncFileWriterChromium::truncate(long long length) function in class:WebCore::AsyncFileWriterChromium
69 m_writer->truncate(length);
AsyncFileWriterChromium.h 57 virtual void truncate(long long length);
WorkerAsyncFileWriterChromium.cpp 74 void WorkerAsyncFileWriterChromium::truncate(long long length) function in class:WebCore::WorkerAsyncFileWriterChromium
WorkerAsyncFileWriterChromium.h 73 virtual void truncate(long long length);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ClipboardChromiumPosix.cpp 54 // Truncate an overly-long filename, reserving one character for a dot.
55 name.truncate(maxFilenameLength - extension.length() - 1);
ClipboardChromiumWin.cpp 53 // Truncate overly-long filenames, reserving one character for a dot.
54 name.truncate(maxFilenameLength - extension.length() - 1);
  /external/chromium_org/net/disk_cache/
net_log_parameters.cc 30 bool truncate,
36 if (truncate)
37 dict->SetBoolean("truncate", truncate);
105 bool truncate) {
107 index, offset, buf_len, truncate);
net_log_parameters.h 27 // read or write of an Entry. For reads, |truncate| must be false.
32 bool truncate);
35 // read or write completes. For reads, |truncate| must be false.
  /external/chromium_org/content/test/data/fileapi/
quota_test.js 19 fileWriter.truncate(2500 * 1024);
21 }, function(e) { fail('Open for 2nd truncate:' + fileErrorToString(e)); } );
36 fail('Unexpectedly succeeded to truncate. It should fail by quota.');
39 fileWriter.truncate(10000 * 1024);
41 }, function(e) { fail('Open for 1st truncate:' + fileErrorToString(e)); } );
  /external/chromium_org/net/disk_cache/simple/
simple_entry_operation.h 62 bool truncate,
81 bool truncate() const { return truncate_; } function in class:disk_cache::SimpleEntryOperation
95 bool truncate,
simple_entry_operation.cc 118 bool truncate,
130 truncate,
146 int other_op_end = (other_op.type() == TYPE_WRITE && other_op.truncate())
167 bool truncate,
179 truncate_(truncate),
  /libcore/luni/src/main/java/java/sql/
Blob.java 172 * Truncate the value of this {@code Blob} object to a specified length in
181 public void truncate(long len) throws SQLException; method in interface:Blob
  /external/llvm/include/llvm/MC/
MCAtom.h 57 virtual void truncate(uint64_t TruncPt) = 0;
144 /// \name Atom type specific split/truncate logic.
147 void truncate(uint64_t TruncPt) LLVM_OVERRIDE;
175 /// \name Atom type specific split/truncate logic.
178 void truncate(uint64_t TruncPt) LLVM_OVERRIDE;
  /external/chromium_org/net/disk_cache/v3/
entry_impl_v3.h 45 const CompletionCallback& callback, bool truncate);
104 bool truncate) OVERRIDE;
128 const CompletionCallback& callback, bool truncate);
151 bool PrepareTarget(int index, int offset, int buf_len, bool truncate);
  /external/chromium_org/webkit/renderer/fileapi/
webfilewriter_base.h 28 virtual void truncate(long long length);
  /external/libvpx/libvpx/tools/
wrap-commit-msg.py 63 fileobj.truncate(0)

Completed in 1130 milliseconds

1 2 3 4 5 6 7 8 91011>>