reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

usr/include/c++/7.4.0/bits/stl_bvector.h
  555     typedef size_t                                       size_type;

References

include/llvm/ADT/MapVector.h
   47   using size_type = typename VectorType::size_type;
include/llvm/ADT/SetVector.h
   52   using size_type = typename vector_type::size_type;
include/llvm/CodeGen/PBQP/Graph.h
   65       using AdjEdgeIdx = AdjEdgeList::size_type;
  293       typename NodeVector::size_type size() const {
  310       typename NodeVector::size_type size() const {
  332       typename NodeEntry::AdjEdgeList::size_type size() const {
  500     typename NodeEntry::AdjEdgeList::size_type getNodeDegree(NodeId NId) const {
include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
  204     using SourceModuleHandle = typename SourceModulesList::size_type;
include/llvm/Support/CommandLine.h
 1470   using size_type = typename std::vector<DataType>::size_type;
include/llvm/XRay/Trace.h
   56   using size_type = RecordVector::size_type;
tools/lldb/include/lldb/Utility/RangeMap.h
  471   void Reserve(typename Collection::size_type size) { m_entries.reserve(size); }
tools/lldb/source/Commands/CommandObjectMemory.cpp
 1168       decltype(bad_char_heuristic)::size_type bcu_idx = buffer[idx];
usr/include/c++/7.4.0/bits/stl_bvector.h
  589     vector(size_type __n, const allocator_type& __a = allocator_type())
  593     vector(size_type __n, const bool& __value, 
  755     assign(size_type __n, const bool& __x)
  830     size_type
  832     { return size_type(end() - begin()); }
  834     size_type
  837       const size_type __isize =
  840       const size_type __asize
  846     size_type
  848     { return size_type(const_iterator(this->_M_impl._M_end_addr(), 0)
  856     operator[](size_type __n)
  863     operator[](size_type __n) const
  871     _M_range_check(size_type __n) const
  882     at(size_type __n)
  886     at(size_type __n) const
  890     reserve(size_type __n)
  992     insert(const_iterator __position, size_type __n, const bool& __x)
 1031     resize(size_type __new_size, bool __x = bool())
 1090     _M_initialize(size_type __n)
 1107     _M_reallocate(size_type __n);
 1148 	const size_type __n = std::distance(__first, __last);
 1202 	const size_type __len = std::distance(__first, __last);
 1233     _M_fill_insert(iterator __position, size_type __n, bool __x);
 1255     size_type
 1256     _M_check_len(size_type __n, const char* __s) const
 1261       const size_type __len = size() + std::max(size(), __n);
usr/include/c++/7.4.0/bits/stl_queue.h
  448       typedef typename	_Sequence::size_type		 size_type;
usr/include/c++/7.4.0/bits/stl_stack.h
  129       typedef typename _Sequence::size_type		size_type;
usr/include/c++/7.4.0/bits/stl_vector.h
  283       vector(size_type __n, const allocator_type& __a = allocator_type())
  295       vector(size_type __n, const value_type& __value,
  501       assign(size_type __n, const value_type& __val)
  669       size_type
  671       { return size_type(this->_M_impl._M_finish - this->_M_impl._M_start); }
  674       size_type
  689       resize(size_type __new_size)
  709       resize(size_type __new_size, const value_type& __x)
  749       size_type
  751       { return size_type(this->_M_impl._M_end_of_storage
  780       reserve(size_type __n);
  795       operator[](size_type __n) _GLIBCXX_NOEXCEPT
  813       operator[](size_type __n) const _GLIBCXX_NOEXCEPT
  822       _M_range_check(size_type __n) const
  844       at(size_type __n)
  862       at(size_type __n) const
 1084       insert(const_iterator __position, size_type __n, const value_type& __x)
 1257 	_M_allocate_and_copy(size_type __n,
 1327 	  const size_type __n = std::distance(__first, __last);
 1339       _M_fill_initialize(size_type __n, const value_type& __value)
 1349       _M_default_initialize(size_type __n)
 1391       _M_fill_assign(size_type __n, const value_type& __val);
 1430       _M_fill_insert(iterator __pos, size_type __n, const value_type& __x);
 1435       _M_default_append(size_type __n);
 1501       size_type
 1502       _M_check_len(size_type __n, const char* __s) const
 1507 	const size_type __len = size() + std::max(size(), __n);
usr/include/c++/7.4.0/bits/vector.tcc
   66     reserve(size_type __n)
   72 	  const size_type __old_size = size();
  121       const size_type __n = __position - begin();
  203 	  const size_type __xlen = __x.size();
  282 	const size_type __len = std::distance(__first, __last);
  403       const size_type __len =
  405       const size_type __elems_before = __position - begin();
  459     _M_fill_insert(iterator __position, size_type __n, const value_type& __x)
  463 	  if (size_type(this->_M_impl._M_end_of_storage
  472 	      const size_type __elems_after = end() - __position;
  502 	      const size_type __len =
  504 	      const size_type __elems_before = __position - begin();
  555     _M_default_append(size_type __n)
  559 	  if (size_type(this->_M_impl._M_end_of_storage
  568 	      const size_type __len =
  570 	      const size_type __size = this->size();
  636 	    const size_type __n = std::distance(__first, __last);
  637 	    if (size_type(this->_M_impl._M_end_of_storage
  640 		const size_type __elems_after = end() - __position;
  671 		const size_type __len =
  714     _M_reallocate(size_type __n)
  728     _M_fill_insert(iterator __position, size_type __n, bool __x)
  741 	  const size_type __len = 
  765 	    size_type __n = std::distance(__first, __last);
  776 		const size_type __len =
  805 	  const size_type __len =
utils/unittest/googlemock/include/gmock/gmock-matchers.h
 2417     typedef typename ContainerView::type::size_type SizeType;