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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
truncate.c 12 int truncate(const char* pathname, off_t length) { function
  /bionic/libc/arch-arm64/syscalls/
truncate.S 5 ENTRY(truncate) function
14 END(truncate)
17 .equ truncate64, truncate
  /bionic/libc/arch-x86_64/syscalls/
truncate.S 5 ENTRY(truncate) function
15 END(truncate)
18 .equ truncate64, truncate
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
HierarchicalFolderTruncationTests.java 36 assertNull(truncate(null)); method
40 assertEquals("name", truncate("name"));
44 assertEquals("parent\u2215folder", truncate("parent/folder"));
48 assertEquals("grandparent\u2215parent\u2215folder", truncate("grandparent/parent/folder"));
53 truncate("grandparent/stuff/stuff/stuff/stuff/parent/folder"));
56 private String truncate(String hierarchy) { method in class:HierarchicalFolderTruncationTests
  /bionic/libc/arch-arm/syscalls/
truncate.S 5 ENTRY(truncate) function
14 END(truncate)
  /bionic/libc/arch-mips/syscalls/
truncate.S 5 ENTRY(truncate) function
19 END(truncate)
  /bionic/libc/arch-mips64/syscalls/
truncate.S 5 ENTRY(truncate) function
25 END(truncate)
28 .equ truncate64, truncate
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileWriter.h 46 // Only one write or one truncate operation can be in progress at a time.
50 virtual void truncate(long long length) = 0;
52 // 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.
53 // Do not call cancel when there is no write or truncate in progress.
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.idl 38 [RaisesException] void truncate(long long size);
FileWriterSync.h 56 void truncate(long long length, ExceptionState&);
FileWriter.idl 46 [RaisesException] void truncate(long long size);
  /external/e2fsprogs/resize/
test-resize 12 truncate -s 8T $FS
17 truncate -s 20T $FS
23 truncate -s 21T $FS
  /bionic/libc/arch-x86/syscalls/
truncate.S 5 ENTRY(truncate) function
26 END(truncate)
  /external/chromium_org/third_party/WebKit/Source/platform/clipboard/
ClipboardUtilitiesPosix.cpp 56 // Truncate an overly-long filename, reserving one character for a dot.
57 name.truncate(maxFilenameLength - extension.length() - 1);
ClipboardUtilitiesWin.cpp 69 // Truncate overly-long filenames, reserving one character for a dot.
70 name.truncate(maxFilenameLength - extension.length() - 1);
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 36 void truncate();
  /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)); } );
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
unistd.h 50 int truncate(const char *, off32_t);
61 int truncate(const char *, _off_t);
  /external/chromium_org/net/disk_cache/simple/
simple_entry_operation.cc 149 bool truncate,
163 truncate,
249 const bool truncate = false; local
263 truncate,
298 int other_op_end = (other_op.type() == TYPE_WRITE && other_op.truncate())
321 bool truncate,
335 truncate_(truncate),
simple_entry_operation.h 66 bool truncate,
108 bool truncate() const { return truncate_; } function in class:disk_cache::SimpleEntryOperation
124 bool truncate,
  /external/llvm/include/llvm/MC/MCAnalysis/
MCAtom.h 59 virtual void truncate(uint64_t TruncPt) = 0;
146 /// \name Atom type specific split/truncate logic.
149 void truncate(uint64_t TruncPt) override;
180 /// \name Atom type specific split/truncate logic.
183 void truncate(uint64_t TruncPt) override;
  /external/chromium_org/content/child/fileapi/
webfilewriter_base.h 27 virtual void truncate(long long length);

Completed in 413 milliseconds

1 2 3 4 5 6 7 8 91011>>