| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | WhitespaceManager.cpp | 60 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange, in replaceWhitespace() 70 Changes.push_back(Change(Tok, /*CreateReplacement=*/false, in addUntouchableToken() 95 Changes.push_back( in replaceWhitespaceInToken() 104 if (Changes.empty()) in generateReplacements() 107 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr)); in generateReplacements() 130 Changes[0].PreviousEndOfTokenColumn = 0; in calculateLineBreakInformation() 131 Change *LastOutsideTokenChange = &Changes[0]; in calculateLineBreakInformation() 132 for (unsigned I = 1, e = Changes.size(); I != e; ++I) { in calculateLineBreakInformation() 133 auto &C = Changes[I]; in calculateLineBreakInformation() 134 auto &P = Changes[I - 1]; in calculateLineBreakInformation() [all …]
|
| H A D | WhitespaceManager.h | 294 assert(PrevIter->Index < Changes.size()); in getNetWidth() 295 if (Changes[PrevIter->Index].NewlinesBefore > 0) in getNetWidth() 308 if (Changes[CellIter->Index].NewlinesBefore == 0) in getMaximumCellWidth() 313 if (Changes[Next->Index].NewlinesBefore == 0) in getMaximumCellWidth() 362 SmallVector<Change, 16> Changes; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | DeltaAlgorithm.cpp | 16 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() argument 17 if (FailedTestsCache.count(Changes)) in GetTestResult() 20 bool Result = ExecuteOneTest(Changes); in GetTestResult() 22 FailedTestsCache.insert(Changes); in GetTestResult() 43 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() argument 46 UpdatedSearchState(Changes, Sets); in Delta() 50 return Changes; in Delta() 54 if (Search(Changes, Sets, Res)) in Delta() 62 return Changes; in Delta() 64 return Delta(Changes, SplitSets); in Delta() [all …]
|
| H A D | DAGDeltaAlgorithm.cpp | 115 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument 118 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState() 136 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, 149 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 160 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument 162 DDAI.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState() 178 DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, in DAGDeltaAlgorithmImpl() argument 181 for (change_ty Change : Changes) { in DAGDeltaAlgorithmImpl() 191 for (change_ty Change : Changes) in DAGDeltaAlgorithmImpl() 212 for (change_ty Change : Changes) in DAGDeltaAlgorithmImpl() [all …]
|
| /freebsd/crypto/heimdal/ |
| H A D | NEWS | 173 Changes in release 1.1 187 Changes in release 1.0.2 193 Changes in release 1.0.1 209 Changes in release 1.0 231 Changes in release 0.8.1 244 Changes in release 0.8 284 Changes in release 0.7.2 306 Changes in release 0.7.1 310 Changes in release 0.7 324 Changes in release 0.6.6 [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DeltaAlgorithm.h | 53 bool GetTestResult(const changeset_ty &Changes); 60 changeset_ty Delta(const changeset_ty &Changes, 69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets, 74 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument 88 changeset_ty Run(const changeset_ty &Changes);
|
| H A D | DAGDeltaAlgorithm.h | 65 changeset_ty Run(const changeset_ty &Changes, 69 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument
|
| /freebsd/contrib/pkgconf/ |
| H A D | NEWS | 1 Changes from previous version of pkgconf 4 Changes from 2.5.0 to 2.5.1: 9 Changes from 2.4.3 to 2.5.0: 44 Changes from 2.4.2 to 2.4.3: 50 Changes from 2.4.1 to 2.4.2: 59 Changes from 2.4.0 to 2.4.1: 64 Changes from 2.3.0 to 2.4.0: 93 Changes from 2.2.0 to 2.3.0: 128 Changes from 2.1.1 to 2.2.0: 146 Changes from 2.1.0 to 2.1.1: [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
| H A D | Transformer.h | 48 llvm::MutableArrayRef<AtomicChange> Changes; member 53 llvm::MutableArrayRef<AtomicChange> Changes; 67 Expected<llvm::MutableArrayRef<AtomicChange>> Changes)>; 80 Consumer(Result->Changes); 164 llvm::SmallVector<AtomicChange, 1> Changes; 168 Changes = std::move(*C); 184 RewriteResult.Changes = llvm::MutableArrayRef<AtomicChange>(Changes);
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
| H A D | RefactoringActionRules.h | 56 Expected<AtomicChanges> Changes = createSourceReplacements(Context); in invoke() local 57 if (!Changes) in invoke() 58 Consumer.handleError(Changes.takeError()); in invoke() 60 Consumer.handle(std::move(*Changes)); in invoke()
|
| /freebsd/contrib/tnftp/ |
| H A D | NEWS | 3 Changes in tnftp from 20090606 to 20091122: 7 Changes in tnftp from 20090520 to 20090606: 11 Changes in tnftp from 20070806 to 20090520: 26 Changes in tnftp from 20050625 to 20070806:
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | Transformer.cpp | 60 llvm::SmallVector<AtomicChange, 1> Changes; in convertToAtomicChanges() local 61 Changes.reserve(ChangesByFileID.size()); in convertToAtomicChanges() 63 Changes.push_back(std::move(IDChangePair.second)); in convertToAtomicChanges() 65 return Changes; in convertToAtomicChanges()
|
| /freebsd/contrib/tzdata/ |
| H A D | NEWS | 9 Changes to future timestamps 19 Changes to code 50 Changes to past and future timestamps 56 Changes to data 61 Changes to build procedure 76 Changes to code 140 Changes to past timestamps 146 Changes to build procedure 160 Changes to code 260 Changes to commentary [all …]
|
| /freebsd/contrib/tzcode/ |
| H A D | NEWS | 9 Changes to future timestamps 19 Changes to code 50 Changes to past and future timestamps 56 Changes to data 61 Changes to build procedure 76 Changes to code 140 Changes to past timestamps 146 Changes to build procedure 160 Changes to code 260 Changes to commentary [all …]
|
| /freebsd/contrib/lutok/ |
| H A D | NEWS | 1 Changes in version 0.4 27 Changes in version 0.3 50 Changes in version 0.2 63 Changes in version 0.1
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Tracker.cpp | 140 assert(Changes.empty() && "You must accept or revert changes!"); in ~Tracker() 349 for (auto &Change : reverse(Changes)) in revert() 351 Changes.clear(); in revert() 361 for (auto &Change : Changes) in accept() 363 Changes.clear(); in accept() 368 for (auto [Idx, ChangePtr] : enumerate(Changes)) { in dump()
|
| /freebsd/sys/contrib/zlib/ |
| H A D | ChangeLog | 4 Changes in 1.3.2 (17 Feb 2026) 29 Changes in 1.3.1.2 (8 Dec 2025) 55 Changes in 1.3.1 (22 Jan 2024) 65 Changes in 1.3 (18 Aug 2023) 83 Changes in 1.2.13 (13 Oct 2022) 95 Changes in 1.2.12 (27 Mar 2022) 158 Changes in 1.2.11 (15 Jan 2017) 162 Changes in 1.2.10 (2 Jan 2017) 169 Changes in 1.2.9 (31 Dec 2016) 201 Changes in 1.2.8 (28 Apr 2013) [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/ |
| H A D | AtomicChange.cpp | 145 llvm::ArrayRef<AtomicChange> Changes, in createReplacementsForHeaders() argument 150 for (const auto &Change : Changes) { in createReplacementsForHeaders() 184 llvm::ArrayRef<AtomicChange> Changes) { in combineReplacementsInChanges() argument 186 for (const auto &Change : Changes) in combineReplacementsInChanges() 300 llvm::ArrayRef<AtomicChange> Changes, in applyAtomicChanges() argument 303 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style); in applyAtomicChanges() 310 combineReplacementsInChanges(FilePath, Changes); in applyAtomicChanges()
|
| /freebsd/share/doc/papers/relengr/ |
| H A D | ref.bib | 4 %T Bug Fixes and Changes in 4.3BSD 12 %T Changes to the Kernel in 4.3BSD
|
| /freebsd/contrib/tcp_wrappers/ |
| H A D | CHANGES | 6 Changes per release 7.6 (Mar 1997) 19 Changes per release 7.5 (Feb 1997) 48 Changes per release 7.4 (Mar 1996) 58 Changes per release 7.3 (Feb 1996) 96 Changes per release 7.2 (Jan 1995) 119 Changes per release 7.1 (Jan 1995) 130 Changes per release 7.0 (Jan 1995) 221 Changes per release 6.3 (Mar 1994) 242 Changes per release 6.2 (Feb 1994) 263 Changes per release 6.1 (Dec 1993) [all …]
|
| /freebsd/contrib/expat/lib/ |
| H A D | Makefile.am | 102 ../Changes 105 cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
|
| /freebsd/contrib/ntp/sntp/libevent/ |
| H A D | ChangeLog-1.4 | 1 Changes in 1.4.14b-stable 4 Changes in 1.4.14-stable 31 Changes in 1.4.13-stable: 42 Changes in 1.4.12-stable: 52 Changes in 1.4.11-stable: 58 Changes in 1.4.10-stable: 69 Changes in 1.4.9-stable: 79 Changes in 1.4.8-stable: 84 Changes in 1.4.7-stable: 87 Changes in 1.4.6-stable: [all …]
|
| /freebsd/contrib/libevent/ |
| H A D | ChangeLog-1.4 | 1 Changes in 1.4.14b-stable 4 Changes in 1.4.14-stable 31 Changes in 1.4.13-stable: 42 Changes in 1.4.12-stable: 52 Changes in 1.4.11-stable: 58 Changes in 1.4.10-stable: 69 Changes in 1.4.9-stable: 79 Changes in 1.4.8-stable: 84 Changes in 1.4.7-stable: 87 Changes in 1.4.6-stable: [all …]
|
| /freebsd/contrib/atf/ |
| H A D | NEWS | 4 Changes in version 0.22 22 Changes in version 0.21 79 Changes in version 0.20 95 Changes in version 0.19 127 Changes in version 0.18 145 Changes in version 0.17 179 Changes in version 0.16 214 Changes in version 0.15 251 Changes in version 0.14 280 Changes in version 0.13 [all …]
|
| /freebsd/contrib/kyua/ |
| H A D | NEWS.md | 5 Changes in version 0.14 13 Changes in version 0.13 39 Changes in version 0.12 132 Changes in version 0.11 214 Changes in version 0.10 235 Changes in kyua-cli version 0.9 253 Changes in more detail: 279 Changes in kyua-testers version 0.3 296 Changes in kyua-cli version 0.8 313 Changes in kyua-testers version 0.2 [all …]
|