Lines Matching refs:cDrive
97 char cDrive; member in csv::ploc::WinDrive
116 char cDrive; member in csv::ploc::WinDriveRootDir
357 : cDrive(static_cast< char >(toupper(i_cDrive))) in WinDrive()
364 o_rPath << cDrive << ':'; in Get()
371 buf_[0] = cDrive; in Get()
378 return new WinDrive(cDrive); in CreateCopy()
391 : cDrive(static_cast< char >(toupper(*i_sPath))) in WinDriveRootDir()
393 if ( 'A' > cDrive OR 'Z' < cDrive ) in WinDriveRootDir()
394 cDrive = 0; in WinDriveRootDir()
398 : cDrive(i_cDrive) in WinDriveRootDir()
405 o_rPath << cDrive << ":\\"; in Get()
412 buf_[0] = cDrive; in Get()
419 return new WinDriveRootDir(cDrive); in CreateCopy()