| /AOO41X/main/sax/source/expatwrap/ |
| H A D | saxwriter.cxx | 141 inline void AddBytes(sal_Int8* pTarget, sal_uInt32& rPos, 148 sal_uInt32& rPos) throw( SAXException ); 251 inline void SaxWriterHelper::AddBytes(sal_Int8* pTarget, sal_uInt32& rPos, in AddBytes() argument 254 OSL_ENSURE((rPos + nBytesCount) > SEQUENCESIZE, "wrong use of AddBytesMethod"); in AddBytes() 255 sal_uInt32 nCount(SEQUENCESIZE - rPos); in AddBytes() 256 memcpy( &(pTarget[rPos]) , pBytes, nCount); in AddBytes() 258 OSL_ENSURE(rPos + nCount == SEQUENCESIZE, "the position should be the at the end"); in AddBytes() 260 rPos = writeSequence(); in AddBytes() 262 if ((rPos + nRestCount) <= SEQUENCESIZE) in AddBytes() 264 memcpy( &(pTarget[rPos]), &pBytes[nCount], nRestCount); in AddBytes() [all …]
|
| /AOO41X/main/sc/source/core/data/ |
| H A D | postit.cxx | 80 static void SetCaptionUserData( SdrCaptionObj& rCaption, const ScAddress& rPos ); 104 void ScCaptionUtil::SetCaptionUserData( SdrCaptionObj& rCaption, const ScAddress& rPos ) in SetCaptionUserData() argument 109 pObjData->maStart = rPos; in SetCaptionUserData() 174 …explicit ScCaptionCreator( ScDocument& rDoc, const ScAddress& rPos, bool bShown, bool b… 176 …explicit ScCaptionCreator( ScDocument& rDoc, const ScAddress& rPos, SdrCaptionObj& rCap… 192 explicit ScCaptionCreator( ScDocument& rDoc, const ScAddress& rPos ); 216 ScCaptionCreator::ScCaptionCreator( ScDocument& rDoc, const ScAddress& rPos, bool bShown, bool bTai… in ScCaptionCreator() argument 218 maPos( rPos ), in ScCaptionCreator() 225 ScCaptionCreator::ScCaptionCreator( ScDocument& rDoc, const ScAddress& rPos, SdrCaptionObj& rCaptio… in ScCaptionCreator() argument 227 maPos( rPos ), in ScCaptionCreator() [all …]
|
| H A D | validat.cxx | 71 ScDocument* pDocument, const ScAddress& rPos, in ScValidationData() argument 74 …ScConditionEntry( eOper, rExpr1, rExpr2, pDocument, rPos, rExprNmsp1, rExprNmsp2, eGrammar1, eGram… in ScValidationData() 85 ScDocument* pDocument, const ScAddress& rPos ) : in ScValidationData() argument 86 ScConditionEntry( eOper, pArr1, pArr2, pDocument, rPos ), in ScValidationData() 189 sal_Bool ScValidationData::DoScript( const ScAddress& rPos, const String& rInput, in DoScript() argument 221 rPos.Format( aPosStr, SCA_VALID | SCA_TAB_3D, pDocument, pDocument->GetAddressConvention() ); in DoScript() 231 pDocument->LockTable( rPos.Tab() ); in DoScript() 241 pDocument->UnlockTable( rPos.Tab() ); in DoScript() 272 sal_Bool ScValidationData::DoMacro( const ScAddress& rPos, const String& rInput, in DoMacro() argument 277 return DoScript( rPos, rInput, pCell, pParent ); in DoMacro() [all …]
|
| /AOO41X/main/sw/source/core/crsr/ |
| H A D | pam.cxx | 92 SwPosition::SwPosition( const SwPosition & rPos ) in SwPosition() argument 93 : nNode( rPos.nNode ), nContent( rPos.nContent ) in SwPosition() 97 SwPosition &SwPosition::operator=(const SwPosition &rPos) in operator =() argument 99 nNode = rPos.nNode; in operator =() 100 nContent = rPos.nContent; in operator =() 105 sal_Bool SwPosition::operator<(const SwPosition &rPos) const in operator <() 107 if( nNode < rPos.nNode ) in operator <() 109 if( nNode == rPos.nNode ) in operator <() 110 return ( nContent < rPos.nContent ); in operator <() 115 sal_Bool SwPosition::operator>(const SwPosition &rPos) const in operator >() [all …]
|
| /AOO41X/main/vcl/source/control/ |
| H A D | group.cxx | 131 const Point& rPos, const Size& rSize, bool bLayout ) in ImplDraw() argument 137 Rectangle aRect( rPos, rSize ); in ImplDraw() 164 nTop = rPos.Y(); in ImplDraw() 172 nTop = rPos.Y(); in ImplDraw() 185 pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) ); in ImplDraw() 188 pDev->DrawLine( Point( rPos.X(), nTop ), Point( aRect.Left()-nTextOff, nTop ) ); in ImplDraw() 189 … pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) ); in ImplDraw() 191 pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X(), rPos.Y()+rSize.Height()-2 ) ); in ImplDraw() 192 …pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, rPo… in ImplDraw() 193 …pDev->DrawLine( Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSiz… in ImplDraw() [all …]
|
| /AOO41X/main/sw/source/core/edit/ |
| H A D | edglbldc.cxx | 159 SwPosition& rPos = *pCrsr->GetPoint(); in InsertGlobalDocContent() local 160 rPos.nNode = rInsPos.GetDocPos(); in InsertGlobalDocContent() 164 SwTxtNode *const pTxtNd = rPos.nNode.GetNode().GetTxtNode(); in InsertGlobalDocContent() 166 rPos.nContent.Assign( pTxtNd, 0 ); in InsertGlobalDocContent() 171 rPos.nNode--; in InsertGlobalDocContent() 172 pMyDoc->AppendTxtNode( rPos ); in InsertGlobalDocContent() 200 SwPosition& rPos = *pCrsr->GetPoint(); in InsertGlobalDocContent() local 201 rPos.nNode = rInsPos.GetDocPos(); in InsertGlobalDocContent() 205 SwTxtNode* pTxtNd = rPos.nNode.GetNode().GetTxtNode(); in InsertGlobalDocContent() 206 if( pTxtNd && pTxtNd->GetTxt().Len() && rPos.nNode.GetIndex() + 1 != in InsertGlobalDocContent() [all …]
|
| /AOO41X/main/xmloff/source/text/ |
| H A D | txtparaimphint.hxx | 80 void SetEnd( const Reference < XTextRange > & rPos ) { xEnd = rPos; } in SetEnd() argument 98 const Reference < XTextRange > & rPos ) : in XMLStyleHint_Impl() 99 XMLHint_Impl( XML_HINT_STYLE, rPos, rPos ), in XMLStyleHint_Impl() 115 const Reference < XTextRange > & rPos ) : in XMLReferenceHint_Impl() 116 XMLHint_Impl( XML_HINT_REFERENCE, rPos, rPos ), in XMLReferenceHint_Impl() 137 XMLHyperlinkHint_Impl( const Reference < XTextRange > & rPos ) : in XMLHyperlinkHint_Impl() argument 138 XMLHint_Impl( XML_HINT_HYPERLINK, rPos, rPos ), in XMLHyperlinkHint_Impl() 181 const Reference < XTextRange > & rPos ) : in XMLIndexMarkHint_Impl() 182 XMLHint_Impl( XML_HINT_INDEX_MARK, rPos, rPos ), in XMLIndexMarkHint_Impl() 189 const Reference < XTextRange > & rPos, in XMLIndexMarkHint_Impl() [all …]
|
| /AOO41X/main/sc/source/core/tool/ |
| H A D | refdata.cxx | 32 void ScSingleRefData::CalcRelFromAbs( const ScAddress& rPos ) in CalcRelFromAbs() argument 34 nRelCol = nCol - rPos.Col(); in CalcRelFromAbs() 35 nRelRow = nRow - rPos.Row(); in CalcRelFromAbs() 36 nRelTab = nTab - rPos.Tab(); in CalcRelFromAbs() 40 void ScSingleRefData::SmartRelAbs( const ScAddress& rPos ) in SmartRelAbs() argument 43 nCol = nRelCol + rPos.Col(); in SmartRelAbs() 45 nRelCol = nCol - rPos.Col(); in SmartRelAbs() 48 nRow = nRelRow + rPos.Row(); in SmartRelAbs() 50 nRelRow = nRow - rPos.Row(); in SmartRelAbs() 53 nTab = nRelTab + rPos.Tab(); in SmartRelAbs() [all …]
|
| H A D | token.cxx | 569 const ScAddress & rPos, bool bReuseDoubleRef ) in ExtendRangeReference() argument 615 aRef.Extend( rRef2, rPos); in ExtendRangeReference() 657 rRef.Extend( pt[i]->GetSingleRef(), rPos); in ExtendRangeReference() 660 rRef.Extend( pt[i]->GetDoubleRef(), rPos); in ExtendRangeReference() 671 rRef.Extend( *it, rPos); in ExtendRangeReference() 679 rRef.Extend( pt[i]->GetSingleRef(), rPos); in ExtendRangeReference() 685 rRef.Extend( pt[i]->GetDoubleRef(), rPos); in ExtendRangeReference() 785 void ScSingleRefToken::CalcAbsIfRel( const ScAddress& rPos ) in CalcAbsIfRel() argument 786 { aSingleRef.CalcAbsIfRel( rPos ); } in CalcAbsIfRel() 787 void ScSingleRefToken::CalcRelFromAbs( const ScAddress& rPos ) in CalcRelFromAbs() argument [all …]
|
| /AOO41X/main/xmloff/source/draw/ |
| H A D | xexptran.cxx | 51 void Imp_SkipDouble(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen); 57 void Imp_SkipSpaces(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpaces() argument 59 while(rPos < nLen in Imp_SkipSpaces() 60 && sal_Unicode(' ') == rStr[rPos]) in Imp_SkipSpaces() 61 rPos++; in Imp_SkipSpaces() 64 void Imp_SkipSpacesAndOpeningBraces(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpacesAndOpeningBraces() argument 66 while(rPos < nLen in Imp_SkipSpacesAndOpeningBraces() 67 && (sal_Unicode(' ') == rStr[rPos] || sal_Unicode('(') == rStr[rPos])) in Imp_SkipSpacesAndOpeningBraces() 68 rPos++; in Imp_SkipSpacesAndOpeningBraces() 71 void Imp_SkipSpacesAndCommas(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpacesAndCommas() argument [all …]
|
| /AOO41X/main/sc/inc/ |
| H A D | refdata.hxx | 87 inline void InitAddressRel( const ScAddress& rAdr, const ScAddress& rPos ); 112 void SmartRelAbs( const ScAddress& rPos ); 113 void CalcRelFromAbs( const ScAddress& rPos ); 114 void CalcAbsIfRel( const ScAddress& rPos ); 133 const ScAddress& rPos ) in InitAddressRel() argument 139 CalcRelFromAbs( rPos ); in InitAddressRel() 177 inline void InitRangeRel( const ScRange& rRange, const ScAddress& rPos ) in InitRangeRel() 179 Ref1.InitAddressRel( rRange.aStart, rPos ); in InitRangeRel() 180 Ref2.InitAddressRel( rRange.aEnd, rPos ); in InitRangeRel() 188 inline void SmartRelAbs( const ScAddress& rPos ) in SmartRelAbs() [all …]
|
| H A D | postit.hxx | 68 explicit ScPostIt( ScDocument& rDoc, const ScAddress& rPos, bool bShown ); 71 explicit ScPostIt( ScDocument& rDoc, const ScAddress& rPos, const ScPostIt& rNote ); 84 ScDocument& rDoc, const ScAddress& rPos, 129 void SetText( const ScAddress& rPos, const ::rtl::OUString& rText ); 136 SdrCaptionObj* GetOrCreateCaption( const ScAddress& rPos ) const; 141 void ShowCaption( const ScAddress& rPos, bool bShow = true ); 146 void ShowCaptionTemp( const ScAddress& rPos, bool bShow = true ); 149 void UpdateCaptionPos( const ScAddress& rPos ); 156 void CreateCaptionFromInitData( const ScAddress& rPos ) const; 158 void CreateCaption( const ScAddress& rPos, const SdrCaptionObj* pCaption = 0 ); [all …]
|
| H A D | validat.hxx | 77 sal_Bool DoMacro( const ScAddress& rPos, const String& rInput, 80 sal_Bool DoScript( const ScAddress& rPos, const String& rInput, 88 ScDocument* pDocument, const ScAddress& rPos, 94 ScDocument* pDocument, const ScAddress& rPos ); 129 … bool FillSelectionList( TypedScStrCollection& rStrings, const ScAddress& rPos ) const; 133 const ScAddress& rPos ) const; 134 sal_Bool IsDataValid( ScBaseCell* pCell, const ScAddress& rPos ) const; 137 … sal_Bool DoError( Window* pParent, const String& rInput, const ScAddress& rPos ) const; 164 ScBaseCell* pCell, const ScAddress& rPos, 168 …bool IsEqualToTokenArray( ScBaseCell* pCell, const ScAddress& rPos, const ScTokenArray&… [all …]
|
| /AOO41X/main/sw/source/core/undo/ |
| H A D | unovwr.cxx | 60 SwUndoOverwrite::SwUndoOverwrite( SwDoc* pDoc, SwPosition& rPos, in SwUndoOverwrite() argument 67 SwPaM aPam( rPos.nNode, rPos.nContent.GetIndex(), in SwUndoOverwrite() 68 rPos.nNode, rPos.nContent.GetIndex()+1 ); in SwUndoOverwrite() 74 nSttNode = rPos.nNode.GetIndex(); in SwUndoOverwrite() 75 nSttCntnt = rPos.nContent.GetIndex(); in SwUndoOverwrite() 77 SwTxtNode* pTxtNd = rPos.nNode.GetNode().GetTxtNode(); in SwUndoOverwrite() 90 rPos.nContent++; in SwUndoOverwrite() 97 pTxtNd->InsertText( cIns, rPos.nContent, in SwUndoOverwrite() 103 const SwIndex aTmpIndex( rPos.nContent, -2 ); in SwUndoOverwrite() 116 sal_Bool SwUndoOverwrite::CanGrouping( SwDoc* pDoc, SwPosition& rPos, in CanGrouping() argument [all …]
|
| /AOO41X/main/svx/source/table/ |
| H A D | svdotable.cxx | 227 CellRef getCell( const CellPos& rPos ) const; 244 const SfxPoolItem* GetCellItem( const CellPos& rPos, sal_uInt16 nWhich ) const; 619 CellRef SdrTableObjImpl::getCell( const CellPos& rPos ) const in getCell() 624 … xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in getCell() 697 const SfxPoolItem* SdrTableObjImpl::GetCellItem( const CellPos& rPos, sal_uInt16 nWhich ) const in GetCellItem() argument 699 CellRef xCell( getCell( rPos ) ); in GetCellItem() 783 bool SdrTableObj::isValid( const CellPos& rPos ) const in isValid() 785 …return (rPos.mnCol >= 0) && (rPos.mnCol < mpImpl->getColumnCount()) && (rPos.mnRow >= 0) && (rPos.… in isValid() 810 CellPos SdrTableObj::getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const in getLeftCell() argument 816 return getPreviousCell( rPos, bEdgeTravel ); in getLeftCell() [all …]
|
| /AOO41X/main/svx/inc/svx/ |
| H A D | svdotable.hxx | 127 bool isValid( const sdr::table::CellPos& rPos ) const; 130 CellPos getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const; 131 CellPos getRightCell( const CellPos& rPos, bool bEdgeTravel ) const; 132 CellPos getUpCell( const CellPos& rPos, bool bEdgeTravel ) const; 133 CellPos getDownCell( const CellPos& rPos, bool bEdgeTravel ) const; 134 CellPos getPreviousCell( const CellPos& rPos, bool bEdgeTravel ) const; 135 CellPos getNextCell( const CellPos& rPos, bool bEdgeTravel ) const; 136 CellPos getPreviousRow( const CellPos& rPos, bool bEdgeTravel ) const; 137 CellPos getNextRow( const CellPos& rPos, bool bEdgeTravel ) const; 144 TableHitKind CheckTableHit( const Point& rPos, sal_Int32& rnX, sal_Int32& rnY, int nTol ) const; [all …]
|
| /AOO41X/main/sc/source/ui/inc/ |
| H A D | docfunc.hxx | 57 void NotifyInputHandler( const ScAddress& rPos ); 65 sal_Bool DetectiveAddPred(const ScAddress& rPos); 66 sal_Bool DetectiveDelPred(const ScAddress& rPos); 67 sal_Bool DetectiveAddSucc(const ScAddress& rPos); 68 sal_Bool DetectiveDelSucc(const ScAddress& rPos); 69 sal_Bool DetectiveAddError(const ScAddress& rPos); 80 … sal_Bool SetNormalString( const ScAddress& rPos, const String& rText, sal_Bool bApi ); 81 sal_Bool PutCell( const ScAddress& rPos, ScBaseCell* pNewCell, sal_Bool bApi ); 82 sal_Bool PutData( const ScAddress& rPos, ScEditEngineDefaulter& rEngine, 84 sal_Bool SetCellText( const ScAddress& rPos, const String& rText, [all …]
|
| /AOO41X/main/sw/source/core/docnode/ |
| H A D | ndcopy.cxx | 690 SwDoc::CopyRange( SwPaM& rPam, SwPosition& rPos, const bool bCopyAll ) const in CopyRange() argument 694 SwDoc* pDoc = rPos.nNode.GetNode().GetDoc(); in CopyRange() 715 lcl_ChkFlyFly( pDoc, nStt, nEnd, rPos.nNode.GetIndex() ) ) in CopyRange() 724 pRedlineRange = new SwPaM( rPos ); in CopyRange() 732 bRet = CopyImpl( rPam, rPos, true, bCopyAll, pRedlineRange ); in CopyRange() 736 else if( ! ( *pStt <= rPos && rPos < *pEnd && in CopyRange() 740 bRet = CopyImpl( rPam, rPos, true, bCopyAll, pRedlineRange ); in CopyRange() 754 SwPaM aPam( rPos ); // UndoBereich sichern in CopyRange() 779 pDoc->MoveRange( aPam, rPos, DOC_MOVEDEFAULT ); in CopyRange() 782 *aPam.GetPoint() = rPos; // Cursor umsetzen fuers Undo ! in CopyRange() [all …]
|
| /AOO41X/main/sc/source/ui/docshell/ |
| H A D | docfunc.cxx | 180 sal_Bool ScDocFunc::DetectiveAddPred(const ScAddress& rPos) in DetectiveAddPred() argument 188 SCCOL nCol = rPos.Col(); in DetectiveAddPred() 189 SCROW nRow = rPos.Row(); in DetectiveAddPred() 190 SCTAB nTab = rPos.Tab(); in DetectiveAddPred() 218 sal_Bool ScDocFunc::DetectiveDelPred(const ScAddress& rPos) in DetectiveDelPred() argument 229 SCCOL nCol = rPos.Col(); in DetectiveDelPred() 230 SCROW nRow = rPos.Row(); in DetectiveDelPred() 231 SCTAB nTab = rPos.Tab(); in DetectiveDelPred() 259 sal_Bool ScDocFunc::DetectiveAddSucc(const ScAddress& rPos) in DetectiveAddSucc() argument 268 SCCOL nCol = rPos.Col(); in DetectiveAddSucc() [all …]
|
| /AOO41X/main/svtools/source/control/ |
| H A D | ruler.cxx | 992 static void ImplCenterTabPos( Point& rPos, sal_uInt16 nTabStyle ) in ImplCenterTabPos() argument 996 rPos.Y() += RULER_TAB_HEIGHT/2; in ImplCenterTabPos() 998 rPos.X() -= RULER_TAB_WIDTH/2; in ImplCenterTabPos() 1000 rPos.X() += RULER_TAB_WIDTH/2; in ImplCenterTabPos() 1024 const Point& rPos, sal_uInt16 nStyle, WinBits nWinBits ) in ImplDrawRulerTab() argument 1035 aRect1.Left() = rPos.X() - RULER_TAB_DWIDTH2 + 1 ; in ImplDrawRulerTab() 1036 aRect1.Top() = rPos.Y() - RULER_TAB_DHEIGHT2 + 1 ; in ImplDrawRulerTab() 1037 aRect1.Right() = rPos.X() - RULER_TAB_DWIDTH2 + RULER_TAB_DWIDTH ; in ImplDrawRulerTab() 1038 aRect1.Bottom() = rPos.Y(); in ImplDrawRulerTab() 1039 aRect2.Left() = rPos.X() - RULER_TAB_DWIDTH2 + RULER_TAB_DWIDTH3; in ImplDrawRulerTab() [all …]
|
| /AOO41X/main/sc/source/ui/cctrl/ |
| H A D | dpcontrol.cxx | 88 void ScDPFieldButton::setBoundingBox(const Point& rPos, const Size& rSize, bool bLayoutRTL) in setBoundingBox() argument 90 maPos = rPos; in setBoundingBox() 180 void ScDPFieldButton::getPopupBoundingBox(Point& rPos, Size& rSize) const in getPopupBoundingBox() argument 192 rPos.setX(maPos.getX()); in getPopupBoundingBox() 194 rPos.setX(maPos.getX() + maSize.getWidth() - nW); in getPopupBoundingBox() 195 rPos.setY(maPos.getY() + maSize.getHeight() - nH); in getPopupBoundingBox() 336 const Point& rPos = rMEvt.GetPosPixel(); in MouseMove() local 337 size_t nSelectedMenu = getEnclosingMenuItem(rPos); in MouseMove() 345 const Point& rPos = rMEvt.GetPosPixel(); in MouseButtonDown() local 346 mnClickedMenu = getEnclosingMenuItem(rPos); in MouseButtonDown() [all …]
|
| /AOO41X/main/sw/source/core/access/ |
| H A D | accframe.cxx | 92 sal_Int32& rPos, in GetChild() argument 97 if( rPos >= 0 ) in GetChild() 109 if( 0 == rPos ) in GetChild() 112 rPos--; in GetChild() 118 rVisArea, *(rLower.GetSwFrm()), rPos, in GetChild() 135 if( 0 == rPos ) in GetChild() 138 rPos--; in GetChild() 144 rVisArea, *(rLower.GetSwFrm()), rPos, in GetChild() 160 sal_Int32& rPos, in GetChildIndex() argument 179 rPos++; in GetChildIndex() [all …]
|
| /AOO41X/main/sc/source/ui/view/ |
| H A D | viewfun7.cxx | 69 void lcl_AdjustInsertPos( ScViewData* pData, Point& rPos, Size& rSize ) in lcl_AdjustInsertPos() argument 77 long x = aPgSize.Width() - rPos.X() - rSize.Width(); in lcl_AdjustInsertPos() 78 long y = aPgSize.Height() - rPos.Y() - rSize.Height(); in lcl_AdjustInsertPos() 81 rPos.X() += x + 80; in lcl_AdjustInsertPos() 83 rPos.Y() += y + 200; in lcl_AdjustInsertPos() 84 rPos.X() += rSize.Width() / 2; // Position bei Paste gibt Mittelpunkt an in lcl_AdjustInsertPos() 85 rPos.Y() += rSize.Height() / 2; in lcl_AdjustInsertPos() 290 sal_Bool ScViewFunc::PasteObject( const Point& rPos, const uno::Reference < embed::XEmbeddedObject … in PasteObject() argument 356 Point aInsPos = rPos; in PasteObject() 373 sal_Bool ScViewFunc::PasteBitmapEx( const Point& rPos, const BitmapEx& rBmpEx ) in PasteBitmapEx() argument [all …]
|
| /AOO41X/main/sw/source/core/doc/ |
| H A D | doc.cxx | 688 bool SwDoc::SplitNode( const SwPosition &rPos, bool bChkTableStart ) in SplitNode() argument 690 SwCntntNode *pNode = rPos.nNode.GetNode().GetCntntNode(); in SplitNode() 698 SwDataChanged aTmp( this, rPos, 0 ); in SplitNode() 708 pUndo = new SwUndoSplitNode( this, rPos, bChkTableStart ); in SplitNode() 717 if( bChkTableStart && !rPos.nContent.GetIndex() && pNode->IsTxtNode() ) in SplitNode() 719 sal_uLong nPrevPos = rPos.nNode.GetIndex() - 1; in SplitNode() 755 ((SwPosition&)rPos).nNode = pTblNd->GetIndex()-1; in SplitNode() 756 ((SwPosition&)rPos).nContent.Assign( pTxtNd, 0 ); in SplitNode() 787 _SaveCntntIdx( this, rPos.nNode.GetIndex(), rPos.nContent.GetIndex(), in SplitNode() 791 pNode = pNode->SplitCntntNode( rPos ); in SplitNode() [all …]
|
| /AOO41X/main/svtools/source/contnr/ |
| H A D | svicnvw.cxx | 357 void SvIconView::SetEntryPosition( SvLBoxEntry* pEntry, const Point& rPos) in SetEntryPosition() argument 359 pImp->SetEntryPosition( pEntry, rPos, sal_False, sal_True ); in SetEntryPosition() 362 void SvIconView::SetEntryPosition( SvLBoxEntry* pEntry, const Point& rPos, sal_Bool bAdjustAtGrid ) in SetEntryPosition() argument 364 pImp->SetEntryPosition( pEntry, rPos, bAdjustAtGrid ); in SetEntryPosition() 381 SvLBoxEntry* SvIconView::GetDropTarget( const Point& rPos ) in GetDropTarget() argument 383 return pImp->GetDropTarget( rPos ); in GetDropTarget() 412 void SvIconView::PaintEntry( SvLBoxEntry* pEntry, const Point& rPos ) in PaintEntry() argument 414 pImp->PaintEntry( pEntry, rPos ); in PaintEntry() 609 void SvIconView::WriteDragServerInfo( const Point& rPos, SvLBoxDDInfo* pInfo) in WriteDragServerInfo() argument 611 pImp->WriteDragServerInfo( rPos, pInfo ); in WriteDragServerInfo() [all …]
|