Lines Matching refs:rEntry

1459 sal_Bool DirEntry::operator==( const DirEntry& rEntry ) const  in operator ==()
1465 if ( nError && ( nError == rEntry.nError ) ) in operator ==()
1467 if ( nError || rEntry.nError || in operator ==()
1469 ( rEntry.eFlag == FSYS_FLAG_INVALID ) ) in operator ==()
1479 DirEntry *pWith = (DirEntry *)&rEntry; in operator ==()
1501 DirEntry& DirEntry::operator=( const DirEntry& rEntry ) in operator =() argument
1505 if ( this == &rEntry ) in operator =()
1507 if ( rEntry.nError != FSYS_ERR_OK ) { in operator =()
1509 nError = rEntry.nError; in operator =()
1514 aName = rEntry.aName; in operator =()
1515 eFlag = rEntry.eFlag; in operator =()
1519 if ( rEntry.pParent ) in operator =()
1520 pParent = new DirEntry( *rEntry.pParent ); in operator =()
1539 DirEntry DirEntry::operator+( const DirEntry& rEntry ) const in operator +()
1551 const DirEntry *pEntryTop = rEntry.ImpGetTopPtr(); in operator +()
1568 …((rEntry.Level()>1)?(rEntry[rEntry.Level()-2].aName.CompareIgnoreCaseToAscii(RFS_IDENTIFIER)==COMP… in operator +()
1576 return rEntry; in operator +()
1582 DBG_ASSERT( pEntryTop == &rEntry, "DirEntry::op+ buggy" ); in operator +()
1597 DirEntry aRet = rEntry; in operator +()
1608 aConcated += rEntry.GetFull(); in operator +()
1613 DirEntry aRet( rEntry ); in operator +()
1630 DirEntry &DirEntry::operator+=( const DirEntry& rEntry ) in operator +=() argument
1634 return *this = *this + rEntry; in operator +=()
2084 DirEntry &rEntry = TempNameBase_Impl::get(); in SetTempNameBase() local
2085 rEntry = aTempDir.TempName( FSYS_KIND_DIR ); in SetTempNameBase()
2086 return rEntry; in SetTempNameBase()
2092 const DirEntry &rEntry = TempNameBase_Impl::get(); in TempName() local
2093 if ( !pParent && FSYS_FLAG_CURRENT != rEntry.eFlag && FSYS_FLAG_ABSROOT != eFlag ) in TempName()
2096 DirEntry aFactory( rEntry ); in TempName()
3180 const DirEntry& rEntry = (const DirEntry&) (*this)[iLevel-1]; in IsLongNameOnFAT() local
3181 String aBase( rEntry.GetBase() ); in IsLongNameOnFAT()
3182 String aExtension( rEntry.GetExtension() ); in IsLongNameOnFAT()