Home
last modified time | relevance | path

Searched refs:pRanges (Results 1 – 25 of 58) sorted by path

123

/trunk/main/chart2/source/controller/itemsetwrapper/
H A DItemConverter.cxx99 const sal_uInt16 * pRanges = rOutItemSet.GetRanges(); in FillItemSet() local
103 OSL_ASSERT( pRanges != NULL ); in FillItemSet()
107 while( (*pRanges) != 0) in FillItemSet()
109 sal_uInt16 nBeg = (*pRanges); in FillItemSet()
110 ++pRanges; in FillItemSet()
111 sal_uInt16 nEnd = (*pRanges); in FillItemSet()
112 ++pRanges; in FillItemSet()
/trunk/main/cui/source/dialogs/
H A Diconcdlg.cxx231 pRanges ( NULL ), in IconChoiceDialog()
338 if ( pRanges ) in ~IconChoiceDialog()
339 delete pRanges; in ~IconChoiceDialog()
923 if ( pRanges ) in GetInputRanges()
924 return pRanges; in GetInputRanges()
968 pRanges = new sal_uInt16[aUS.Count() + 1]; in GetInputRanges()
969 memcpy(pRanges, aUS.GetData(), sizeof(sal_uInt16) * aUS.Count()); in GetInputRanges()
970 pRanges[aUS.Count()] = 0; in GetInputRanges()
972 return pRanges; in GetInputRanges()
H A Dpostdlg.cxx53 static sal_uInt16 pRanges[] = variable
186 return pRanges; in GetRanges()
/trunk/main/cui/source/inc/
H A Diconcdlg.hxx176 sal_uInt16* pRanges; member in IconChoiceDialog
/trunk/main/cui/source/options/
H A Doptlingu.cxx170 static sal_uInt16 pRanges[] = variable
1240 return pRanges; in GetRanges()
/trunk/main/cui/source/tabpages/
H A Dbackgrnd.cxx71 static sal_uInt16 pRanges[] = variable
456 return pRanges; in GetRanges()
H A Dborder.cxx74 static sal_uInt16 pRanges[] = variable
405 return pRanges; in GetRanges()
H A Dconnect.cxx51 static sal_uInt16 pRanges[] = variable
432 return( pRanges ); in GetRanges()
H A Ddstribut.cxx36 static sal_uInt16 pRanges[] = variable
149 return(pRanges); in GetRanges()
H A Dmeasure.cxx51 static sal_uInt16 pRanges[] = variable
635 return( pRanges ); in GetRanges()
H A Dnumfmt.cxx63 static sal_uInt16 pRanges[] = variable
404 return pRanges; in GetRanges()
H A Dpage.cxx129 static sal_uInt16 pRanges[] = variable
233 return pRanges; in GetRanges()
H A Dparagrph.cxx2288 static sal_uInt16 pRanges[] = in GetRanges() local
2293 return pRanges; in GetRanges()
H A Dtabstpge.cxx67 static sal_uInt16 pRanges[] = variable
218 return pRanges; in GetRanges()
H A Dtextanim.cxx44 static sal_uInt16 pRanges[] = variable
512 return( pRanges ); in GetRanges()
H A Dtextattr.cxx55 static sal_uInt16 pRanges[] = variable
599 return( pRanges ); in GetRanges()
/trunk/main/reportdesign/source/ui/misc/
H A DUITools.cxx706 static sal_uInt16 pRanges[] = in openCharDialog() local
718 ::std::auto_ptr<SfxItemSet> pDescriptor( new SfxItemSet( *pPool, pRanges ) ); in openCharDialog()
/trunk/main/reportdesign/source/ui/report/
H A DReportController.cxx2424 static sal_uInt16 pRanges[] = in openPageDialog() local
2436 ::std::auto_ptr<SfxItemSet> pDescriptor(new SfxItemSet(*pPool, pRanges)); in openPageDialog()
4261 static sal_uInt16 pRanges[] = in openZoomDialog() local
4271 ::std::auto_ptr<SfxItemSet> pDescriptor(new SfxItemSet(*pPool, pRanges)); in openZoomDialog()
/trunk/main/sc/inc/
H A Dmarkdata.hxx96 SCCOLROW GetMarkColumnRanges( SCCOLROW* pRanges );
97 SCCOLROW GetMarkRowRanges( SCCOLROW* pRanges );
/trunk/main/sc/source/core/data/
H A Dmarkdata.cxx420 SCCOLROW ScMarkData::GetMarkColumnRanges( SCCOLROW* pRanges ) in GetMarkColumnRanges() argument
435 pRanges[0] = 0; in GetMarkColumnRanges()
436 pRanges[1] = MAXCOL; in GetMarkColumnRanges()
453 pRanges[2*nRangeCnt ] = nStart; in GetMarkColumnRanges()
454 pRanges[2*nRangeCnt+1] = nEnd; in GetMarkColumnRanges()
465 SCCOLROW ScMarkData::GetMarkRowRanges( SCCOLROW* pRanges ) in GetMarkRowRanges() argument
500 pRanges[0] = nTop; in GetMarkRowRanges()
501 pRanges[1] = nBottom; in GetMarkRowRanges()
521 pRanges[2*nRangeCnt ] = nStart; in GetMarkRowRanges()
522 pRanges[2*nRangeCnt+1] = nEnd; in GetMarkRowRanges()
/trunk/main/sc/source/filter/xml/
H A DXMLStylesExportHelper.cxx616 ScRowFormatRanges::ScRowFormatRanges(const ScRowFormatRanges* pRanges) in ScRowFormatRanges() argument
617 : aRowFormatRanges(pRanges->aRowFormatRanges), in ScRowFormatRanges()
618 pRowDefaults(pRanges->pRowDefaults), in ScRowFormatRanges()
619 pColDefaults(pRanges->pColDefaults), in ScRowFormatRanges()
620 nSize(pRanges->nSize) in ScRowFormatRanges()
H A DXMLStylesExportHelper.hxx168 ScRowFormatRanges(const ScRowFormatRanges* pRanges);
/trunk/main/sc/source/ui/docshell/
H A Ddocfunc.cxx3116 sal_Bool ScDocFunc::SetWidthOrHeight( sal_Bool bWidth, SCCOLROW nRangeCnt, SCCOLROW* pRanges, SCTAB… in SetWidthOrHeight() argument
3138 SCCOLROW nStart = pRanges[0]; in SetWidthOrHeight()
3139 SCCOLROW nEnd = pRanges[2*nRangeCnt-1]; in SetWidthOrHeight()
3168 memmove( pUndoRanges, pRanges, 2*nRangeCnt*sizeof(SCCOLROW) ); in SetWidthOrHeight()
3181 SCCOLROW nStartNo = *(pRanges++); in SetWidthOrHeight()
3182 SCCOLROW nEndNo = *(pRanges++); in SetWidthOrHeight()
/trunk/main/sc/source/ui/inc/
H A Ddocfunc.hxx127 SC_DLLPUBLIC sal_Bool SetWidthOrHeight( sal_Bool bWidth, SCCOLROW nRangeCnt, SCCOLROW* pRanges,
H A Dundoblk.hxx131 SCCOLROW* pRanges; member in ScUndoDeleteMulti
394 SCCOLROW* pRanges; member in ScUndoWidthOrHeight
975 ScRangeList* pRanges; member in ScUndoBorder

Completed in 156 milliseconds

123