Home
last modified time | relevance | path

Searched refs:FixedArray (Results 1 – 25 of 50) sorted by relevance

12

/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/
Dfixed_array_test.cc96 absl::FixedArray<int, 10> on_stack(5); in TEST()
98 absl::FixedArray<int, 10> stack_copy = on_stack; in TEST()
102 absl::FixedArray<int, 10> allocated(15); in TEST()
104 absl::FixedArray<int, 10> alloced_copy = allocated; in TEST()
110 absl::FixedArray<std::unique_ptr<int>, 10> on_stack(5); in TEST()
115 absl::FixedArray<std::unique_ptr<int>, 10> stack_copy = std::move(on_stack); in TEST()
119 absl::FixedArray<std::unique_ptr<int>, 10> allocated(15); in TEST()
124 absl::FixedArray<std::unique_ptr<int>, 10> alloced_copy = in TEST()
134 absl::FixedArray<int> array(4); in TEST()
140 absl::FixedArray<int> array(1048576); in TEST()
[all …]
Dfixed_array.h83 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,
[all …]
Dfixed_array_exception_safety_test.cc47 using FixedArr = absl::FixedArray<Thrower, kInlined>;
48 using FixedArrWithAlloc = absl::FixedArray<Thrower, kInlined, ThrowAlloc>;
50 using MoveFixedArr = absl::FixedArray<MoveThrower, kInlined>;
52 absl::FixedArray<MoveThrower, kInlined, MoveThrowAlloc>;
126 using SmallFixedArr = absl::FixedArray<Thrower, small_inlined>; in TEST()
140 absl::FixedArray<Thrower, small_inlined, ThrowAlloc>; in TEST()
/external/openscreen/third_party/abseil/src/absl/container/
Dfixed_array_test.cc96 absl::FixedArray<int, 10> on_stack(5); in TEST()
98 absl::FixedArray<int, 10> stack_copy = on_stack; in TEST()
102 absl::FixedArray<int, 10> allocated(15); in TEST()
104 absl::FixedArray<int, 10> alloced_copy = allocated; in TEST()
110 absl::FixedArray<std::unique_ptr<int>, 10> on_stack(5); in TEST()
115 absl::FixedArray<std::unique_ptr<int>, 10> stack_copy = std::move(on_stack); in TEST()
119 absl::FixedArray<std::unique_ptr<int>, 10> allocated(15); in TEST()
124 absl::FixedArray<std::unique_ptr<int>, 10> alloced_copy = in TEST()
134 absl::FixedArray<int> array(4); in TEST()
140 absl::FixedArray<int> array(1048576); in TEST()
[all …]
Dfixed_array.h83 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,
[all …]
Dfixed_array_exception_safety_test.cc47 using FixedArr = absl::FixedArray<Thrower, kInlined>;
48 using FixedArrWithAlloc = absl::FixedArray<Thrower, kInlined, ThrowAlloc>;
50 using MoveFixedArr = absl::FixedArray<MoveThrower, kInlined>;
52 absl::FixedArray<MoveThrower, kInlined, MoveThrowAlloc>;
126 using SmallFixedArr = absl::FixedArray<Thrower, small_inlined>; in TEST()
140 absl::FixedArray<Thrower, small_inlined, ThrowAlloc>; in TEST()
Dfixed_array_benchmark.cc39 absl::FixedArray<C, stack_size> fa(size); in BM_FixedArray()
/external/libtextclassifier/abseil-cpp/absl/container/
Dfixed_array_test.cc96 absl::FixedArray<int, 10> on_stack(5); in TEST()
98 absl::FixedArray<int, 10> stack_copy = on_stack; in TEST()
102 absl::FixedArray<int, 10> allocated(15); in TEST()
104 absl::FixedArray<int, 10> alloced_copy = allocated; in TEST()
110 absl::FixedArray<std::unique_ptr<int>, 10> on_stack(5); in TEST()
115 absl::FixedArray<std::unique_ptr<int>, 10> stack_copy = std::move(on_stack); in TEST()
119 absl::FixedArray<std::unique_ptr<int>, 10> allocated(15); in TEST()
124 absl::FixedArray<std::unique_ptr<int>, 10> alloced_copy = in TEST()
134 absl::FixedArray<int> array(4); in TEST()
140 absl::FixedArray<int> array(1048576); in TEST()
[all …]
Dfixed_array.h83 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,
[all …]
Dfixed_array_exception_safety_test.cc47 using FixedArr = absl::FixedArray<Thrower, kInlined>;
48 using FixedArrWithAlloc = absl::FixedArray<Thrower, kInlined, ThrowAlloc>;
50 using MoveFixedArr = absl::FixedArray<MoveThrower, kInlined>;
52 absl::FixedArray<MoveThrower, kInlined, MoveThrowAlloc>;
126 using SmallFixedArr = absl::FixedArray<Thrower, small_inlined>; in TEST()
140 absl::FixedArray<Thrower, small_inlined, ThrowAlloc>; in TEST()
/external/angle/third_party/abseil-cpp/absl/container/
Dfixed_array_test.cc96 absl::FixedArray<int, 10> on_stack(5); in TEST()
98 absl::FixedArray<int, 10> stack_copy = on_stack; in TEST()
102 absl::FixedArray<int, 10> allocated(15); in TEST()
104 absl::FixedArray<int, 10> alloced_copy = allocated; in TEST()
110 absl::FixedArray<std::unique_ptr<int>, 10> on_stack(5); in TEST()
115 absl::FixedArray<std::unique_ptr<int>, 10> stack_copy = std::move(on_stack); in TEST()
119 absl::FixedArray<std::unique_ptr<int>, 10> allocated(15); in TEST()
124 absl::FixedArray<std::unique_ptr<int>, 10> alloced_copy = in TEST()
134 absl::FixedArray<int> array(4); in TEST()
140 absl::FixedArray<int> array(1048576); in TEST()
[all …]
Dfixed_array.h78 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,
[all …]
Dfixed_array_exception_safety_test.cc47 using FixedArr = absl::FixedArray<Thrower, kInlined>;
48 using FixedArrWithAlloc = absl::FixedArray<Thrower, kInlined, ThrowAlloc>;
50 using MoveFixedArr = absl::FixedArray<MoveThrower, kInlined>;
52 absl::FixedArray<MoveThrower, kInlined, MoveThrowAlloc>;
126 using SmallFixedArr = absl::FixedArray<Thrower, small_inlined>; in TEST()
140 absl::FixedArray<Thrower, small_inlined, ThrowAlloc>; in TEST()
/external/webrtc/third_party/abseil-cpp/absl/container/
Dfixed_array_test.cc96 absl::FixedArray<int, 10> on_stack(5); in TEST()
98 absl::FixedArray<int, 10> stack_copy = on_stack; in TEST()
102 absl::FixedArray<int, 10> allocated(15); in TEST()
104 absl::FixedArray<int, 10> alloced_copy = allocated; in TEST()
110 absl::FixedArray<std::unique_ptr<int>, 10> on_stack(5); in TEST()
115 absl::FixedArray<std::unique_ptr<int>, 10> stack_copy = std::move(on_stack); in TEST()
119 absl::FixedArray<std::unique_ptr<int>, 10> allocated(15); in TEST()
124 absl::FixedArray<std::unique_ptr<int>, 10> alloced_copy = in TEST()
134 absl::FixedArray<int> array(4); in TEST()
140 absl::FixedArray<int> array(1048576); in TEST()
[all …]
Dfixed_array.h78 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,
[all …]
Dfixed_array_exception_safety_test.cc47 using FixedArr = absl::FixedArray<Thrower, kInlined>;
48 using FixedArrWithAlloc = absl::FixedArray<Thrower, kInlined, ThrowAlloc>;
50 using MoveFixedArr = absl::FixedArray<MoveThrower, kInlined>;
52 absl::FixedArray<MoveThrower, kInlined, MoveThrowAlloc>;
126 using SmallFixedArr = absl::FixedArray<Thrower, small_inlined>; in TEST()
140 absl::FixedArray<Thrower, small_inlined, ThrowAlloc>; in TEST()
/external/abseil-cpp/absl/container/
Dfixed_array_test.cc96 absl::FixedArray<int, 10> on_stack(5); in TEST()
98 absl::FixedArray<int, 10> stack_copy = on_stack; in TEST()
102 absl::FixedArray<int, 10> allocated(15); in TEST()
104 absl::FixedArray<int, 10> alloced_copy = allocated; in TEST()
110 absl::FixedArray<std::unique_ptr<int>, 10> on_stack(5); in TEST()
115 absl::FixedArray<std::unique_ptr<int>, 10> stack_copy = std::move(on_stack); in TEST()
119 absl::FixedArray<std::unique_ptr<int>, 10> allocated(15); in TEST()
124 absl::FixedArray<std::unique_ptr<int>, 10> alloced_copy = in TEST()
134 absl::FixedArray<int> array(4); in TEST()
140 absl::FixedArray<int> array(1048576); in TEST()
[all …]
Dfixed_array.h78 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,
[all …]
Dfixed_array_exception_safety_test.cc47 using FixedArr = absl::FixedArray<Thrower, kInlined>;
48 using FixedArrWithAlloc = absl::FixedArray<Thrower, kInlined, ThrowAlloc>;
50 using MoveFixedArr = absl::FixedArray<MoveThrower, kInlined>;
52 absl::FixedArray<MoveThrower, kInlined, MoveThrowAlloc>;
126 using SmallFixedArr = absl::FixedArray<Thrower, small_inlined>; in TEST()
140 absl::FixedArray<Thrower, small_inlined, ThrowAlloc>; in TEST()
/external/abseil-cpp/absl/flags/internal/
Dsequence_lock_test.cc48 absl::FixedArray<std::atomic<uint64_t>> protected_buf(buf_words); in TEST_P()
64 absl::FixedArray<char> local_buf(buf_bytes_); in TEST_P()
93 absl::FixedArray<char> writer_buf(buf_bytes_); in TEST_P()
152 absl::FixedArray<std::atomic<uint64_t>> protected_buf( in TEST_P()
/external/angle/third_party/abseil-cpp/absl/flags/internal/
Dsequence_lock_test.cc48 absl::FixedArray<std::atomic<uint64_t>> protected_buf(buf_words); in TEST_P()
64 absl::FixedArray<char> local_buf(buf_bytes_); in TEST_P()
93 absl::FixedArray<char> writer_buf(buf_bytes_); in TEST_P()
152 absl::FixedArray<std::atomic<uint64_t>> protected_buf( in TEST_P()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/flags/internal/
Dsequence_lock_test.cc48 absl::FixedArray<std::atomic<uint64_t>> protected_buf(buf_words); in TEST_P()
64 absl::FixedArray<char> local_buf(buf_bytes_); in TEST_P()
93 absl::FixedArray<char> writer_buf(buf_bytes_); in TEST_P()
152 absl::FixedArray<std::atomic<uint64_t>> protected_buf( in TEST_P()
/external/webrtc/third_party/abseil-cpp/absl/flags/internal/
Dsequence_lock_test.cc48 absl::FixedArray<std::atomic<uint64_t>> protected_buf(buf_words); in TEST_P()
64 absl::FixedArray<char> local_buf(buf_bytes_); in TEST_P()
93 absl::FixedArray<char> writer_buf(buf_bytes_); in TEST_P()
152 absl::FixedArray<std::atomic<uint64_t>> protected_buf( in TEST_P()
/external/angle/third_party/abseil-cpp/
Dabsl_hardening_test.cc39 TEST(AbslHardeningTest, FixedArray) { in TEST() argument
40 absl::FixedArray<int, 4> fixed_array(0); in TEST()
/external/compiler-rt/lib/asan/tests/
Dasan_mac_test_helpers.mm215 @interface FixedArray : NSObject { interface
220 @implementation FixedArray implementation
227 id anObject = [FixedArray new];

12