Lines Matching refs:Wrapper
113 class Wrapper { class
117 Wrapper();
120 Wrapper::Wrapper() /* initializers synthesized */ {} in Wrapper() function in DefaultConstructorWithCleanups::Wrapper
123 Wrapper w; in test()
129 struct Wrapper { struct
132 Wrapper() {} in Wrapper() function
133 Wrapper(int x) : value(x) {} in Wrapper() argument
134 Wrapper(bool) {} in Wrapper() argument
138 Wrapper w1; in test()
141 Wrapper w2(50); in test()
144 Wrapper w3(false); in test()