Lines Matching refs:FilePath
30 : Key(E.getKey()), FilePath(E.getFilePath()), Error(E.getError()), in NormalizedAtomicChange()
41 std::string FilePath; member
57 Io.mapRequired("FilePath", Doc.FilePath); in mapping()
72 Io.mapRequired("FilePath", Keys->FilePath); in mapping()
144 createReplacementsForHeaders(llvm::StringRef FilePath, llvm::StringRef Code, in createReplacementsForHeaders() argument
160 tooling::Replacement(FilePath, UINT_MAX, 0, ReplacementText)); in createReplacementsForHeaders()
168 HeaderReplacements.add(Replacement(FilePath, UINT_MAX, 1, Header)); in createReplacementsForHeaders()
183 combineReplacementsInChanges(llvm::StringRef FilePath, in combineReplacementsInChanges() argument
189 FilePath, R.getOffset(), R.getLength(), R.getReplacementText()))) in combineReplacementsInChanges()
203 FilePath = std::string(FE->getName()); in AtomicChange()
204 Key = FilePath + ":" + std::to_string(FileIDAndOffset.second); in AtomicChange()
213 AtomicChange::AtomicChange(std::string Key, std::string FilePath, in AtomicChange() argument
218 : Key(std::move(Key)), FilePath(std::move(FilePath)), in AtomicChange()
224 if (Key != Other.Key || FilePath != Other.FilePath || Error != Other.Error) in operator ==()
246 AtomicChange E(NE.Key, NE.FilePath, NE.Error, NE.InsertedHeaders, in convertFromYAML()
301 applyAtomicChanges(llvm::StringRef FilePath, llvm::StringRef Code, in applyAtomicChanges() argument
305 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style); in applyAtomicChanges()
312 combineReplacementsInChanges(FilePath, Changes); in applyAtomicChanges()
346 Spec.Style, *ChangedCode, AllReplaces.getAffectedRanges(), FilePath); in applyAtomicChanges()
359 format::reformat(Spec.Style, *ChangedCode, FormatRanges, FilePath); in applyAtomicChanges()