• Home
  • Raw
  • Download

Lines Matching refs:FixedArray

78 class FixedArray {
121 FixedArray(
122 const FixedArray& other,
124 : FixedArray(other.begin(), other.end(), a) {} in noexcept()
126 FixedArray(
127 FixedArray&& other,
129 : FixedArray(std::make_move_iterator(other.begin()), in noexcept()
134 explicit FixedArray(size_type n, const allocator_type& a = allocator_type())
143 FixedArray(size_type n, const value_type& val,
151 FixedArray(std::initializer_list<value_type> init_list,
153 : FixedArray(init_list.begin(), init_list.end(), a) {}
159 FixedArray(Iterator first, Iterator last,
165 ~FixedArray() noexcept { in ~FixedArray()
173 void operator=(FixedArray&&) = delete;
174 void operator=(const FixedArray&) = delete;
345 friend bool operator==(const FixedArray& lhs, const FixedArray& rhs) {
349 friend bool operator!=(const FixedArray& lhs, const FixedArray& rhs) {
353 friend bool operator<(const FixedArray& lhs, const FixedArray& rhs) {
358 friend bool operator>(const FixedArray& lhs, const FixedArray& rhs) {
362 friend bool operator<=(const FixedArray& lhs, const FixedArray& rhs) {
366 friend bool operator>=(const FixedArray& lhs, const FixedArray& rhs) {
371 friend H AbslHashValue(H h, const FixedArray& v) { in AbslHashValue()
493 constexpr size_t FixedArray<T, N, A>::kInlineBytesDefault;
496 constexpr typename FixedArray<T, N, A>::size_type
497 FixedArray<T, N, A>::inline_elements;
500 void FixedArray<T, N, A>::NonEmptyInlinedStorage::AnnotateConstruct( in AnnotateConstruct()
501 typename FixedArray<T, N, A>::size_type n) { in AnnotateConstruct()
513 void FixedArray<T, N, A>::NonEmptyInlinedStorage::AnnotateDestruct( in AnnotateDestruct()
514 typename FixedArray<T, N, A>::size_type n) { in AnnotateDestruct()