/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/ |
mysql-modelingschema.truncate | 2 -- $ mysql -u root -p < mysql-modelingschema.truncate 5 TRUNCATE TABLE `bugs`; 6 TRUNCATE TABLE `commits`; 7 TRUNCATE TABLE `cvsfiles`; 8 TRUNCATE TABLE `filetags`; 9 TRUNCATE TABLE `tags`;
|
/bionic/libc/arch-mips/syscalls/ |
truncate.S | 4 .globl truncate 6 .ent truncate 8 truncate: label 22 .end truncate
|
/bionic/libc/arch-arm/syscalls/ |
truncate.S | 6 ENTRY(truncate) function 15 END(truncate)
|
/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)); } );
|
/bionic/libc/arch-x86/syscalls/ |
truncate.S | 6 ENTRY(truncate) function 24 END(truncate)
|
/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
truncate_operation_unittest.cc | 32 TEST_F(TruncateOperationTest, Truncate) { 42 operation_->Truncate( 44 1, // Truncate to 1 byte. 77 operation_->Truncate( 79 -1, // Truncate to "-1" byte. 90 operation_->Truncate( 92 1, // Truncate to 1 byte. 105 operation_->Truncate(
|
truncate_operation.h | 34 // This class encapsulates the drive Truncate function. It is responsible for 48 // Performs the truncate operation on the file at drive path |file_path| to 51 void Truncate(const base::FilePath& file_path, 55 // Part of Truncate(). Called after EnsureFileDownloadedByPath() is complete. 63 // Part of Truncate(). Called after TruncateOnBlockingPool() is complete.
|
/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/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/native_client_sdk/src/libraries/nacl_io/syscalls/ |
truncate.c | 12 int truncate(const char* pathname, off_t length) { function
|
/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.
|
WebFileWriterClient.h | 45 // Called once when the truncate completes successfully. 48 // Called if the write or truncate fails, or if it is cancelled before the write or truncate completes. Completion of an operation will be signalled exactly once, either by didFail, didTruncate, or didWrite(..., true).
|
/external/clang/test/Index/ |
comment-with-preamble.c | 1 // Make sure the preable does not truncate comments.
|
/external/llvm/test/CodeGen/X86/ |
widen_conv-1.ll | 4 ; truncate v2i64 to v2i32
|
avx-fp2int.ll | 3 ;; Check that FP_TO_SINT and FP_TO_UINT generate convert with truncate
|
/external/chromium_org/third_party/sqlite/src/test/ |
jrnlmode.test | 32 set temp_truncate truncate 94 PRAGMA journal_mode = truncate; 96 } {truncate} 103 } [list truncate truncate [temp_journal_mode truncate]] 182 PRAGMA journal_mode = TRUNCATE; 191 } [list truncate [temp_journal_mode truncate] memory memory memory] 292 # This will attempt to truncate the database file. Check that thi [all...] |
wal6.test | 29 set all_journal_modes {delete persist truncate memory off} 50 if {$jmode=="persist" || $jmode=="truncate"} { 72 if {$jmode=="persist" || $jmode=="truncate"} {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_largefile.py | 106 print('try truncate') 110 if not hasattr(f, 'truncate'): 111 raise unittest.SkipTest("open().truncate() not available on this system") 115 # Cut it back via seek + truncate with no argument. 118 f.truncate() 122 # Ensure that truncate(smaller than true size) shrinks 126 f.truncate(newsize) 131 # XXX truncate(larger than true size) is ill-defined 134 f.truncate(1) 190 if hasattr(f, 'truncate') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_largefile.py | 106 print('try truncate') 110 if not hasattr(f, 'truncate'): 111 raise unittest.SkipTest("open().truncate() not available on this system") 115 # Cut it back via seek + truncate with no argument. 118 f.truncate() 122 # Ensure that truncate(smaller than true size) shrinks 126 f.truncate(newsize) 131 # XXX truncate(larger than true size) is ill-defined 134 f.truncate(1) 190 if hasattr(f, 'truncate') [all...] |
/external/webrtc/src/common_audio/signal_processing/ |
resample_by_2_internal.c | 49 // scale down and truncate 56 // scale down and truncate 86 // scale down and truncate 144 // scale down and truncate 151 // scale down and truncate 181 // scale down and truncate 216 // scale down and truncate 223 // scale down and truncate 246 // scale down and truncate 253 // scale down and truncate [all...] |
/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),
|
/external/chromium/net/disk_cache/ |
net_log_parameters.cc | 27 int index, int offset, int buf_len, bool truncate) 28 : index_(index), offset_(offset), buf_len_(buf_len), truncate_(truncate) { 37 dict->SetBoolean("truncate", truncate_);
|
/external/clang/test/CodeGen/ |
globalinit.c | 20 char string2[4] = "string"; // truncate init
|
/external/clang/test/CodeGenObjC/ |
encode-test-3.m | 20 char e[1] = @encode(int); // truncate
|