Home | History | Annotate | Download | only in Analysis

Lines Matching refs:MyStruct

153   struct MyStruct {
154 MyStruct(int i);
155 MyStruct(OtherStruct os);
161 const MyStruct &myStruct(5);
162 myStruct.method(); // no-warning
166 const MyStruct &myStruct1(5), myStruct2(5), &myStruct3(5);
173 const MyStruct &myStruct(OtherStruct(5));
174 myStruct.method(); // no-warning
178 const MyStruct &ms; // expected-note {{reference member declared here}}
179 const MyStruct &msWithCleanups; // expected-note {{reference member declared here}}