/aosp_15_r20/external/grpc-grpc/test/core/json/ |
H A D | json_object_loader_test.cc | 70 auto test_struct = Parse<TestStruct>("{\"value\": 5}"); in TYPED_TEST_P() local 71 ASSERT_TRUE(test_struct.ok()) << test_struct.status(); in TYPED_TEST_P() 72 EXPECT_EQ(test_struct->value, 5); in TYPED_TEST_P() 73 EXPECT_EQ(test_struct->optional_value, 0); in TYPED_TEST_P() 74 EXPECT_FALSE(test_struct->absl_optional_value.has_value()); in TYPED_TEST_P() 76 test_struct = Parse<TestStruct>("{\"value\": -5}"); in TYPED_TEST_P() 77 ASSERT_TRUE(test_struct.ok()) << test_struct.status(); in TYPED_TEST_P() 78 EXPECT_EQ(test_struct->value, -5); in TYPED_TEST_P() 79 EXPECT_EQ(test_struct->optional_value, 0); in TYPED_TEST_P() 80 EXPECT_FALSE(test_struct->absl_optional_value.has_value()); in TYPED_TEST_P() [all …]
|
/aosp_15_r20/external/libchrome/mojo/public/cpp/bindings/tests/ |
H A D | serialization_warning_unittest.cc | 98 Struct2Ptr test_struct(Struct2::New()); in TEST_F() local 99 EXPECT_FALSE(test_struct->hdl.is_valid()); in TEST_F() 101 TestWarning(std::move(test_struct), in TEST_F() 104 test_struct = Struct2::New(); in TEST_F() 106 test_struct->hdl = ScopedHandle::From(std::move(pipe.handle1)); in TEST_F() 108 TestWarning(std::move(test_struct), mojo::internal::VALIDATION_ERROR_NONE); in TEST_F() 112 Struct3Ptr test_struct(Struct3::New()); in TEST_F() local 113 EXPECT_TRUE(!test_struct->struct_1); in TEST_F() 115 TestWarning(std::move(test_struct), in TEST_F() 118 test_struct = Struct3::New(); in TEST_F() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/atomic/test/ |
D | atomic_ref_api.cpp | 53 test_struct_api< atomic_ref_wrapper, test_struct< boost::uint8_t > >(); in main() 54 test_struct_api< atomic_ref_wrapper, test_struct< boost::uint16_t > >(); in main() 55 test_struct_api< atomic_ref_wrapper, test_struct< boost::uint32_t > >(); in main() 56 test_struct_api< atomic_ref_wrapper, test_struct< boost::uint64_t > >(); in main() 58 test_struct_api< atomic_ref_wrapper, test_struct< boost::uint128_type > >(); in main() 65 test_struct_api< atomic_ref_wrapper, test_struct< double > >(); in main()
|
D | atomic_api.cpp | 62 test_struct_api< atomic_wrapper, test_struct< boost::uint8_t > >(); in main() 63 test_struct_api< atomic_wrapper, test_struct< boost::uint16_t > >(); in main() 64 test_struct_api< atomic_wrapper, test_struct< boost::uint32_t > >(); in main() 65 test_struct_api< atomic_wrapper, test_struct< boost::uint64_t > >(); in main() 67 test_struct_api< atomic_wrapper, test_struct< boost::uint128_type > >(); in main() 74 test_struct_api< atomic_wrapper, test_struct< double > >(); in main()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/test/adaptor_test/ |
D | ticket_6742_transformed_c4789_warning.cpp | 23 struct test_struct struct 32 double operator()(const test_struct& s) const in operator ()() 43 test_struct t; in range_transformed_warning() 46 std::vector<test_struct> v(10u, t); in range_transformed_warning() 49 boost::push_back(output1, v | transformed((&arg1)->*& test_struct::x)); in range_transformed_warning()
|
/aosp_15_r20/external/llvm/test/CodeGen/Hexagon/ |
H A D | calling-conv-2.ll | 4 %struct.test_struct = type { i32, i8, i64 } 7 define void @foo(%struct.test_struct* noalias nocapture sret %agg.result, i32 %a) #0 { 9 call void @bar(%struct.test_struct* sret %agg.result, i32 45) #2 13 declare void @bar(%struct.test_struct* sret, i32) #1
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | x86_64-arguments-nacl-x32.cpp | 4 struct test_struct {}; struct 5 typedef int test_struct::* test_struct_mdp; 6 typedef int (test_struct::*test_struct_mfp)(); 47 typedef struct { int* a; test_struct x; double *b; } struct_with_empty;
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/test/sequence/ |
D | hash.cpp | 14 struct test_struct struct 16 test_struct(bool bb, int ii, char cc, std::string const& ss) : in test_struct() function 29 test_struct, argument 40 const test_struct a0(false, 1, 'c', "Hello Nurse"), in main()
|
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/symlinkat/ |
H A D | symlinkat01.c | 53 struct test_struct; 57 static void mysymlinkat_test(struct test_struct *desc); 70 struct test_struct { struct 167 static void mysymlinkat_test(struct test_struct *desc) in mysymlinkat_test()
|
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/linkat/ |
H A D | linkat01.c | 69 struct test_struct; 73 static void mylinkat_test(struct test_struct *desc); 90 struct test_struct { struct 233 static void mylinkat_test(struct test_struct *desc) in mylinkat_test()
|
H A D | linkat02.c | 62 static struct test_struct { struct 83 static void linkat_verify(const struct test_struct *); argument 104 static void linkat_verify(const struct test_struct *desc) in linkat_verify()
|
/aosp_15_r20/frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
D | pass-struct.c | 21 int test_struct(struct int_struct s) in test_struct() function 35 int result = test_struct(s); in main()
|
/aosp_15_r20/external/clang/test/FixIt/ |
H A D | fixit.c | 61 struct test_struct { struct 63 …test_struct *struct_ptr; // expected-error {{must use 'struct' tag to refer to type 'test_struct'}} argument
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
H A D | 2-1.c | 51 struct test_struct { struct 69 struct test_struct mystruct = { 1, 2, 3, (void *)4 }; in main() argument
|
/aosp_15_r20/external/llvm/test/CodeGen/AArch64/ |
H A D | fast-isel-gep.ll | 5 define double* @test_struct(%struct.foo* %f) { 6 ; CHECK-LABEL: test_struct
|
/aosp_15_r20/external/mesa3d/src/intel/decoder/tests/ |
H A D | genxml_test.c | 51 test_struct(struct intel_spec *spec) { in test_struct() function 137 test_struct(spec); in main()
|
/aosp_15_r20/external/fmtlib/test/ |
H A D | base-test.cc | 279 struct test_struct {}; struct 282 template <typename Char> struct formatter<test_struct, Char> { 287 auto format(test_struct, format_context& ctx) const -> decltype(ctx.out()) { in format() 437 auto test = test_struct(); in TEST() 735 fmt::format_to(std::back_inserter(s), "{}", test_struct()); in TEST()
|
/aosp_15_r20/external/cronet/base/memory/ |
H A D | weak_ptr_unittest.cc | 792 TestStruct test_struct; in TEST() local 793 EXPECT_EQ(test_struct.member, 0); in TEST() 796 const TestStruct& const_test_struct = test_struct; in TEST() 800 EXPECT_EQ(test_struct.member, 1); in TEST()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-1.0.109/tests/ |
H A D | test_token_trees.rs | 9 fn test_struct() { in test_struct() function
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-2.0.55/tests/ |
H A D | test_token_trees.rs | 11 fn test_struct() { in test_struct() function
|
/aosp_15_r20/external/rust/android-crates-io/crates/syn/tests/ |
D | test_token_trees.rs | 11 fn test_struct() { in test_struct() function
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ctypes/test/ |
H A D | test_delattr.py | 16 def test_struct(self): member in TestCase
|
/aosp_15_r20/external/python/cpython3/Lib/ctypes/test/ |
D | test_delattr.py | 16 def test_struct(self): member in TestCase
|
/aosp_15_r20/external/python/cpython2/Lib/ctypes/test/ |
D | test_delattr.py | 16 def test_struct(self): member in TestCase
|
/aosp_15_r20/external/clang/test/CodeGen/ |
H A D | wasm-varargs.c | 73 struct S test_struct(char *fmt, ...) { in test_struct() function
|