Home
last modified time | relevance | path

Searched defs:TestStruct (Results 1 – 25 of 46) sorted by relevance

12

/aosp_15_r20/external/grpc-grpc/test/core/json/
H A Djson_object_loader_test.cc51 struct TestStruct { in TYPED_TEST_P() struct
52 TypeParam value = 0; in TYPED_TEST_P()
53 TypeParam optional_value = 0; in TYPED_TEST_P()
54 absl::optional<TypeParam> absl_optional_value; in TYPED_TEST_P()
55 std::unique_ptr<TypeParam> unique_ptr_value; in TYPED_TEST_P()
57 static const JsonLoaderInterface* JsonLoader(const JsonArgs&) { in TYPED_TEST_P()
149 struct TestStruct { in TYPED_TEST_P() struct
150 TypeParam value = 0; in TYPED_TEST_P()
151 TypeParam optional_value = 0; in TYPED_TEST_P()
152 absl::optional<TypeParam> absl_optional_value; in TYPED_TEST_P()
[all …]
/aosp_15_r20/external/crosvm/serde_keyvalue/src/
H A Dkey_values.rs1183 struct TestStruct { in deserialize_complex_struct() struct
1184 num: usize, in deserialize_complex_struct()
1185 path: PathBuf, in deserialize_complex_struct()
1186 enable: bool, in deserialize_complex_struct()
1230 struct TestStruct { in deserialize_unknown_field() struct
1231 num: usize, in deserialize_unknown_field()
1232 path: PathBuf, in deserialize_unknown_field()
1233 enable: bool, in deserialize_unknown_field()
1243 struct TestStruct { in deserialize_option() struct
1244 num: u32, in deserialize_option()
[all …]
/aosp_15_r20/external/clang/test/OpenMP/
H A Dordered_doacross_codegen.cpp64 struct TestStruct { struct
73 TestStruct() { in TestStruct() argument
/aosp_15_r20/external/rust/android-crates-io/crates/remain/tests/
Dstable.rs26 pub struct TestStruct { struct
44 assert!(is_partial_eq::<TestStruct>()); in test_attrs() argument
Dunstable.rs24 pub struct TestStruct { struct
40 assert!(is_partial_eq::<TestStruct>()); in test_attrs() argument
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/http2/decoder/
H A Ddecode_buffer_test.cc35 struct TestStruct { struct
36 uint8_t f1;
37 uint16_t f2;
38 uint32_t f3; // Decoded as a uint24
39 uint32_t f4;
40 uint32_t f5; // Decoded as if uint31
41 TestEnumClass32 f6;
42 TestEnumClass8 f7;
43 TestEnum8 f8;
/aosp_15_r20/external/rust/android-crates-io/crates/remain/tests/ui/
Dstruct.rs4 struct TestStruct { struct
5 d: usize,
6 c: usize,
7 a: usize,
8 b: usize,
Dunsorted-struct.rs4 struct TestStruct { struct
5 d: usize,
7 c: usize,
8 a: usize,
9 b: usize,
/aosp_15_r20/external/ot-br-posix/tests/gtest/
H A Dtest_dbus_message.cpp44 struct TestStruct struct
53 template <> struct DBusTypeTrait<TestStruct> argument
/aosp_15_r20/prebuilts/go/linux-x86/src/testing/quick/
Dquick_test.go109 type TestStruct struct { struct
110 A int
111 B string
114 func fStruct(a TestStruct) TestStruct { return a }
/aosp_15_r20/external/pigweed/pw_stream/
H A Dmemory_stream_test.cc28 struct TestStruct { struct
29 uint8_t day;
30 uint8_t month;
31 uint16_t year;
/aosp_15_r20/external/zucchini/
H A Dbuffer_view_unittest.cc134 struct TestStruct { in TEST_F() struct
135 uint32_t a; in TEST_F()
136 uint32_t b; in TEST_F()
/aosp_15_r20/external/cronet/base/containers/
H A Dbuffer_iterator_unittest.cc19 struct TestStruct { struct
20 uint32_t one;
21 uint8_t two;
/aosp_15_r20/external/clang/test/SemaCXX/
H A Ddecltype-pr4444.cpp5 struct TestStruct { struct
6 typedef decltype(t+2) sum_type;
/aosp_15_r20/external/rust/android-crates-io/crates/ptr_meta/src/
Dlib.rs382 struct TestStruct { in sized_types() struct
383 a: (), in sized_types()
384 b: i32, in sized_types()
385 c: bool, in sized_types()
/aosp_15_r20/external/rust/crates/ptr_meta/src/
Dlib.rs382 struct TestStruct { in sized_types() struct
383 a: (), in sized_types()
384 b: i32, in sized_types()
385 c: bool, in sized_types()
/aosp_15_r20/system/libbase/
H A Dresult_test.cpp640 struct TestStruct { in TEST() struct
641 TestStruct(int value) : value_(value) {} in TEST() argument
642 TestStruct(Result<TestStruct> result, int value) : value_(result->value_ * value) {} in TEST() function
643 int value_; in TEST()
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dmicrosoft-uuidof-mangling.cpp20 struct __declspec(uuid("EAFA1952-66F8-438B-8FBA-AF1BBAE42191")) TestStruct struct
29 struct HasMember { typedef TestStruct member; }; argument
/aosp_15_r20/external/pigweed/pw_kvs/
H A Dkey_value_store_initialized_test.cc174 struct TestStruct { in TEST_F() struct
175 float a; in TEST_F()
176 bool b; in TEST_F()
/aosp_15_r20/external/tensorflow/tensorflow/core/framework/
H A Dallocator_test.cc175 struct TestStruct { struct
176 int x; // not used just want to make sure sizeof(TestStruct) > 1
/aosp_15_r20/external/bazelbuild-rules_rust/examples/proc_macro/tests/
H A Dgreeting.rs18 struct TestStruct {} struct
/aosp_15_r20/external/cronet/base/memory/
H A Dweak_ptr_unittest.cc788 struct TestStruct { in TEST() struct
789 int member = 0; in TEST()
790 WeakPtrFactory<TestStruct> weak_ptr_factory{this}; in TEST()
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ctypes/test/
H A Dtest_unicode.py30 class TestStruct(ctypes.Structure): class
/aosp_15_r20/external/python/cpython3/Lib/ctypes/test/
Dtest_unicode.py30 class TestStruct(ctypes.Structure): class
/aosp_15_r20/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/
Dcpp_types_test.go23 func TestStruct(t *testing.T) { func

12