Lines Matching refs:Small
9 struct __attribute__((trivial_abi)) Small { struct
11 Small(); argument
12 ~Small();
13 Small(const Small &) noexcept;
14 Small &operator=(const Small &);
37 Small s;
42 Small s;
47 virtual Small m0();
51 virtual Small m0();
55 Small m0() override;
69 Small D0::m0() { return {}; } in m0()
80 void testParamSmall(Small a) noexcept { in testParamSmall()
92 Small testReturnSmall() { in testReturnSmall()
93 Small t; in testReturnSmall()
111 Small t; in testCallSmall0()
239 void calleeExceptionSmall(Small, Small);
242 calleeExceptionSmall(Small(), Small()); in testExceptionSmall()