Lines Matching refs:mnLockCount
213 , mnLockCount(0) in DBG_NAME()
228 , mnLockCount(0) in SvxShape()
243 , mnLockCount(0) in SvxShape()
254 DBG_ASSERT( mnLockCount == 0, "Locked shape was disposed!" ); in ~SvxShape()
4081 return mnLockCount != 0; in isActionLocked()
4090 DBG_ASSERT( mnLockCount < 0xffff, "lock overflow in SvxShape!" ); in addActionLock()
4091 mnLockCount++; in addActionLock()
4093 if( mnLockCount == 1 ) in addActionLock()
4103 DBG_ASSERT( mnLockCount > 0, "lock underflow in SvxShape!" ); in removeActionLock()
4104 mnLockCount--; in removeActionLock()
4106 if( mnLockCount == 0 ) in removeActionLock()
4116 if( (mnLockCount == 0) && (nLock != 0) ) in setActionLocks()
4119 if( (mnLockCount != 0) && (nLock == 0) ) in setActionLocks()
4122 mnLockCount = (sal_uInt16)nLock; in setActionLocks()
4131 if( mnLockCount != 0 ) in resetActionLocks()
4134 sal_Int16 nOldLocks = (sal_Int16)mnLockCount; in resetActionLocks()
4135 mnLockCount = 0; in resetActionLocks()