Home
last modified time | relevance | path

Searched refs:nCols (Results 1 – 25 of 141) sorted by path

123456

/aoo41x/main/accessibility/source/standard/
H A Dvclxaccessiblelist.cxx756 sal_uInt16 nCols = 0, in UpdateVisibleLineCount() local
758 m_pListBoxHelper->GetMaxVisColumnsAndLines (nCols, nLines); in UpdateVisibleLineCount()
/aoo41x/main/offapi/com/sun/star/awt/
H A DXTextLayoutConstrains.idl49 com::sun::star::awt::Size getMinimumSize( [in] short nCols,
56 void getColumnsAndLines( [out] short nCols, [out] short nLines );
/aoo41x/main/oox/source/dump/
H A Dbiffdumper.cxx1525 sal_uInt32 nCols, nRows; in dumpAddDataArray() local
1526 dumpConstArrayHeader( nCols, nRows ); in dumpAddDataArray()
1533 for( sal_uInt32 nCol = 0; nCol < nCols; ++nCol ) in dumpAddDataArray()
H A Dxlsbdumper.cxx924 sal_Int32 nCols, nRows; in dumpAddDataArray() local
925 dumpaddDataArrayHeader( nCols, nRows ); in dumpAddDataArray()
932 for( sal_Int32 nCol = 0; nCol < nCols; ++nCol ) in dumpAddDataArray()
/aoo41x/main/oox/source/xls/
H A Dexternallinkbuffer.cxx165 sal_Int32 nRows, nCols; in importDdeItemValues() local
166 rStrm >> nRows >> nCols; in importDdeItemValues()
167 setResultSize( nCols, nRows ); in importDdeItemValues()
262 sal_Int32 nCols = rStrm.readuInt8(); in importExternalName() local
264 if( bBiff8 ) { ++nCols; ++nRows; } else if( nCols == 0 ) nCols = 256; in importExternalName()
265 setResultSize( nCols, nRows ); in importExternalName()
H A Dformulaparser.cxx1646 sal_Int32 nCols = rStrm.readInt32(); in importArrayToken() local
1647 … OSL_ENSURE( (nCols > 0) && (nRows > 0), "OoxFormulaParserImpl::importArrayToken - empty array" ); in importArrayToken()
1654 for( sal_Int32 nCol = 0; !rStrm.isEof() && (nCol < nCols); ++nCol ) in importArrayToken()
2355 sal_uInt16 nCols = rStrm.readuInt8(); in importArrayToken() local
2357 if( bBiff8 ) { ++nCols; ++nRows; } else if( nCols == 0 ) nCols = 256; in importArrayToken()
2358 … OSL_ENSURE( (nCols > 0) && (nRows > 0), "BiffFormulaParserImpl::importArrayToken - empty array" ); in importArrayToken()
2365 for( sal_uInt16 nCol = 0; !rStrm.isEof() && (nCol < nCols); ++nCol ) in importArrayToken()
/aoo41x/main/qadevOOo/tests/java/ifc/awt/
H A D_XTextLayoutConstrains.java49 short nCols = 0; in _getMinimumSize() local
51 Size mSize = oObj.getMinimumSize(nCols,nLines); in _getMinimumSize()
65 short[] nCols = new short[1]; in _getColumnsAndLines() local
67 oObj.getColumnsAndLines(nCols,nLines); in _getColumnsAndLines()
68 boolean res = ( (nCols[0] != 0) && (nLines[0] != 0) ); in _getColumnsAndLines()
70 log.println("nCols: " + nCols[0]); in _getColumnsAndLines()
/aoo41x/main/sc/inc/
H A Dcell.hxx451 void SetMatColsRows( SCCOL nCols, SCROW nRows );
452 void GetMatColsRows( SCCOL& nCols, SCROW& nRows ) const;
H A Dchartarr.hxx53 ScMemChart(short nCols, short nRows);
H A Dconsoli.hxx107 void SetSize( SCCOL nCols, SCROW nRows );
H A Dtoken.hxx358 SCCOL nCols; member in ScMatrixFormulaCellToken
362 nRows( nR ), nCols( nC ) {} in ScMatrixFormulaCellToken()
365 nRows( r.nRows ), nCols( r.nCols ) in ScMatrixFormulaCellToken()
377 nCols = nC; in SetMatColsRows()
382 nC = nCols; in GetMatColsRows()
384 SCCOL GetMatCols() const { return nCols; } in GetMatCols()
/aoo41x/main/sc/source/core/data/
H A Dcell.cxx1766 void ScFormulaCell::SetMatColsRows( SCCOL nCols, SCROW nRows ) in SetMatColsRows() argument
1770 pMat->SetMatColsRows( nCols, nRows); in SetMatColsRows()
1771 else if (nCols || nRows) in SetMatColsRows()
1772 aResult.SetToken( new ScMatrixFormulaCellToken( nCols, nRows)); in SetMatColsRows()
1776 void ScFormulaCell::GetMatColsRows( SCCOL & nCols, SCROW & nRows ) const in GetMatColsRows() argument
1780 pMat->GetMatColsRows( nCols, nRows); in GetMatColsRows()
1783 nCols = 0; in GetMatColsRows()
H A Ddocument.cxx2411 SCCOL nCols = aDestRange.aEnd.Col() - aDestRange.aStart.Col() + 1; in CopyMultiRangeFromClip() local
2413 UpdateRangeNamesInFormulas(aClipRangeNames, aRanges, rMark, nCols-1, nRows-1); in CopyMultiRangeFromClip()
H A Dvalidat.cxx693 SCSIZE nCol, nRow, nCols, nRows, n = 0; in GetSelectionFromFormula() local
694 pValues->GetDimensions( nCols, nRows ); in GetSelectionFromFormula()
738 for( nCol = 0; nCol < nCols ; nCol++ ) in GetSelectionFromFormula()
/aoo41x/main/sc/source/core/inc/
H A Djumpmatrix.hxx65 SCSIZE nCols; member in ScJumpMatrix
82 , nCols( nColsP ) in ScJumpMatrix()
94 NOTAVAILABLE), 0, 0, nCols-1, in ScJumpMatrix()
114 rCols = nCols; in GetDimensions()
128 if (nCols == 1 && nRows == 1) in GetJump()
133 else if (nCols == 1 && nRow < nRows) in GetJump()
135 else if (nRows == 1 && nCol < nCols) in GetJump()
137 else if (nCols <= nCol || nRows <= nRow) in GetJump()
150 sal_uLong n = (sal_uLong)nCols * nRows; in SetAllJumps()
/aoo41x/main/sc/source/core/tool/
H A Dchartarr.cxx49 ScMemChart::ScMemChart(short nCols, short nRows) in ScMemChart() argument
52 nColCnt = nCols; in ScMemChart()
H A Dcompiler.cxx4321 SCCOL nCols = rRef.Ref2.nCol - rRef.Ref1.nCol; in UpdateReference() local
4329 if (rRef.Ref2.nCol - rRef.Ref1.nCol != nCols || in UpdateReference()
4390 SCCOL nCols = rRef.Ref2.nCol - rRef.Ref1.nCol; in UpdateReference() local
4406 if (rRef.Ref2.nCol - rRef.Ref1.nCol != nCols || in UpdateReference()
H A Dconsoli.cxx258 void ScConsData::SetSize( SCCOL nCols, SCROW nRows ) in SetSize() argument
261 nColCount = static_cast<SCSIZE>(nCols); in SetSize()
H A Dddelink.cxx154 SCSIZE nCols = 1; // Leerstring -> eine leere Zelle in DataChanged() local
161 nCols = static_cast<SCSIZE>(aLine.GetTokenCount( '\t' )); in DataChanged()
164 if (!nRows || !nCols) // keine Daten in DataChanged()
171 pResult = new ScMatrix( nCols, nRows ); in DataChanged()
193 for (SCSIZE nC=0; nC<nCols; nC++) in DataChanged()
H A Ddoubleref.cxx156 SCCOL nCols = pQueryRef->getColSize(); in lcl_createExcelQuery() local
158 vector<SCCOL> aFields(nCols); in lcl_createExcelQuery()
160 while (bValid && (nCol < nCols)) in lcl_createExcelQuery()
195 while (nCol < nCols) in lcl_createExcelQuery()
316 SCCOL nCols = getColSize(); in getVisibleDataCellCount() local
321 return (nRows-1)*nCols; in getVisibleDataCellCount()
442 SCCOL nCols = getColSize(); in getVisibleDataCellCount() local
447 return (nRows-1)*nCols; in getVisibleDataCellCount()
H A Dinterpr1.cxx116 SCSIZE nCols, nRows; in ScIfJump() local
118 if ( nCols == 0 || nRows == 0 ) in ScIfJump()
249 SCSIZE nCols, nRows; in ScChoseJump() local
251 if ( nCols == 0 || nRows == 0 ) in ScChoseJump()
537 SCSIZE nCols, nRows; in JumpMatrix() local
539 if ((nCols <= nC && nCols != 1) || in JumpMatrix()
1792 SCSIZE nCols, nRows, nC, nR; in ScIsEmpty() local
1854 SCSIZE nCols, nRows, nC, nR; in IsString() local
2306 SCSIZE nCols, nRows, nC, nR; in ScIsValue() local
3924 SCCOL nCols; in ScColumn() local
[all …]
H A Dinterpr4.cxx1484 SCSIZE nCols, nRows; in ConvertMatrixParameters() local
1486 if ( nJumpCols < nCols ) in ConvertMatrixParameters()
1487 nJumpCols = nCols; in ConvertMatrixParameters()
1927 SCSIZE nCols, nRows, nC, nR; in GetDouble() local
1928 pMat->GetDimensions( nCols, nRows); in GetDouble()
1930 if ( nC < nCols && nR < nRows ) in GetDouble()
2039 SCSIZE nCols, nRows, nC, nR; in GetString() local
2040 pMat->GetDimensions( nCols, nRows); in GetString()
2042 if ( nC < nCols && nR < nRows ) in GetString()
2078 SCSIZE nCols, nRows, nC, nR; in GetDoubleOrStringFromMatrix() local
[all …]
H A Dinterpr5.cxx312 SCSIZE nCols, nRows; in GetNewMat() local
313 pMat->GetDimensions( nCols, nRows); in GetNewMat()
314 if ( nCols != nC || nRows != nR ) in GetNewMat()
3188 SCSIZE nCols, nRows; in ScMatRef() local
3189 pMat->GetDimensions( nCols, nRows ); in ScMatRef()
3192 if ((nCols <= nC && nCols != 1) || (nRows <= nR && nRows != 1)) in ScMatRef()
H A Drangeseq.cxx418 SCSIZE nCols, nRows; in CreateMixedMatrix() local
419 pMatrix->GetDimensions( nCols, nRows); in CreateMixedMatrix()
420 … if (nCols != static_cast<SCSIZE>(nMaxColCount) || nRows != static_cast<SCSIZE>(nRowCount)) in CreateMixedMatrix()
H A Dtoken.cxx1094 nCols == p->nCols && nRows == p->nRows; in operator ==()

Completed in 336 milliseconds

123456