Lines Matching refs:std

46 typedef std::pair< std::string, bool > StringPair;
47 typedef std::hash_map< std::string, bool > ExcludeLibsMap;
70 static std::string GetMsiProperty(MSIHANDLE handle, const std::string& sProperty) in GetMsiProperty()
72 std::string result; in GetMsiProperty()
87 static BOOL rebaseImage( const std::string& filePath, LPVOID address ) in rebaseImage()
110 static BOOL rebaseImage( MSIHANDLE /*handle*/, const std::string& sFilePath, LPVOID address ) in rebaseImage()
112 std::string mystr; in rebaseImage()
125 static BOOL rebaseImagesInFolder( MSIHANDLE handle, const std::string& sPath, LPVOID address, Exclu… in rebaseImagesInFolder()
127 std::string sDir = sPath; in rebaseImagesInFolder()
128 std::string sPattern = sPath + TEXT("*.dll"); in rebaseImagesInFolder()
138 std::string sFileName = aFindFileData.cFileName; in rebaseImagesInFolder()
142 std::string sLibFile = sDir + sFileName; in rebaseImagesInFolder()
162 std::string sInstallPath = GetMsiProperty(handle, TEXT("INSTALLLOCATION")); in rebaseImages()
164 std::string sBasisDir = sInstallPath + TEXT("Basis\\program\\"); in rebaseImages()
165 std::string sOfficeDir = sInstallPath + TEXT("program\\"); in rebaseImages()
166 std::string sUreDir = sInstallPath + TEXT("URE\\bin\\"); in rebaseImages()
197 std::string sLibsExcluded = GetMsiProperty(handle, TEXT("EXCLUDE_FROM_REBASE")); in InitExcludeFromRebaseList()
203 std::string sExcludedLibName; in InitExcludeFromRebaseList()
204 if ( nDelPos != std::string::npos ) in InitExcludeFromRebaseList()
228 std::string sDontOptimizeLibs = GetMsiProperty(handle, TEXT("DONTOPTIMIZELIBS")); in RebaseLibrariesOnProperties()