Lines Matching defs:FilePath
300 for (const auto &FilePath : CDCtx.UserStylesheets) {
305 llvm::sys::path::filename(FilePath));
326 for (const auto &FilePath : CDCtx.JsScripts) {
329 llvm::sys::path::append(ScriptPath, llvm::sys::path::filename(FilePath));
1047 llvm::SmallString<128> FilePath;
1048 llvm::sys::path::native(CDCtx.OutDirectory, FilePath);
1049 llvm::sys::path::append(FilePath, "index_json.js");
1050 llvm::raw_fd_ostream OS(FilePath, FileErr, llvm::sys::fs::OF_None);
1136 static llvm::Error copyFile(StringRef FilePath, StringRef OutDirectory) {
1139 llvm::sys::path::append(PathWrite, llvm::sys::path::filename(FilePath));
1141 llvm::sys::path::native(FilePath, PathRead);
1147 llvm::sys::path::filename(FilePath) +
1161 for (const auto &FilePath : CDCtx.UserStylesheets) {
1162 Err = copyFile(FilePath, CDCtx.OutDirectory);
1166 for (const auto &FilePath : CDCtx.JsScripts) {
1167 Err = copyFile(FilePath, CDCtx.OutDirectory);