HomeSort by relevance Sort by last modified time
    Searched refs:GetSize (Results 126 - 150 of 529) sorted by null

1 2 3 4 56 7 8 91011>>

  /build/tools/ijar/
ijar.cc 121 size_t in_length = in->GetSize();
122 size_t out_length = out->GetSize();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 58 uptr GetSize() const { return atomic_load(&max_size_, memory_order_acquire); }
71 if (cache_.Size() > GetSize() && recycle_mutex_.TryLock())
  /external/lzma/CPP/7zip/Common/
StreamObjects.h 70 size_t GetSize() const { return _size; }
109 UInt64 GetSize() const { return _size; }
  /external/pdfium/core/include/fxcrt/
fx_xml.h 29 int GetSize() const;
71 FX_DWORD CountAttrs() const { return m_AttrMap.GetSize(); }
  /external/pdfium/core/src/fpdfdoc/
pdf_vt.h 179 FX_BOOL IsEmpty() { return CFX_ArrayTemplate<TYPE>::GetSize() <= 0; }
181 if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) {
187 if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) {
207 int32_t GetSize() const { return m_Lines.GetSize(); }
211 for (int32_t i = 0, sz = GetSize(); i < sz; i++) {
218 if (m_nTotal >= GetSize()) {
228 for (int32_t i = GetSize() - 1; i >= m_nTotal; i--) {
  /external/pdfium/core/src/fxcrt/
fxcrt_windows.cpp 81 FX_FILESIZE CFXCRT_FileAccess_Win64::GetSize() const {
141 if (pos >= GetSize()) {
xml_int.h 58 return m_nStart + (FX_FILESIZE)m_dwSize >= m_pFileRead->GetSize();
68 FX_FILESIZE nLength = m_pFileRead->GetSize();
  /external/pdfium/xfa/src/fgas/src/layout/
fx_unicode.cpp 10 FXSYS_assert(iStart > -1 && iStart < tpos.GetSize());
11 FXSYS_assert(iEnd > -1 && iEnd < tpos.GetSize());
  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonBitMatrix.cpp 110 if (row == NULL || row->GetSize() < m_width) {
130 for (int32_t i = 0; i < col->GetBits().GetSize(); i++) {
BC_GlobalHistogramBinarizer.cpp 109 if (m_luminance.GetSize() < luminanceSize) {
112 if (m_buckets.GetSize() <= 0) {
124 int32_t numBuckets = buckets.GetSize();
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417CodewordDecoder.cpp 85 for (int32_t i = 0; i < moduleBitCount.GetSize(); i++) {
97 for (int32_t i = 0; i < bitCountRatios.GetSize(); i++) {
  /art/runtime/lambda/
closure.h 45 size_t GetSize() const;
49 // The target_size must be at least as large as GetSize().
164 // The runtime size can always be determined through GetSize().
  /external/libbrillo/brillo/streams/
input_stream_set.h 68 uint64_t GetSize() const override;
tls_stream.h 44 uint64_t GetSize() const override { return 0; }
  /external/lzma/CPP/7zip/
IStream.h 95 STDMETHOD(GetSize)(UInt64 *size) PURE;
  /external/opencv/
WLNonFileByteStream.cpp 146 int WLNonFileByteStream::GetSize()
  /external/opencv3/modules/python/test/
calchist.py 9 hsv = cv.CreateImage(cv.GetSize(src), 8, 3)
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_document.cpp 144 if (iPage < 0 || iPage >= m_PageList.GetSize())
232 FX_DWORD nPages = m_PageList.GetSize();
257 return m_PageList.GetSize();
302 for (int i = 0; i < m_PageList.GetSize(); i++) {
  /external/pdfium/xfa/src/fdp/src/fde/
fde_object.h 48 virtual int32_t CountDashArray() const { return m_DashArray.GetSize(); }
51 return dashArray.GetSize();
63 return m_CompoundPatterns.GetSize();
219 virtual int32_t CountGradientColors() const { return m_GradColors.GetSize(); }
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_manager_win.h 79 virtual inline int32_t GetSize(uint32_t* inUse = 0)
  /external/libweave/src/
access_black_list_manager_impl_unittest.cc 60 EXPECT_EQ(1u, manager_->GetSize());
102 for (size_t i = manager_->GetSize(); i < manager_->GetCapacity(); ++i) {
106 EXPECT_EQ(i + 1, manager_->GetSize());
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRAlignmentPatternFinder.cpp 46 for (int32_t i = 0; i < m_possibleCenters.GetSize(); i++) {
106 if (m_possibleCenters.GetSize() != 0) {
189 int32_t max = m_possibleCenters.GetSize();
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffdocview.cpp 141 int32_t iCount = m_arrNullTestMsg.GetSize();
171 int32_t iNewAdds = m_NewAddedNodes.GetSize();
614 int32_t iSubforms = m_IndexChangedSubforms.GetSize();
656 int32_t iAccs = m_CalculateAccs.GetSize();
667 int32_t iCount = pGlobalData ? pGlobalData->m_Globals.GetSize() : 0;
673 int32_t iAccs = m_CalculateAccs.GetSize();
683 while (iIndex < m_CalculateAccs.GetSize()) {
705 int32_t iCounts = m_CalculateAccs.GetSize();
710 for (int32_t i = 0; i < m_CalculateAccs.GetSize(); i++) {
738 int32_t iCounts = m_ValidateAccs.GetSize();
    [all...]
  /external/webrtc/webrtc/base/
multipart.cc 183 if (!parts_[i]->GetSize(&part_size)) {
211 bool MultipartStream::GetSize(size_t* size) const {
214 if (!parts_[i]->GetSize(&part_size)) {
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_create.cpp 162 if (pFile->AppendBlock(acc.GetData(), acc.GetSize()) < 0) {
165 offset += acc.GetSize();
344 int32_t iSize = pXRef->m_IndexArray.GetSize() / 2;
417 m_dwSize = destAcc.GetSize();
425 m_dwSize = m_Acc.GetSize();
434 ::FlateEncode(m_Acc.GetData(), m_Acc.GetSize(), m_pData, m_dwSize);
536 if (m_ObjNumArray.GetSize() == 0) {
546 int32_t iCount = m_ObjNumArray.GetSize();
639 if (m_ObjStream.m_ObjNumArray.GetSize() < pCreator->m_ObjectStreamSize &&
653 if (m_ObjStream.m_ObjNumArray.GetSize() < pCreator->m_ObjectStreamSize &
    [all...]

Completed in 1522 milliseconds

1 2 3 4 56 7 8 91011>>