Lines Matching refs:nPos

80     void                        SetValue( A nPos, const D& rValue );
82 const D& GetValue( A nPos ) const;
85 const D& GetValue( A nPos, size_t& nIndex, A& nEnd ) const;
88 const D& GetValue( A nPos, size_t& nIndex, A& nStart, A& nEnd ) const;
117 SC_DLLPUBLIC size_t Search( A nPos ) const;
150 void ScCompressedArray<A,D>::SetValue( A nPos, const D& rValue ) in SetValue() argument
152 SetValue( nPos, nPos, rValue); in SetValue()
157 const D& ScCompressedArray<A,D>::GetValue( A nPos ) const in GetValue()
159 size_t nIndex = Search( nPos); in GetValue()
165 const D& ScCompressedArray<A,D>::GetValue( A nPos, size_t& nIndex, A& nEnd ) const in GetValue() argument
167 nIndex = Search( nPos); in GetValue()
174 const D& ScCompressedArray<A,D>::GetValue( A nPos, size_t& nIndex, A& nStart, in GetValue() argument
177 nIndex = Search( nPos); in GetValue()
254 void Resync( A nPos );
378 void ScCompressedArrayIterator<A,D>::Resync( A nPos ) in Resync() argument
380 if (nPos < nIterStart) in Resync()
381 nPos = nIterStart; in Resync()
382 else if (nPos > nIterEnd) in Resync()
383 nPos = nIterEnd; in Resync()
384 nCurrent = nPos; in Resync()
386 nIndex = rArray.Search( nPos); in Resync()
453 void AndValue( A nPos, const D& rValueToAnd );
454 void OrValue( A nPos, const D& rValueToOr );
547 void ScBitMaskCompressedArray<A,D>::AndValue( A nPos, const D& rValueToAnd ) in AndValue() argument
549 const D& rValue = this->GetValue( nPos); in AndValue()
551 this->SetValue( nPos, rValue & rValueToAnd); in AndValue()
556 void ScBitMaskCompressedArray<A,D>::OrValue( A nPos, const D& rValueToOr ) in OrValue() argument
558 const D& rValue = this->GetValue( nPos); in OrValue()
560 this->SetValue( nPos, rValue | rValueToOr); in OrValue()
590 void Resync( A nPos );