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

1 2 3

  /external/pdfium/core/src/fxcrt/
fxcrt_posix.h 35 FX_BOOL Truncate(FX_FILESIZE szFile) override;
fxcrt_windows.h 33 FX_BOOL Truncate(FX_FILESIZE szFile) override;
fxcrt_platforms.h 35 FX_BOOL Truncate(FX_FILESIZE szFile) override;
fxcrt_platforms.cpp 129 FX_BOOL CFXCRT_FileAccess_CRT::Truncate(FX_FILESIZE szFile) {
fxcrt_posix.cpp 124 FX_BOOL CFXCRT_FileAccess_Posix::Truncate(FX_FILESIZE szFile) {
fxcrt_windows.cpp 166 FX_BOOL CFXCRT_FileAccess_Win64::Truncate(FX_FILESIZE szFile) {
extension.h 32 virtual FX_BOOL Truncate(FX_FILESIZE szFile) = 0;
  /external/llvm/lib/Support/
ScaledNumber.cpp 284 // Find where to truncate.
285 size_t Truncate =
288 // Check if there's anything to truncate.
289 if (Truncate >= Str.size())
292 bool Carry = doesRoundUp(Str[Truncate]);
294 return stripTrailingZeros(Str.substr(0, Truncate));
297 for (std::string::reverse_iterator I(Str.begin() + Truncate), E = Str.rend();
312 return stripTrailingZeros(std::string(Carry, '1') + Str.substr(0, Truncate));
  /external/dng_sdk/source/
dng_string.h 81 void Truncate (uint32 maxBytes);
dng_camera_profile.cpp 1268 baseName.Truncate (len - 5);
1284 temp.Truncate (len - 1);
1289 baseName.Truncate (len - 7);
1311 temp.Truncate (len - 1);
1316 baseName.Truncate (len - 3);
dng_iptc.cpp 653 ss.Truncate (maxChars);
686 sss.Truncate (middle);
706 ss.Truncate (lower);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 60 if (FileHandle::Truncate == (pMode & FileHandle::Truncate))
144 bool FileHandle::truncate(size_t pSize) { function in class:mcld::FileHandle
  /frameworks/compile/mclinker/include/mcld/Support/
FileHandle.h 43 Truncate = 0x10,
82 // truncate - truncate the file up to the pSize.
83 bool truncate(size_t pSize);
  /external/libbrillo/brillo/streams/
file_stream.h 30 TRUNCATE_EXISTING, // Open/truncate existing file. Fail if doesn't exist.
46 virtual int Truncate(off64_t length) const = 0;
file_stream.cc 67 int Truncate(off64_t length) const override {
384 if (fd_interface_->Truncate(size) >= 0)
file_stream_unittest.cc 130 MOCK_CONST_METHOD1(Truncate, int(off64_t));
272 EXPECT_CALL(fd_mock(), Truncate(0)).WillOnce(Return(0));
275 EXPECT_CALL(fd_mock(), Truncate(123)).WillOnce(Return(0));
278 EXPECT_CALL(fd_mock(), Truncate(kMaxSize)).WillOnce(Return(0));
285 EXPECT_CALL(fd_mock(), Truncate(1235)).WillOnce(SetErrnoAndReturn(EIO, -1));
    [all...]
  /external/v8/test/mjsunit/regress/
regress-117409.js 39 // Truncate array to 0 elements, at which point backing store will be replaced
  /external/v8/src/
string-builder.h 352 Handle<String> result = SeqString::Truncate(string, length);
402 set_current_part(SeqString::Truncate(
vector.h 100 void Truncate(int length) {
  /external/v8/tools/testrunner/local/
progress.py 223 def Truncate(self, string, length):
243 status = self.Truncate(status, 78)
  /external/pdfium/public/
fpdfview.h 350 FPDF_RESULT (*Truncate)(FPDF_LPVOID clientData, FPDF_DWORD size);
    [all...]
  /external/v8/test/cctest/
test-sampler-api.cc 148 sample_.data().Truncate(static_cast<int>(frames_count));
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 258 FileHandle::ReadWrite | FileHandle::Truncate | FileHandle::Create);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msrdc.h 121 STDMETHOD_(HRESULT,Truncate)(THIS) PURE;
131 #define IRdcFileWriter_Truncate() (This)->lpVtbl->Truncate(This)
152 STDMETHOD_(HRESULT,CreateTable)(THIS_ wchar_t *path,WINBOOL truncate,BYTE *securityDescriptor,DWORD recordSize,RdcCreatedTables *isNew) PURE;
153 STDMETHOD_(HRESULT,CreateTableIndirect)(THIS_ IRdcFileWriter *fileIdFile,WINBOOL truncate,DWORD recordSize,RdcCreatedTables *isNew) PURE;
166 #define ISimilarityFileIdTable_CreateTable(This,path,truncate,securityDescriptor,recordSize,isNew) (This)->lpVtbl->CreateTable(This,path,truncate,securityDescriptor,recordSize,isNew)
167 #define ISimilarityFileIdTable_CreateTableIndirect(This,fileIdFile,truncate,recordSize,isNew) (This)->lpVtbl->CreateTableIndirect(This,fileIdFile,truncate,recordSize,isNew)
324 STDMETHOD_(HRESULT,CreateTable)(THIS_ wchar_t *path,WINBOOL truncate,BYTE *securityDescriptor,DWORD recordSize,RdcCreatedTables *isNew) PURE;
325 STDMETHOD_(HRESULT,CreateTableIndirect)(THIS_ ISimilarityTraitsMapping *mapping,IRdcFileWriter *fileIdFile,WINBOOL truncate,DWORD recordSize,RdcCreatedTables *isNew) PURE
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field.h 140 void Truncate(int new_size);
147 // Like Truncate() if new_size <= size(), otherwise this is
719 this->Truncate(this->size() - num);
821 inline void RepeatedField<Element>::Truncate(int new_size) {
    [all...]

Completed in 315 milliseconds

1 2 3