Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/mac/testapp/
DTestClass.mm34 struct AStruct { struct
51 AStruct s_; argument
74 void InternalTestClass::InternalFunction(AStruct &s) { argument
80 static float PlainOldFunction() {
84 @implementation TestClass
/external/clang/test/CodeGen/
Dstaticinit.c4 struct AStruct { struct
15 static struct AStruct myStruct = { 1, "two", 3.0 }; in f() argument
/external/llvm-project/clang/test/CodeGen/
Dstaticinit.c4 struct AStruct { struct
15 static struct AStruct myStruct = { 1, "two", 3.0 }; in f() argument
/external/clang/test/CodeGenObjC/
Dobjc2-write-barrier-2.m47 } AStruct; typedef
/external/llvm-project/clang/test/CodeGenObjC/
Dobjc2-write-barrier-2.m47 } AStruct; typedef
/external/llvm-project/clang/test/Index/Core/
Dindex-source.m377 struct AStruct aStructS; struct
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc4022 struct AStruct { in TEST() struct
4023 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in TEST() argument
4024 AStruct(const AStruct& rhs) in TEST() argument
4027 int x; // A non-const field. in TEST()
4028 const double y; // A const field. in TEST()
4029 Uncopyable z; // An uncopyable field. in TEST()
4030 const char* p; // A pointer field. in TEST()