Lines Matching full:filepath
30 : Key(E.getKey()), FilePath(E.getFilePath()), Error(E.getError()),
41 std::string FilePath;
57 Io.mapRequired("FilePath", Doc.FilePath);
72 Io.mapRequired("FilePath", Keys->FilePath);
144 createReplacementsForHeaders(llvm::StringRef FilePath, llvm::StringRef Code,
160 tooling::Replacement(FilePath, UINT_MAX, 0, ReplacementText));
168 HeaderReplacements.add(Replacement(FilePath, UINT_MAX, 1, Header));
181 // file path in all replacements and replaces them with \p FilePath.
183 combineReplacementsInChanges(llvm::StringRef FilePath,
189 FilePath, R.getOffset(), R.getLength(), R.getReplacementText())))
203 FilePath = std::string(FE->getName());
204 Key = FilePath + ":" + std::to_string(FileIDAndOffset.second);
213 AtomicChange::AtomicChange(std::string Key, std::string FilePath,
218 : Key(std::move(Key)), FilePath(std::move(FilePath)),
224 if (Key != Other.Key || FilePath != Other.FilePath || Error != Other.Error)
245 AtomicChange E(NE.Key, NE.FilePath, NE.Error, NE.InsertedHeaders,
300 applyAtomicChanges(llvm::StringRef FilePath, llvm::StringRef Code,
304 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style);
311 combineReplacementsInChanges(FilePath, Changes);
345 Spec.Style, *ChangedCode, AllReplaces.getAffectedRanges(), FilePath);
358 format::reformat(Spec.Style, *ChangedCode, FormatRanges, FilePath);