Searched refs:Changes (Results 1 - 20 of 20) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DDeltaAlgorithm.cpp17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { argument
18 if (FailedTestsCache.count(Changes))
21 bool Result = ExecuteOneTest(Changes);
23 FailedTestsCache.insert(Changes);
44 DeltaAlgorithm::Delta(const changeset_ty &Changes, argument
46 // Invariant: union(Res) == Changes
47 UpdatedSearchState(Changes, Sets);
51 return Changes;
55 if (Search(Changes, Sets, Res))
64 return Changes;
69 Search(const changeset_ty &Changes, const changesetlist_ty &Sets, changeset_ty &Res) argument
104 Run(const changeset_ty &Changes) argument
[all...]
H A DDAGDeltaAlgorithm.cpp117 void UpdatedSearchState(const changeset_ty &Changes, argument
120 DDA.UpdatedSearchState(Changes, Sets, Required);
138 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
143 /// GetTestResult - Get the test result for the active set \p Changes with
146 /// \param Changes - The set of active changes being minimized, which should
151 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
162 void UpdatedSearchState(const changeset_ty &Changes,
164 DDAI.UpdatedSearchState(Changes, Sets, Required);
180 DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
183 for (changeset_ty::const_iterator it = Changes
179 DAGDeltaAlgorithmImpl( DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, const std::vector<edge_ty> &Dependencies) argument
290 GetTestResult(const changeset_ty &Changes, const changeset_ty &Required) argument
358 Run(const changeset_ty &Changes, const std::vector<edge_ty> &Dependencies) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp52 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange,
62 Changes.push_back(Change(Tok, /*CreateReplacement=*/false,
81 Changes.push_back(
89 if (Changes.empty())
92 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr));
105 Changes[0].PreviousEndOfTokenColumn = 0;
106 Change *LastOutsideTokenChange = &Changes[0];
107 for (unsigned i = 1, e = Changes.size(); i != e; ++i) {
109 Changes[i].OriginalWhitespaceRange.getBegin();
111 Changes[
234 AlignTokenSequence(unsigned Start, unsigned End, unsigned Column, F &&Matches, SmallVector<WhitespaceManager::Change, 16> &Changes) argument
329 AlignTokens(const FormatStyle &Style, F &&Matches, SmallVector<WhitespaceManager::Change, 16> &Changes, unsigned StartAt) argument
439 AlignMacroSequence( unsigned &StartOfSequence, unsigned &EndOfSequence, unsigned &MinColumn, unsigned &MaxColumn, bool &FoundMatchOnLine, std::function<bool(const WhitespaceManager::Change &C)> AlignMacrosMatches, SmallVector<WhitespaceManager::Change, 16> &Changes) argument
[all...]
H A DWhitespaceManager.h121 // Changes might be in the middle of a token, so we cannot just keep the
174 /// \brief Align consecutive C/C++ preprocessor macros over all \c Changes.
177 /// Align consecutive assignments over all \c Changes.
180 /// Align consecutive declarations over all \c Changes.
183 /// Align trailing comments over all \c Changes.
190 /// Align escaped newlines over all \c Changes.
209 SmallVector<Change, 16> Changes; member in class:clang::format::WhitespaceManager
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h47 /// GetTestResult - Get the test result for the \p Changes from the
50 /// \param Changes - The change set to test.
52 bool GetTestResult(const changeset_ty &Changes);
57 /// Delta - Minimize a set of \p Changes which has been partioned into
59 changeset_ty Delta(const changeset_ty &Changes,
63 /// removed from \p Changes while still satisfying the predicate.
65 /// \param Res - On success, a subset of Changes which satisfies the
68 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
73 virtual void UpdatedSearchState(const changeset_ty &Changes, argument
84 /// Run - Minimize the set \p Changes b
[all...]
H A DDAGDeltaAlgorithm.h52 /// Run - Minimize the DAG formed by the \p Changes vertices and the
57 /// \param Changes The list of changes.
60 /// (x,y) in \p Dependencies, both x and y must be in \p Changes. The
64 changeset_ty Run(const changeset_ty &Changes,
68 virtual void UpdatedSearchState(const changeset_ty &Changes, argument
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRules.h56 Expected<AtomicChanges> Changes = createSourceReplacements(Context); variable
57 if (!Changes)
58 Consumer.handleError(Changes.takeError());
60 Consumer.handle(std::move(*Changes));
H A DAtomicChange.h160 /// Applies all AtomicChanges in \p Changes to the \p Code.
172 llvm::ArrayRef<AtomicChange> Changes,
/freebsd-12-stable/contrib/expat/lib/
H A DMakefile.am49 ../Changes
52 cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
H A DMakefile.in395 ../Changes
796 cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp145 llvm::ArrayRef<AtomicChange> Changes,
150 for (const auto &Change : Changes) {
180 // Combine replacements in all Changes as a `Replacements`. This ignores the
184 llvm::ArrayRef<AtomicChange> Changes) {
186 for (const auto &Change : Changes)
296 llvm::ArrayRef<AtomicChange> Changes,
299 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style);
306 combineReplacementsInChanges(FilePath, Changes);
144 createReplacementsForHeaders(llvm::StringRef FilePath, llvm::StringRef Code, llvm::ArrayRef<AtomicChange> Changes, const format::FormatStyle &Style) argument
183 combineReplacementsInChanges(llvm::StringRef FilePath, llvm::ArrayRef<AtomicChange> Changes) argument
295 applyAtomicChanges(llvm::StringRef FilePath, llvm::StringRef Code, llvm::ArrayRef<AtomicChange> Changes, const ApplyChangesSpec &Spec) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DRenamingAction.cpp148 std::vector<AtomicChange> Changes; local
161 Changes.push_back(std::move(Change));
163 return std::move(Changes);
/freebsd-12-stable/contrib/ncurses/
H A Dconvert_configure.pl114 Changes: 98/11 : support check for executables in ncurses.
/freebsd-12-stable/share/mk/
H A Dsrc.sys.mk5 # to preserve historical (and useful) behavior. Changes here need to
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h65 AvailabilityChange Changes[NumAvailabilitySlots]; member in struct:clang::detail::AvailabilityData
74 Changes[IntroducedSlot] = Introduced;
75 Changes[DeprecatedSlot] = Deprecated;
76 Changes[ObsoletedSlot] = Obsoleted;
398 return getAvailabilityData()->Changes[detail::IntroducedSlot];
404 return getAvailabilityData()->Changes[detail::DeprecatedSlot];
410 return getAvailabilityData()->Changes[detail::ObsoletedSlot];
/freebsd-12-stable/contrib/expat/
H A DMakefile.am82 Changes \
H A DMakefile.in452 Changes \
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1213 bool Changes = true; local
1215 while (Changes) {
1217 Changes = false;
1229 Changes = true;
1233 Changes = true;
1246 Changes = true;
1254 Changes = true;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp999 AvailabilityChange Changes[Unknown]; local
1080 if (Changes[Deprecated].KeywordLoc.isValid()) {
1083 << SourceRange(Changes[Deprecated].KeywordLoc);
1086 Changes[Deprecated].KeywordLoc = KeywordLoc;
1088 Changes[Deprecated].Version = VersionTuple(1);
1158 if (!Changes[Index].KeywordLoc.isInvalid()) {
1161 << SourceRange(Changes[Index].KeywordLoc,
1162 Changes[Index].VersionRange.getEnd());
1165 Changes[Index].KeywordLoc = KeywordLoc;
1166 Changes[Inde
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMParallelDSP.cpp296 bool Changes = MatchSMLAD(F); variable
297 return Changes;

Completed in 274 milliseconds