Searched defs:AStruct (Results 1 – 5 of 5) sorted by relevance
34 struct AStruct { struct51 AStruct s_; argument74 void InternalTestClass::InternalFunction(AStruct &s) { argument80 static float PlainOldFunction() {84 @implementation TestClass
4 struct AStruct { struct15 static struct AStruct myStruct = { 1, "two", 3.0 }; in f() argument
47 } AStruct; typedef
2914 struct AStruct { struct2915 AStruct() : x(0), y(1.0), z(5), p(NULL) {} in AStruct() function2916 AStruct(const AStruct& rhs) in AStruct() function2919 int x; // A non-const field.2920 const double y; // A const field.2921 Uncopyable z; // An uncopyable field.2922 const char* p; // A pointer field.
3871 struct AStruct { struct3872 AStruct() : x(0), y(1.0), z(5), p(nullptr) {} in AStruct() function3873 AStruct(const AStruct& rhs) in AStruct() argument3876 int x; // A non-const field.3877 const double y; // A const field.3878 Uncopyable z; // An uncopyable field.3879 const char* p; // A pointer field.