Home
last modified time | relevance | path

Searched refs:rEntry (Results 1 – 25 of 182) sorted by relevance

12345678

/AOO41X/main/package/source/zipapi/
H A DZipOutputStream.cxx82 void SAL_CALL ZipOutputStream::putNextEntry( ZipEntry& rEntry, in putNextEntry() argument
89 if (rEntry.nTime == -1) in putNextEntry()
90 rEntry.nTime = getCurrentDosTime(); in putNextEntry()
91 if (rEntry.nMethod == -1) in putNextEntry()
92 rEntry.nMethod = nMethod; in putNextEntry()
93 rEntry.nVersion = 20; in putNextEntry()
94 rEntry.nFlag = 1 << 11; in putNextEntry()
95 if (rEntry.nSize == -1 || rEntry.nCompressedSize == -1 || in putNextEntry()
96 rEntry.nCrc == -1) in putNextEntry()
98 rEntry.nSize = rEntry.nCompressedSize = 0; in putNextEntry()
[all …]
H A DZipFile.cxx494 sal_Bool ZipFile::hasValidPassword ( ZipEntry & rEntry, const ::rtl::Reference< EncryptionData >& r… in hasValidPassword() argument
501 xSeek->seek( rEntry.nOffset ); in hasValidPassword()
502 sal_Int32 nSize = rEntry.nMethod == DEFLATED ? rEntry.nCompressedSize : rEntry.nSize; in hasValidPassword()
520 ZipEntry & rEntry, in createUnbufferedStream() argument
528 …return new XUnbufferedStream ( m_xFactory, aMutexHolder, rEntry, xStream, rData, nStreamMode, bIsE… in createUnbufferedStream()
537 uno::Reference< XInputStream > SAL_CALL ZipFile::getInputStream( ZipEntry& rEntry, in getInputStream() argument
545 if ( rEntry.nOffset <= 0 ) in getInputStream()
546 readLOC( rEntry ); in getInputStream()
551 sal_Bool bNeedRawStream = rEntry.nMethod == STORED; in getInputStream()
556 bNeedRawStream = !hasValidPassword ( rEntry, rData ); in getInputStream()
[all …]
/AOO41X/main/sc/source/core/data/
H A Dtable3.cxx949 ScQueryEntry& rEntry = rParam.GetEntry(i); in ValidQuery() local
952 pCell = GetCell( static_cast<SCCOL>(rEntry.nField), nRow ); in ValidQuery()
959 if (rEntry.nVal == SC_EMPTYFIELDS) in ValidQuery()
960 bOk = !( aCol[rEntry.nField].HasDataAt( nRow ) ); in ValidQuery()
962 bOk = aCol[rEntry.nField].HasDataAt( nRow ); in ValidQuery()
964 else if ( !rEntry.bQueryByString && (pCell ? pCell->HasValueData() : in ValidQuery()
965 HasValueData( static_cast<SCCOL>(rEntry.nField), nRow))) in ValidQuery()
984 nCellVal = GetValue( static_cast<SCCOL>(rEntry.nField), nRow ); in ValidQuery()
992 if (rEntry.bQueryByDate) in ValidQuery()
994 sal_uInt32 nNumFmt = GetNumberFormat(static_cast<SCCOL>(rEntry.nField), nRow); in ValidQuery()
[all …]
H A Ddociter.cxx552 ScQueryEntry& rEntry = mpParam->GetEntry(i); in DataAccessInternal() local
554 rEntry.bQueryByString = in DataAccessInternal()
555 !(mpDoc->GetFormatTable()->IsNumberFormat(*rEntry.pStr, nIndex, rEntry.nVal)); in DataAccessInternal()
742 bool lcl_isQueryByValue(const ScQueryEntry& rEntry, const ScMatrix& rMat, SCSIZE nCol, SCSIZE nRow) in lcl_isQueryByValue() argument
744 if (rEntry.bQueryByString) in lcl_isQueryByValue()
753 bool lcl_isQueryByString(const ScQueryEntry& rEntry, const ScMatrix& rMat, SCSIZE nCol, SCSIZE nRow) in lcl_isQueryByString() argument
755 switch (rEntry.eOp) in lcl_isQueryByString()
770 if (rEntry.bQueryByString && rMat.IsString(nCol, nRow)) in lcl_isQueryByString()
789 const ScQueryEntry& rEntry = mpParam->GetEntry(i); in isValidQuery() local
790 if (!rEntry.bDoQuery) in isValidQuery()
[all …]
H A Ddptablecache.cxx658 ScQueryEntry& rEntry = rParam.GetEntry(i); in ValidQuery() local
661 SCCOL nQueryCol = (SCCOL)rEntry.nField; in ValidQuery()
675 if (rEntry.nVal == SC_EMPTYFIELDS) in ValidQuery()
680 else if ( !rEntry.bQueryByString && pCellData->IsValue() ) in ValidQuery()
684 switch (rEntry.eOp) in ValidQuery()
687 bOk = ::rtl::math::approxEqual( nCellVal, rEntry.nVal ); in ValidQuery()
690 … bOk = (nCellVal < rEntry.nVal) && !::rtl::math::approxEqual( nCellVal, rEntry.nVal ); in ValidQuery()
693 … bOk = (nCellVal > rEntry.nVal) && !::rtl::math::approxEqual( nCellVal, rEntry.nVal ); in ValidQuery()
696 … bOk = (nCellVal < rEntry.nVal) || ::rtl::math::approxEqual( nCellVal, rEntry.nVal ); in ValidQuery()
699 … bOk = (nCellVal > rEntry.nVal) || ::rtl::math::approxEqual( nCellVal, rEntry.nVal ); in ValidQuery()
[all …]
/AOO41X/main/ucb/source/ucp/ftp/
H A Dftpdirp.cxx78 FTPDirentry &rEntry, in parseDOS() argument
511 setPath (rEntry.m_aName, p); in parseDOS()
513 rEntry.m_nMode |= INETCOREFTP_FILEMODE_ISDIR; in parseDOS()
514 rEntry.m_nSize = nSize; in parseDOS()
516 setYear (rEntry.m_aDate, nYear); in parseDOS()
518 rEntry.m_aDate.SetMonth(nMonth); in parseDOS()
519 rEntry.m_aDate.SetDay(nDay); in parseDOS()
520 rEntry.m_aDate.SetHour(nHour); in parseDOS()
521 rEntry.m_aDate.SetMin(nMinute); in parseDOS()
575 FTPDirentry &rEntry, in parseVMS() argument
[all …]
/AOO41X/main/sc/source/ui/unoobj/
H A Ddatauno.cxx1124 const ScQueryEntry& rEntry = aParam.GetEntry(i); in getFilterFields() local
1127 if (rEntry.pStr) in getFilterFields()
1128 aStringValue = *rEntry.pStr; in getFilterFields()
1130 aField.Connection = (rEntry.eConnect == SC_AND) ? sheet::FilterConnection_AND : in getFilterFields()
1132 aField.Field = rEntry.nField; in getFilterFields()
1133 aField.IsNumeric = !rEntry.bQueryByString; in getFilterFields()
1135 aField.NumericValue = rEntry.nVal; in getFilterFields()
1137 switch (rEntry.eOp) // ScQueryOp in getFilterFields()
1142 if (!rEntry.bQueryByString && *rEntry.pStr == EMPTY_STRING) in getFilterFields()
1144 if (rEntry.nVal == SC_EMPTYFIELDS) in getFilterFields()
[all …]
/AOO41X/main/svl/source/items/
H A Ditemprop.cxx220 void SfxItemPropertySet::getPropertyValue( const SfxItemPropertySimpleEntry& rEntry, in getPropertyValue() argument
226 SfxItemState eState = rSet.GetItemState( rEntry.nWID, sal_True, &pItem ); in getPropertyValue()
227 if(SFX_ITEM_SET != eState && SFX_WHICH_MAX > rEntry.nWID ) in getPropertyValue()
228 pItem = &rSet.GetPool()->GetDefaultItem(rEntry.nWID); in getPropertyValue()
232 pItem->QueryValue( rAny, rEntry.nMemberId ); in getPropertyValue()
236 SfxItemSet aSet(*rSet.GetPool(), rEntry.nWID, rEntry.nWID); in getPropertyValue()
237 if(FillItem(aSet, rEntry.nWID, sal_True)) in getPropertyValue()
239 const SfxPoolItem& rItem = aSet.Get(rEntry.nWID); in getPropertyValue()
240 rItem.QueryValue( rAny, rEntry.nMemberId ); in getPropertyValue()
242 else if(0 == (rEntry.nFlags & PropertyAttribute::MAYBEVOID)) in getPropertyValue()
[all …]
/AOO41X/main/sc/source/ui/dbgui/
H A Dfiltdlg.cxx290 ScQueryEntry& rEntry = theQueryData.GetEntry(i); in Init() local
291 if ( rEntry.bDoQuery ) in Init()
293 nCondPos = (sal_uInt16)rEntry.eOp; in Init()
294 nFieldSelPos = GetFieldSelPos( static_cast<SCCOL>(rEntry.nField) ); in Init()
295 … if ( rEntry.nVal == SC_EMPTYFIELDS && !rEntry.bQueryByString && *rEntry.pStr == EMPTY_STRING ) in Init()
300 …else if ( rEntry.nVal == SC_NONEMPTYFIELDS && !rEntry.bQueryByString && *rEntry.pStr == EMPTY_STRI… in Init()
306 aValStr = *rEntry.pStr; in Init()
311 rEntry.nField = nFieldSelPos ? (theQueryData.nCol1 + in Init()
313 rEntry.bDoQuery=sal_True; in Init()
1092 ScQueryEntry& rEntry = theQueryData.GetEntry( nQE ); in IMPL_LINK() local
[all …]
H A Dpfiltdlg.cxx211 ScQueryEntry& rEntry = theQueryData.GetEntry(i); in Init() local
213 String aValStr = *rEntry.pStr; in Init()
214 if (!rEntry.bQueryByString && aValStr == EMPTY_STRING) in Init()
216 if (rEntry.nVal == SC_EMPTYFIELDS) in Init()
218 else if (rEntry.nVal == SC_NONEMPTYFIELDS) in Init()
221 sal_uInt16 nCondPos = (sal_uInt16)rEntry.eOp; in Init()
222 sal_uInt16 nFieldSelPos = GetFieldSelPos( static_cast<SCCOL>(rEntry.nField) ); in Init()
413 ScQueryEntry& rEntry = theParam.GetEntry(i); in GetOutputItem() local
424 *rEntry.pStr = EMPTY_STRING; in GetOutputItem()
425 rEntry.nVal = SC_EMPTYFIELDS; in GetOutputItem()
[all …]
/AOO41X/main/xmloff/source/style/
H A Dxmlprmap.cxx60 const XMLPropertySetMapperEntry_Impl& rEntry ) : in XMLPropertySetMapperEntry_Impl() argument
61 sXMLAttributeName( rEntry.sXMLAttributeName), in XMLPropertySetMapperEntry_Impl()
62 sAPIPropertyName( rEntry.sAPIPropertyName), in XMLPropertySetMapperEntry_Impl()
63 nXMLNameSpace( rEntry.nXMLNameSpace), in XMLPropertySetMapperEntry_Impl()
64 nType( rEntry.nType), in XMLPropertySetMapperEntry_Impl()
65 nContextId( rEntry.nContextId), in XMLPropertySetMapperEntry_Impl()
66 nEarliestODFVersionForExport( rEntry.nEarliestODFVersionForExport ), in XMLPropertySetMapperEntry_Impl()
67 pHdl( rEntry.pHdl) in XMLPropertySetMapperEntry_Impl()
179 const XMLPropertySetMapperEntry_Impl& rEntry = aMapEntries[nIndex]; in GetEntryIndex() local
180 if( (!nPropType || nPropType == rEntry.GetPropType()) && in GetEntryIndex()
[all …]
/AOO41X/main/fpicker/source/office/
H A DOfficeFilePicker.cxx218 ElementEntry_Impl& rEntry = *aListIter; in prepareExecute() local
219 if ( rEntry.m_bHasValue ) in prepareExecute()
220 aAccess.setValue( rEntry.m_nElementID, rEntry.m_nControlAction, rEntry.m_aValue ); in prepareExecute()
221 if ( rEntry.m_bHasLabel ) in prepareExecute()
222 aAccess.setLabel( rEntry.m_nElementID, rEntry.m_aLabel ); in prepareExecute()
223 if ( rEntry.m_bHasEnabled ) in prepareExecute()
224 aAccess.enableControl( rEntry.m_nElementID, rEntry.m_bEnabled ); in prepareExecute()
686 ElementEntry_Impl& rEntry = *aListIter; in setValue() local
687 if ( ( rEntry.m_nElementID == nElementID ) && in setValue()
688 ( !rEntry.m_bHasValue || ( rEntry.m_nControlAction == nControlAction ) ) ) in setValue()
[all …]
/AOO41X/main/vcl/source/window/
H A Dwpropset.cxx215 …WindowPropertySetData::PropertyMapEntry& rEntry = mpImpl->maProperties[ i_pLayout->getIdentifier()… in addLayoutToSet() local
216 …OSL_ENSURE( rEntry.mpWindow == 0 && rEntry.mpLayout.get() == 0, "inserted layout has duplicate nam… in addLayoutToSet()
217 rEntry.mpWindow = NULL; in addLayoutToSet()
218 rEntry.mpLayout = i_pLayout; in addLayoutToSet()
219 rEntry.maSavedValues = i_pLayout->getProperties(); in addLayoutToSet()
232 …WindowPropertySetData::PropertyMapEntry& rEntry = mpImpl->maProperties[ i_pWindow->getIdentifier()… in addWindowToSet() local
233 …OSL_ENSURE( rEntry.mpWindow == 0 && rEntry.mpLayout.get() == 0, "inserted window has duplicate nam… in addWindowToSet()
234 rEntry.mpWindow = i_pWindow; in addWindowToSet()
235 rEntry.mpLayout.reset(); in addWindowToSet()
236 rEntry.maSavedValues = i_pWindow->getProperties(); in addWindowToSet()
[all …]
/AOO41X/main/sw/source/filter/xml/
H A Dxmliteme.cxx84 const SvXMLItemMapEntry& rEntry,
92 const SvXMLItemMapEntry& rEntry,
127 const SvXMLItemMapEntry& rEntry, in handleSpecialItem() argument
133 switch( rEntry.nWhichId ) in handleSpecialItem()
146 static_cast<sal_uInt16>( rEntry.nMemberId & MID_SW_FLAG_MASK ); in handleSpecialItem()
161 AddAttribute( rEntry.nNameSpace, rEntry.eLocalName, sValue, in handleSpecialItem()
171 static_cast<sal_uInt16>( rEntry.nMemberId & MID_SW_FLAG_MASK ); in handleSpecialItem()
179 AddAttribute( rEntry.nNameSpace, rEntry.eLocalName, in handleSpecialItem()
190 AddAttribute( rEntry.nNameSpace, rEntry.eLocalName, in handleSpecialItem()
205 const SvXMLItemMapEntry& rEntry, in handleElementItem() argument
[all …]
H A Dxmlitemi.cxx74 virtual sal_Bool handleSpecialItem( const SvXMLItemMapEntry& rEntry,
82 handleNoItem(SvXMLItemMapEntry const& rEntry,
129 const SvXMLItemMapEntry& rEntry, in handleSpecialItem() argument
137 sal_uInt16 nMemberId = static_cast< sal_Int16 >(rEntry.nMemberId & MID_SW_FLAG_MASK); in handleSpecialItem()
185 SvXMLItemMapEntry const& rEntry, in handleNoItem() argument
191 if ((XML_NAMESPACE_FO == rEntry.nNameSpace) && in handleNoItem()
192 (xmloff::token::XML_MARGIN == rEntry.eLocalName)) in handleNoItem()
200 rEntry, rSet, rValue, rUnitConverter, rNamespaceMap); in handleNoItem()
272 const SvXMLItemMapEntry& rEntry,
303 const SvXMLItemMapEntry& rEntry, in CreateChildContext() argument
[all …]
/AOO41X/main/sc/source/core/tool/
H A Dinterpr1.cxx637 ScCompareOptions::ScCompareOptions( ScDocument* pDoc, const ScQueryEntry& rEntry, bool bReg ) : in ScCompareOptions() argument
638 aQueryEntry(rEntry), in ScCompareOptions()
735 ScQueryEntry& rEntry = pOptions->aQueryEntry; in CompareFunc() local
736 … DBG_ASSERT( *rComp.pVal[1] == *rEntry.pStr, "ScInterpreter::CompareFunc: broken options"); in CompareFunc()
741 bool bMatch = rEntry.GetSearchTextPtr( in CompareFunc()
748 else if (rEntry.eOp == SC_EQUAL || rEntry.eOp == SC_NOT_EQUAL) in CompareFunc()
784 const ScQueryEntry& rEntry = pOptions->aQueryEntry; in CompareFunc() local
785 if (!rEntry.bQueryByString && rEntry.pStr->Len() && in CompareFunc()
786 (rEntry.eOp == SC_EQUAL || rEntry.eOp == SC_NOT_EQUAL)) in CompareFunc()
791 bool bEqual = rComp.pVal[nStringQuery-1]->Equals( *rEntry.pStr); in CompareFunc()
[all …]
H A Dqueryparam.cxx102 ScQueryEntry& rEntry = GetEntry(nIndex); in FillInExcelSyntax() local
104 rEntry.bDoQuery = sal_True; in FillInExcelSyntax()
110 *rEntry.pStr = aCellStr.Copy(2); in FillInExcelSyntax()
111 rEntry.eOp = SC_NOT_EQUAL; in FillInExcelSyntax()
115 *rEntry.pStr = aCellStr.Copy(2); in FillInExcelSyntax()
116 rEntry.eOp = SC_LESS_EQUAL; in FillInExcelSyntax()
120 *rEntry.pStr = aCellStr.Copy(1); in FillInExcelSyntax()
121 rEntry.eOp = SC_LESS; in FillInExcelSyntax()
128 *rEntry.pStr = aCellStr.Copy(2); in FillInExcelSyntax()
129 rEntry.eOp = SC_GREATER_EQUAL; in FillInExcelSyntax()
[all …]
/AOO41X/main/sal/inc/osl/
H A Dprofile.hxx73 rtl::OString readString( const rtl::OString& rSection, const rtl::OString& rEntry, in readString() argument
79 rEntry.getStr(), in readString()
86 … sal_Bool readBool( const rtl::OString& rSection, const rtl::OString& rEntry, sal_Bool bDefault ) in readBool() argument
88 return osl_readProfileBool( profile, rSection.getStr(), rEntry.getStr(), bDefault ); in readBool()
91 sal_uInt32 readIdent(const rtl::OString& rSection, const rtl::OString& rEntry, in readIdent() argument
105 …sal_uInt32 nRet = osl_readProfileIdent( profile, rSection.getStr(), rEntry.getStr(), nFirstId, pSt… in readIdent()
110 sal_Bool writeString(const rtl::OString& rSection, const rtl::OString& rEntry, in writeString() argument
113 … return osl_writeProfileString( profile, rSection.getStr(), rEntry.getStr(), rString.getStr()); in writeString()
116 sal_Bool writeBool(const rtl::OString& rSection, const rtl::OString& rEntry, sal_Bool Value) in writeBool() argument
118 return osl_writeProfileBool( profile, rSection.getStr(), rEntry.getStr(), Value); in writeBool()
[all …]
/AOO41X/main/slideshow/source/engine/transitions/
H A Dslidechangebase.cxx404 ViewEntry& rEntry( maViewData.back() ); in viewAdded() local
405 getEnteringBitmap( rEntry ); in viewAdded()
406 getLeavingBitmap( rEntry ); in viewAdded()
407 addSprites( rEntry ); in viewAdded()
494 void SlideChangeBase::addSprites( ViewEntry& rEntry ) in addSprites() argument
500 getLeavingBitmap( rEntry )->getSize() ); in addSprites()
502 rEntry.mpOutSprite = createSprite( rEntry.mpView, in addSprites()
512 rEntry.mpView )); in addSprites()
514 rEntry.mpInSprite = createSprite( rEntry.mpView, in addSprites()
520 void SlideChangeBase::clearViewEntry( ViewEntry& rEntry ) in clearViewEntry() argument
[all …]
/AOO41X/main/svtools/source/control/
H A Dsvxbox.cxx110 void SvxListBox::InsertNewEntry(const SvxBoxEntry& rEntry) in InsertNewEntry() argument
112 SvxBoxEntry* pNew = new SvxBoxEntry(rEntry); in InsertNewEntry()
121 void SvxListBox::InsertEntry(const SvxBoxEntry& rEntry, sal_uInt16 nPos) in InsertEntry() argument
125 SvxBoxEntry* pEntry = new SvxBoxEntry(rEntry); in InsertEntry()
131 InsertSorted(new SvxBoxEntry(rEntry)); in InsertEntry()
160 void SvxListBox::RemoveEntry(const SvxBoxEntry& rEntry) in RemoveEntry() argument
162 sal_uInt16 nPos = ListBox::GetEntryPos(rEntry.aName); in RemoveEntry()
181 sal_uInt16 SvxListBox::GetEntryPos(const SvxBoxEntry& rEntry) const in GetEntryPos()
183 return ListBox::GetEntryPos(rEntry.aName); in GetEntryPos()
378 void SvxComboBox::InsertNewEntry(const SvxBoxEntry& rEntry) in InsertNewEntry() argument
[all …]
/AOO41X/main/sc/source/filter/excel/
H A Dexcimp8.cxx440 static void ExcelQueryToOooQuery( ScQueryEntry& rEntry ) in ExcelQueryToOooQuery() argument
442 if( ( rEntry.eOp != SC_EQUAL && rEntry.eOp != SC_NOT_EQUAL ) || rEntry.pStr == NULL ) in ExcelQueryToOooQuery()
446 xub_StrLen nLen = rEntry.pStr->Len(); in ExcelQueryToOooQuery()
447 sal_Unicode nStart = rEntry.pStr->GetChar( 0 ); in ExcelQueryToOooQuery()
448 sal_Unicode nEnd = rEntry.pStr->GetChar( nLen-1 ); in ExcelQueryToOooQuery()
451 rEntry.pStr->Erase( nLen-1, 1 ); in ExcelQueryToOooQuery()
452 rEntry.pStr->Erase( 0, 1 ); in ExcelQueryToOooQuery()
453 rEntry.eOp = ( rEntry.eOp == SC_EQUAL ) ? SC_CONTAINS : SC_DOES_NOT_CONTAIN; in ExcelQueryToOooQuery()
457 rEntry.pStr->Erase( 0, 1 ); in ExcelQueryToOooQuery()
458 rEntry.eOp = ( rEntry.eOp == SC_EQUAL ) ? SC_ENDS_WITH : SC_DOES_NOT_END_WITH; in ExcelQueryToOooQuery()
[all …]
H A Dexcrecds.cxx679 sal_Bool XclExpAutofilter::AddEntry( const ScQueryEntry& rEntry ) in AddEntry() argument
684 if( rEntry.pStr ) in AddEntry()
686 sText.Assign( *rEntry.pStr ); in AddEntry()
687 switch( rEntry.eOp ) in AddEntry()
714 if( !bLen && (rEntry.nVal == SC_EMPTYFIELDS) ) in AddEntry()
715 …bConflict = !AddCondition( rEntry.eConnect, EXC_AFTYPE_EMPTY, EXC_AFOPER_NONE, 0.0, NULL, sal_True… in AddEntry()
716 else if( !bLen && (rEntry.nVal == SC_NONEMPTYFIELDS) ) in AddEntry()
717 …bConflict = !AddCondition( rEntry.eConnect, EXC_AFTYPE_NOTEMPTY, EXC_AFOPER_NONE, 0.0, NULL, sal_T… in AddEntry()
728 switch( rEntry.eOp ) in AddEntry()
761 switch( rEntry.eOp ) in AddEntry()
[all …]
/AOO41X/main/basegfx/source/raster/
H A Drasterconvert3d.cxx185 RasterConversionLineEntry3D& rEntry = maLineEntries[maLineEntries.size() - 1]; in addEdge() local
189rEntry.setColorIndex(addColorInterpolator(rFill.getBColor(a), rFill.getBColor(b), fInvYDelta)); in addEdge()
194rEntry.setNormalIndex(addNormalInterpolator(rFill.getNormal(a), rFill.getNormal(b), fInvYDelta)); in addEdge()
204 rEntry.setInverseTextureIndex(addInverseTextureInterpolator( in addEdge()
211 rEntry.setTextureIndex(addTextureInterpolator( in addEdge()
303 RasterConversionLineEntry3D& rEntry = maLineEntries[maLineEntries.size() - 1]; in rasterconvertB3DEdge() local
309 … const double fDistanceX(fabs(rEntry.getX().getInc()) >= 1.0 ? rEntry.getX().getInc() : 1.0); in rasterconvertB3DEdge()
312 rEntry.getX().getVal() + fDistanceX, rEntry.getX().getInc(), in rasterconvertB3DEdge()
313 rEntry.getZ().getVal() + rEntry.getZ().getInc(), rEntry.getZ().getInc(), in rasterconvertB3DEdge()
/AOO41X/main/svx/source/dialog/
H A Ddlgctrl.cxx1330 void ColorLB::Append( const XColorEntry& rEntry ) in Append() argument
1332 InsertEntry( rEntry.GetColor(), rEntry.GetName() ); in Append()
1338 void ColorLB::Modify( const XColorEntry& rEntry, sal_uInt16 nPos ) in Modify() argument
1341 InsertEntry( rEntry.GetColor(), rEntry.GetName(), nPos ); in Modify()
1407 void HatchingLB::Append( const XHatchEntry& rEntry, const Bitmap& rBitmap ) in Append() argument
1411 InsertEntry( rEntry.GetName(), rBitmap ); in Append()
1415 InsertEntry( rEntry.GetName() ); in Append()
1423 void HatchingLB::Modify( const XHatchEntry& rEntry, sal_uInt16 nPos, const Bitmap& rBitmap ) in Modify() argument
1429 InsertEntry( rEntry.GetName(), rBitmap, nPos ); in Modify()
1433 InsertEntry( rEntry.GetName(), nPos ); in Modify()
[all …]
/AOO41X/main/tools/source/fsys/
H A Ddirent.cxx1462 sal_Bool DirEntry::operator==( const DirEntry& rEntry ) const in operator ==()
1468 if ( nError && ( nError == rEntry.nError ) ) in operator ==()
1470 if ( nError || rEntry.nError || in operator ==()
1472 ( rEntry.eFlag == FSYS_FLAG_INVALID ) ) in operator ==()
1482 DirEntry *pWith = (DirEntry *)&rEntry; in operator ==()
1504 DirEntry& DirEntry::operator=( const DirEntry& rEntry ) in operator =() argument
1508 if ( this == &rEntry ) in operator =()
1510 if ( rEntry.nError != FSYS_ERR_OK ) { in operator =()
1512 nError = rEntry.nError; in operator =()
1517 aName = rEntry.aName; in operator =()
[all …]

12345678