Lines Matching refs:rEntry

1462 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 =()
1518 eFlag = rEntry.eFlag; in operator =()
1522 if ( rEntry.pParent ) in operator =()
1523 pParent = new DirEntry( *rEntry.pParent ); in operator =()
1542 DirEntry DirEntry::operator+( const DirEntry& rEntry ) const in operator +()
1554 const DirEntry *pEntryTop = rEntry.ImpGetTopPtr(); in operator +()
1571 …((rEntry.Level()>1)?(rEntry[rEntry.Level()-2].aName.CompareIgnoreCaseToAscii(RFS_IDENTIFIER)==COMP… in operator +()
1579 return rEntry; in operator +()
1585 DBG_ASSERT( pEntryTop == &rEntry, "DirEntry::op+ buggy" ); in operator +()
1600 DirEntry aRet = rEntry; in operator +()
1611 aConcated += rEntry.GetFull(); in operator +()
1616 DirEntry aRet( rEntry ); in operator +()
1633 DirEntry &DirEntry::operator+=( const DirEntry& rEntry ) in operator +=() argument
1637 return *this = *this + rEntry; in operator +=()
2087 DirEntry &rEntry = TempNameBase_Impl::get(); in SetTempNameBase() local
2088 rEntry = aTempDir.TempName( FSYS_KIND_DIR ); in SetTempNameBase()
2089 return rEntry; in SetTempNameBase()
2095 const DirEntry &rEntry = TempNameBase_Impl::get(); in TempName() local
2096 if ( !pParent && FSYS_FLAG_CURRENT != rEntry.eFlag && FSYS_FLAG_ABSROOT != eFlag ) in TempName()
2099 DirEntry aFactory( rEntry ); in TempName()
3183 const DirEntry& rEntry = (const DirEntry&) (*this)[iLevel-1]; in IsLongNameOnFAT() local
3184 String aBase( rEntry.GetBase() ); in IsLongNameOnFAT()
3185 String aExtension( rEntry.GetExtension() ); in IsLongNameOnFAT()