|
| template<typename T > |
| constexpr std::make_unsigned_t< T > | oox::detail::make_unsigned (T value) |
| |
| template<typename ReturnType , typename Type > |
| ReturnType | oox::getLimitedValue (Type nValue, Type nMin, Type nMax) |
| |
| template<typename ReturnType , typename Type > |
| ReturnType | oox::getIntervalValue (Type nValue, Type nBegin, Type nEnd) |
| |
| template<typename ReturnType > |
| ReturnType | oox::getDoubleIntervalValue (double fValue, double fBegin, double fEnd) |
| |
| template<typename Type > |
| bool | oox::getFlag (Type nBitField, Type nMask) |
| | Returns true, if at least one of the bits set in nMask is set in nBitField. More...
|
| |
| template<typename ReturnType , typename Type > |
| ReturnType | oox::getFlagValue (Type nBitField, Type nMask, ReturnType nSet, ReturnType nUnset) |
| | Returns nSet, if at least one bit of nMask is set in nBitField, otherwise nUnset. More...
|
| |
| template<typename ReturnType , typename Type > |
| ReturnType | oox::extractValue (Type nBitField, sal_uInt8 nStartBit, sal_uInt8 nBitCount) |
| | Extracts a value from a bit field. More...
|
| |
| template<typename Type > |
| void | oox::setFlag (Type &ornBitField, Type nMask, bool bSet=true) |
| | Sets or clears (according to bSet) all set bits of nMask in ornBitField. More...
|
| |
| template<typename Type > |
| void | oox::assignIfUsed (std::optional< Type > &rDestValue, const std::optional< Type > &rSourceValue) |
| |