Lines Matching refs:Large
17 struct __attribute__((trivial_abi)) Large { struct
20 Large(); argument
21 ~Large();
22 Large(const Large &) noexcept;
23 Large &operator=(const Large &);
151 void testParamLarge(Large a) noexcept { in testParamLarge()
159 Large testReturnLarge() { in testReturnLarge()
160 Large t; in testReturnLarge()
175 Large t; in testCallLarge0()
259 void calleeExceptionLarge(Large, Large);
262 calleeExceptionLarge(Large(), Large()); in testExceptionLarge()