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

1 2 3 4 5

  /bionic/libc/arch-arm/syscalls/
truncate.S 5 ENTRY(truncate) function
14 END(truncate)
  /bionic/libc/arch-arm64/syscalls/
truncate.S 5 ENTRY(truncate) function
14 END(truncate)
17 .equ truncate64, 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
  /bionic/libc/arch-x86/syscalls/
truncate.S 5 ENTRY(truncate) function
26 END(truncate)
  /bionic/libc/arch-x86_64/syscalls/
truncate.S 5 ENTRY(truncate) function
15 END(truncate)
18 .equ truncate64, truncate
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
truncate.c 12 int truncate(const char* pathname, off_t length) { function
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 59 void OutputFile::truncate() { function in class:OutputFile
  /external/chromium_org/third_party/icu/source/common/
charstr.cpp 30 CharString &CharString::truncate(int32_t newLength) { function in class:CharString
  /external/icu/icu4c/source/common/
charstr.cpp 30 CharString &CharString::truncate(int32_t newLength) { function in class:CharString
  /external/chromium_org/content/child/fileapi/
webfilewriter_base.cc 26 void WebFileWriterBase::truncate(long long length) { function in class:content::WebFileWriterBase
42 // When we cancel a write/truncate, we always get back the result of the write
45 // success [of the write/truncate, in a DidWrite(XXX, true)/DidSucceed() call]
95 // Write never gets a DidSucceed call, so this is either a cancel or truncate
99 // A truncate succeeded, with no complications.
106 // This is the success call of the truncate, which we'll eat, even though
108 // so the truncate will eventually return an error.
124 // A write or truncate failed.
129 // This is the failure of a write or truncate; the next message should be
131 // the write/truncate could have failed for other reasons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.cpp 71 void FileWriterSync::truncate(long long offset, ExceptionState& exceptionState) function in class:blink::FileWriterSync
80 writer()->truncate(offset);
  /external/llvm/lib/MC/MCAnalysis/
MCAtom.cpp 54 void MCDataAtom::truncate(uint64_t TruncPt) { function in class:MCDataAtom
84 void MCTextAtom::truncate(uint64_t TruncPt) { function in class:MCTextAtom
  /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
Clob.java 174 * truncate this {@code Clob}.
178 public void truncate(long len) throws SQLException; method in interface:Clob
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
RootInputStream.java 66 public void truncate() { method in class:RootInputStream
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 15 f.truncate([size]) # truncate file at to at most size (default: current pos)
114 def truncate(self, size=None): member in class:DBRecIO
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 15 f.truncate([size]) # truncate file at to at most size (default: current pos)
114 def truncate(self, size=None): member in class:DBRecIO
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
breadcrumbs_controller.js 157 this.truncate();
161 * Updates breadcrumbs widths in order to truncate it properly.
163 BreadcrumbsController.prototype.truncate = function() {
231 // Do not truncate separator. Instead let the last crumb be longer.
235 // Truncate the last visible crumb.
  /external/chromium_org/third_party/icu/source/tools/toolutil/
denseranges.cpp 50 void truncate(int32_t newLength) { function in class:__anon17033::LargestGaps
148 gaps.truncate(num-1);
  /external/icu/icu4c/source/tools/toolutil/
denseranges.cpp 50 void truncate(int32_t newLength) { function in class:__anon26838::LargestGaps
148 gaps.truncate(num-1);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 61 if (FileHandle::Truncate == (pMode & FileHandle::Truncate))
148 bool FileHandle::truncate(size_t pSize) function in class:FileHandle
  /libcore/luni/src/main/java/java/nio/channels/
FileChannel.java 560 public abstract FileChannel truncate(long size) throws IOException; method in class:FileChannel
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
StringIO.py 16 f.truncate([size]) # truncate file at to at most size (default: current pos)
187 def truncate(self, size=None): member in class:StringIO
188 """Truncate the file's size.
316 f.truncate(length/2)
320 raise RuntimeError, 'truncate did not adjust length'

Completed in 796 milliseconds

1 2 3 4 5