Lines Matching refs:o_rPath
45 ostream & o_rPath ) const;
47 bostream & o_rPath ) const;
60 ostream & o_rPath ) const;
62 bostream & o_rPath ) const;
76 ostream & o_rPath ) const;
78 bostream & o_rPath ) const;
90 ostream & o_rPath ) const;
92 bostream & o_rPath ) const;
109 ostream & o_rPath ) const;
111 bostream & o_rPath ) const;
129 ostream & o_rPath ) const;
131 bostream & o_rPath ) const;
144 ostream & o_rPath ) const;
146 bostream & o_rPath ) const;
266 UnixRootDir::Get( ostream & o_rPath ) const in Get()
268 o_rPath << '/'; in Get()
272 UnixRootDir::Get( bostream & o_rPath ) const in Get()
274 o_rPath.write( "/", 1 ); in Get()
298 WorkingDir::Get( ostream & o_rPath ) const in Get()
300 o_rPath << '.' << sOwnDelimiter; in Get()
304 WorkingDir::Get( bostream & o_rPath ) const in Get()
306 o_rPath.write( ".", 1 ); in Get()
307 o_rPath.write( sOwnDelimiter ); in Get()
330 WinRootDir::Get( ostream & o_rPath ) const in Get()
332 o_rPath << '\\'; in Get()
336 WinRootDir::Get( bostream & o_rPath ) const in Get()
338 o_rPath.write( "\\", 1 ); in Get()
362 WinDrive::Get( ostream & o_rPath ) const in Get()
364 o_rPath << cDrive << ':'; in Get()
368 WinDrive::Get( bostream & o_rPath ) const in Get()
372 o_rPath.write( &buf_[0], 2 ); in Get()
403 WinDriveRootDir::Get( ostream & o_rPath ) const in Get()
405 o_rPath << cDrive << ":\\"; in Get()
409 WinDriveRootDir::Get( bostream & o_rPath ) const in Get()
413 o_rPath.write( &buf_[0], 3 ); in Get()
461 UNCRoot::Get( ostream & o_rPath ) const in Get()
463 o_rPath << "\\\\" << sComputer << '\\' << sEntryPt << "\\"; in Get()
467 UNCRoot::Get( bostream & o_rPath ) const in Get()
469 o_rPath.write( "\\\\", 2 ); in Get()
470 o_rPath.write( sComputer ); in Get()
471 o_rPath.write( "\\", 1 ); in Get()
472 o_rPath.write( sEntryPt ); in Get()
473 o_rPath.write( "\\", 1 ); in Get()