|
Blender
V2.93
|
Classes | |
| struct | TestType |
Functions | |
| TEST (cpp_type, Size) | |
| TEST (cpp_type, Alignment) | |
| TEST (cpp_type, Is) | |
| TEST (cpp_type, DefaultConstruction) | |
| TEST (cpp_type, Destruct) | |
| TEST (cpp_type, CopyToUninitialized) | |
| TEST (cpp_type, CopyToInitialized) | |
| TEST (cpp_type, RelocateToUninitialized) | |
| TEST (cpp_type, RelocateToInitialized) | |
| TEST (cpp_type, FillInitialized) | |
| TEST (cpp_type, FillUninitialized) | |
| TEST (cpp_type, DebugPrint) | |
| TEST (generic_span, TypeConstructor) | |
| TEST (generic_span, BufferAndSizeConstructor) | |
| TEST (generic_mutable_span, TypeConstructor) | |
| TEST (generic_mutable_span, BufferAndSizeConstructor) | |
| TEST (generic_vector_array, Construct) | |
| TEST (generic_vector_array, Append) | |
| TEST (generic_vector_array, Extend) | |
Variables | |
| static const int | default_constructed_value = 1 |
| static const int | copy_constructed_value = 2 |
| static const int | move_constructed_value = 3 |
| static const int | copy_constructed_from_value = 4 |
| static const int | move_constructed_from_value = 5 |
| static const int | copy_assigned_value = 6 |
| static const int | copy_assigned_from_value = 7 |
| static const int | move_assigned_value = 8 |
| static const int | move_assigned_from_value = 9 |
| static const int | destructed_value = 10 |
| static const CPPType & | CPPType_TestType = CPPType::get<TestType>() |
| blender::fn::tests::TEST | ( | cpp_type | , |
| Alignment | |||
| ) |
Definition at line 90 of file FN_cpp_type_test.cc.
References blender::fn::CPPType::alignment(), CPPType_TestType, and EXPECT_EQ().
| blender::fn::tests::TEST | ( | cpp_type | , |
| CopyToInitialized | |||
| ) |
Definition at line 172 of file FN_cpp_type_test.cc.
References copy_assigned_from_value, copy_assigned_value, blender::fn::CPPType::copy_to_initialized(), blender::fn::CPPType::copy_to_initialized_indices(), blender::fn::CPPType::copy_to_initialized_n(), CPPType_TestType, and EXPECT_EQ().
| blender::fn::tests::TEST | ( | cpp_type | , |
| CopyToUninitialized | |||
| ) |
Definition at line 141 of file FN_cpp_type_test.cc.
References copy_constructed_from_value, copy_constructed_value, blender::fn::CPPType::copy_to_uninitialized(), blender::fn::CPPType::copy_to_uninitialized_indices(), blender::fn::CPPType::copy_to_uninitialized_n(), CPPType_TestType, and EXPECT_EQ().
| blender::fn::tests::TEST | ( | cpp_type | , |
| DebugPrint | |||
| ) |
Definition at line 317 of file FN_cpp_type_test.cc.
References EXPECT_EQ().
| blender::fn::tests::TEST | ( | cpp_type | , |
| DefaultConstruction | |||
| ) |
Definition at line 101 of file FN_cpp_type_test.cc.
References buffer, blender::fn::CPPType::construct_default(), blender::fn::CPPType::construct_default_indices(), blender::fn::CPPType::construct_default_n(), CPPType_TestType, default_constructed_value, and EXPECT_EQ().
| blender::fn::tests::TEST | ( | cpp_type | , |
| Destruct | |||
| ) |
Definition at line 121 of file FN_cpp_type_test.cc.
References buffer, CPPType_TestType, blender::fn::CPPType::destruct(), blender::fn::CPPType::destruct_indices(), blender::fn::CPPType::destruct_n(), destructed_value, and EXPECT_EQ().
| blender::fn::tests::TEST | ( | cpp_type | , |
| FillInitialized | |||
| ) |
Definition at line 265 of file FN_cpp_type_test.cc.
References copy_assigned_from_value, copy_assigned_value, CPPType_TestType, EXPECT_EQ(), blender::fn::CPPType::fill_initialized(), and blender::fn::CPPType::fill_initialized_indices().
| blender::fn::tests::TEST | ( | cpp_type | , |
| FillUninitialized | |||
| ) |
Definition at line 291 of file FN_cpp_type_test.cc.
References copy_constructed_from_value, copy_constructed_value, CPPType_TestType, EXPECT_EQ(), blender::fn::CPPType::fill_uninitialized(), and blender::fn::CPPType::fill_uninitialized_indices().
| blender::fn::tests::TEST | ( | cpp_type | , |
| Is | |||
| ) |
Definition at line 95 of file FN_cpp_type_test.cc.
References CPPType_TestType, and blender::fn::CPPType::is().
| blender::fn::tests::TEST | ( | cpp_type | , |
| RelocateToInitialized | |||
| ) |
| blender::fn::tests::TEST | ( | cpp_type | , |
| RelocateToUninitialized | |||
| ) |
Definition at line 203 of file FN_cpp_type_test.cc.
References CPPType_TestType, destructed_value, EXPECT_EQ(), move_constructed_value, blender::fn::CPPType::relocate_to_uninitialized(), blender::fn::CPPType::relocate_to_uninitialized_indices(), and blender::fn::CPPType::relocate_to_uninitialized_n().
| blender::fn::tests::TEST | ( | cpp_type | , |
| Size | |||
| ) |
Definition at line 85 of file FN_cpp_type_test.cc.
References CPPType_TestType, EXPECT_EQ(), and blender::fn::CPPType::size().
| blender::fn::tests::TEST | ( | generic_mutable_span | , |
| BufferAndSizeConstructor | |||
| ) |
Definition at line 38 of file FN_generic_span_test.cc.
References buffer, EXPECT_EQ(), blender::fn::GMutableSpan::is_empty(), blender::fn::GMutableSpan::size(), and blender::fn::GMutableSpan::typed().
| blender::fn::tests::TEST | ( | generic_mutable_span | , |
| TypeConstructor | |||
| ) |
Definition at line 31 of file FN_generic_span_test.cc.
References EXPECT_EQ(), blender::fn::GMutableSpan::is_empty(), and blender::fn::GMutableSpan::size().
| blender::fn::tests::TEST | ( | generic_span | , |
| BufferAndSizeConstructor | |||
| ) |
Definition at line 17 of file FN_generic_span_test.cc.
References buffer, EXPECT_EQ(), blender::fn::GSpan::is_empty(), blender::fn::GSpan::size(), and blender::fn::GSpan::typed().
| blender::fn::tests::TEST | ( | generic_span | , |
| TypeConstructor | |||
| ) |
Definition at line 9 of file FN_generic_span_test.cc.
References EXPECT_EQ(), blender::fn::GSpan::is_empty(), blender::fn::GSpan::size(), and blender::fn::GSpan::typed().
| blender::fn::tests::TEST | ( | generic_vector_array | , |
| Append | |||
| ) |
Definition at line 16 of file FN_generic_vector_array_test.cc.
References blender::fn::GVectorArray::append(), EXPECT_EQ(), and size().
| blender::fn::tests::TEST | ( | generic_vector_array | , |
| Construct | |||
| ) |
Definition at line 9 of file FN_generic_vector_array_test.cc.
References EXPECT_EQ().
| blender::fn::tests::TEST | ( | generic_vector_array | , |
| Extend | |||
| ) |
Definition at line 31 of file FN_generic_vector_array_test.cc.
References EXPECT_EQ(), blender::fn::GVectorArray::extend(), and size().
|
static |
Definition at line 16 of file FN_cpp_type_test.cc.
Referenced by blender::fn::tests::TestType::operator=(), and TEST().
|
static |
Definition at line 15 of file FN_cpp_type_test.cc.
Referenced by blender::fn::tests::TestType::operator=(), and TEST().
|
static |
Definition at line 13 of file FN_cpp_type_test.cc.
Referenced by TEST(), and blender::fn::tests::TestType::TestType().
|
static |
Definition at line 11 of file FN_cpp_type_test.cc.
Referenced by TEST(), and blender::fn::tests::TestType::TestType().
|
static |
Definition at line 83 of file FN_cpp_type_test.cc.
Referenced by TEST().
|
static |
Definition at line 10 of file FN_cpp_type_test.cc.
Referenced by TEST(), and blender::fn::tests::TestType::TestType().
|
static |
Definition at line 19 of file FN_cpp_type_test.cc.
Referenced by TEST(), and blender::fn::tests::TestType::~TestType().
|
static |
Definition at line 18 of file FN_cpp_type_test.cc.
Referenced by blender::fn::tests::TestType::operator=().
|
static |
Definition at line 17 of file FN_cpp_type_test.cc.
Referenced by blender::fn::tests::TestType::operator=(), and TEST().
|
static |
Definition at line 14 of file FN_cpp_type_test.cc.
Referenced by blender::fn::tests::TestType::TestType().
|
static |
Definition at line 12 of file FN_cpp_type_test.cc.
Referenced by TEST(), and blender::fn::tests::TestType::TestType().