Lines Matching defs:IntParam
74494 struct IntParam { struct
74495 constexpr IntParam(char val) : value(val) {} in IntParam() argument
74496 constexpr IntParam(unsigned char val) : value(val) {} in IntParam() function
74497 constexpr IntParam(short val) : value(val) {} in IntParam() function
74498 constexpr IntParam(unsigned short val) : value(val) {} in IntParam() function
74499 constexpr IntParam(int val) : value(val) {} in IntParam() function
74500 constexpr IntParam(unsigned int val) : value(val) {} in IntParam() argument
74501 constexpr IntParam(long val) : value(val) {} in IntParam() function
74502 constexpr IntParam(unsigned long val) : value(val) {} in IntParam() argument
74503 constexpr IntParam(long long val) : value(val) {} in IntParam() argument
74504 constexpr IntParam(unsigned long long val) : value(val) {} in IntParam() function
74506 constexpr IntParam(IntCoordTyped<Unit> val) : value(val) {} in IntParam() function
74512 T value;