• Home
  • Raw
  • Download

Lines Matching refs:FixedArray

83 class FixedArray {
126 FixedArray(
127 const FixedArray& other,
129 : FixedArray(other.begin(), other.end(), a) {} in noexcept()
131 FixedArray(
132 FixedArray&& other,
134 : FixedArray(std::make_move_iterator(other.begin()), in noexcept()
139 explicit FixedArray(size_type n, const allocator_type& a = allocator_type())
148 FixedArray(size_type n, const value_type& val,
156 FixedArray(std::initializer_list<value_type> init_list,
158 : FixedArray(init_list.begin(), init_list.end(), a) {}
164 FixedArray(Iterator first, Iterator last,
170 ~FixedArray() noexcept { in ~FixedArray()
178 void operator=(FixedArray&&) = delete;
179 void operator=(const FixedArray&) = delete;
350 friend bool operator==(const FixedArray& lhs, const FixedArray& rhs) {
354 friend bool operator!=(const FixedArray& lhs, const FixedArray& rhs) {
358 friend bool operator<(const FixedArray& lhs, const FixedArray& rhs) {
363 friend bool operator>(const FixedArray& lhs, const FixedArray& rhs) {
367 friend bool operator<=(const FixedArray& lhs, const FixedArray& rhs) {
371 friend bool operator>=(const FixedArray& lhs, const FixedArray& rhs) {
376 friend H AbslHashValue(H h, const FixedArray& v) { in AbslHashValue()
498 constexpr size_t FixedArray<T, N, A>::kInlineBytesDefault;
501 constexpr typename FixedArray<T, N, A>::size_type
502 FixedArray<T, N, A>::inline_elements;
505 void FixedArray<T, N, A>::NonEmptyInlinedStorage::AnnotateConstruct( in AnnotateConstruct()
506 typename FixedArray<T, N, A>::size_type n) { in AnnotateConstruct()
518 void FixedArray<T, N, A>::NonEmptyInlinedStorage::AnnotateDestruct( in AnnotateDestruct()
519 typename FixedArray<T, N, A>::size_type n) { in AnnotateDestruct()