Lines Matching refs:Wrapper
98 class Wrapper { class
102 Wrapper();
105 Wrapper::Wrapper() /* initializers synthesized */ {} in Wrapper() function in DefaultConstructorWithCleanups::Wrapper
108 Wrapper w; in test()
114 struct Wrapper { struct
117 Wrapper() {} in Wrapper() argument
118 Wrapper(int x) : value(x) {} in Wrapper() function
119 Wrapper(bool) {} in Wrapper() argument
123 Wrapper w1; in test()
126 Wrapper w2(50); in test()
129 Wrapper w3(false); in test()