Home
last modified time | relevance | path

Searched defs:AStruct (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/googletest/tests/
Dmatches_pattern_test.rs21 struct AStruct { in matches_struct_containing_single_field() struct
22 a_field: u32, in matches_struct_containing_single_field()
32 struct AStruct { in matches_struct_containing_two_fields() struct
33 a_field: u32, in matches_struct_containing_two_fields()
34 another_field: u32, in matches_struct_containing_two_fields()
45 struct AStruct { in supports_trailing_comma_with_one_field() struct
46 a_field: u32, in supports_trailing_comma_with_one_field()
58 struct AStruct { in supports_trailing_comma_with_two_fields() struct
59 a_field: u32, in supports_trailing_comma_with_two_fields()
60 another_field: u32, in supports_trailing_comma_with_two_fields()
[all …]
Dcomposition_test.rs26 struct AStruct(i32); in matches_pattern_works_as_inner_matcher() struct
33 struct AStruct(i32); in matches_pattern_works_with_property_as_inner_matcher() struct
34 impl AStruct { in matches_pattern_works_with_property_as_inner_matcher() impl
50 struct AStruct(Vec<i32>); in contains_each_works_as_inner_matcher() struct
57 struct AStruct(Vec<i32>); in pointwise_works_as_inner_matcher() struct
64 struct AStruct(Vec<i32>); in elements_are_works_as_inner_matcher() struct
Dfield_matcher_test.rs82 struct AStruct { in shows_correct_failure_message_for_wrong_struct_entry() struct
83 a: Vec<u32>, in shows_correct_failure_message_for_wrong_struct_entry()
Dunordered_elements_are_matcher_test.rs126 struct AStruct(i32); in unordered_elements_are_admits_matchers_without_static_lifetime() struct
134 struct AStruct(i32); in unordered_elements_are_with_map_admits_matchers_without_static_lifetime() struct
Delements_are_matcher_test.rs52 struct AStruct(i32); in elements_are_admits_matchers_without_static_lifetime() struct
Dall_matcher_test.rs55 struct AStruct(i32); in admits_matchers_without_static_lifetime() struct
Dany_matcher_test.rs55 struct AStruct(i32); in admits_matchers_without_static_lifetime() struct
/aosp_15_r20/external/google-breakpad/src/client/mac/testapp/
H A DTestClass.mm33 struct AStruct { struct
50 AStruct s_; argument
73 void InternalTestClass::InternalFunction(AStruct &s) { argument
79 static float PlainOldFunction() {
83 @implementation TestClass
/aosp_15_r20/external/clang/test/CodeGen/
H A Dstaticinit.c4 struct AStruct { struct
15 static struct AStruct myStruct = { 1, "two", 3.0 }; in f() argument
/aosp_15_r20/external/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc371 struct AStruct { struct
372 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in AStruct() argument
373 AStruct(const AStruct& rhs) in AStruct() function
376 int x; // A non-const field.
377 const double y; // A const field.
378 Uncopyable z; // An uncopyable field.
379 const char* p; // A pointer field.
/aosp_15_r20/external/cronet/third_party/googletest/src/googlemock/test/
H A Dgmock-matchers-containers_test.cc371 struct AStruct { struct
372 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in AStruct() argument
373 AStruct(const AStruct& rhs) in AStruct() function
376 int x; // A non-const field.
377 const double y; // A const field.
378 Uncopyable z; // An uncopyable field.
379 const char* p; // A pointer field.
/aosp_15_r20/external/cronet/third_party/boringssl/src/third_party/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc371 struct AStruct { struct
372 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in AStruct() argument
373 AStruct(const AStruct& rhs) in AStruct() function
376 int x; // A non-const field.
377 const double y; // A const field.
378 Uncopyable z; // An uncopyable field.
379 const char* p; // A pointer field.
/aosp_15_r20/external/clang/test/CodeGenObjC/
H A Dobjc2-write-barrier-2.m47 } AStruct; typedef