Lines Matching refs:ConfigFile
3923 loadAndParseConfigFile(StringRef ConfigFile, llvm::vfs::FileSystem *FS, in loadAndParseConfigFile() argument
3926 FS->getBufferForFile(ConfigFile.str()); in loadAndParseConfigFile()
3969 auto ConfigFile = StyleName.substr(5); in getStyle() local
3971 loadAndParseConfigFile(ConfigFile, FS, &Style, AllowUnknownOptions); in getStyle()
3973 return make_string_error("Error reading " + ConfigFile + ": " + in getStyle()
3978 << "Using configuration file " << ConfigFile << "\n"); in getStyle()
3985 FileName = ConfigFile; in getStyle()
4033 SmallString<128> ConfigFile(Directory); in getStyle() local
4035 llvm::sys::path::append(ConfigFile, F); in getStyle()
4036 LLVM_DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n"); in getStyle()
4038 Status = FS->status(ConfigFile); in getStyle()
4045 loadAndParseConfigFile(ConfigFile, FS, &Style, AllowUnknownOptions); in getStyle()
4048 return make_string_error("Error reading " + ConfigFile + ": " + in getStyle()
4053 UnsuitableConfigFiles.append(ConfigFile); in getStyle()
4058 << "Using configuration file " << ConfigFile << "\n"); in getStyle()