Searched defs:Changes (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h48 /// GetTestResult - Get the test result for the \p Changes from the
51 /// \param Changes - The change set to test.
53 bool GetTestResult(const changeset_ty &Changes);
58 /// Delta - Minimize a set of \p Changes which has been partioned into
60 changeset_ty Delta(const changeset_ty &Changes,
64 /// removed from \p Changes while still satisfying the predicate.
66 /// \param Res - On success, a subset of Changes which satisfies the
69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
74 virtual void UpdatedSearchState(const changeset_ty &Changes, argument
85 /// Run - Minimize the set \p Changes b
[all...]
H A DDAGDeltaAlgorithm.h51 /// Run - Minimize the DAG formed by the \p Changes vertices and the
56 /// \param Changes The list of changes.
59 /// (x,y) in \p Dependencies, both x and y must be in \p Changes. The
63 changeset_ty Run(const changeset_ty &Changes,
67 virtual void UpdatedSearchState(const changeset_ty &Changes, argument
/external/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.cpp118 void UpdatedSearchState(const changeset_ty &Changes, argument
121 DDA.UpdatedSearchState(Changes, Sets, Required);
139 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
144 /// GetTestResult - Get the test result for the active set \p Changes with
147 /// \param Changes - The set of active changes being minimized, which should
152 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
163 void UpdatedSearchState(const changeset_ty &Changes,
165 DDAI.UpdatedSearchState(Changes, Sets, Required);
181 DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
184 for (changeset_ty::const_iterator it = Changes
180 DAGDeltaAlgorithmImpl( DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, const std::vector<edge_ty> &Dependencies) argument
283 GetTestResult(const changeset_ty &Changes, const changeset_ty &Required) argument
351 Run(const changeset_ty &Changes, const std::vector<edge_ty> &Dependencies) argument
[all...]
/external/clang/lib/Format/
H A DWhitespaceManager.h115 // Changes might be in the middle of a token, so we cannot just keep the
168 /// \brief Align consecutive assignments over all \c Changes.
171 /// \brief Align consecutive declarations over all \c Changes.
174 /// \brief Align trailing comments over all \c Changes.
181 /// \brief Align escaped newlines over all \c Changes.
200 SmallVector<Change, 16> Changes; member in class:clang::format::WhitespaceManager
H A DWhitespaceManager.cpp46 Changes.clear();
57 Changes.push_back(
67 Changes.push_back(
81 Changes.push_back(Change(
96 if (Changes.empty())
99 std::sort(Changes.begin(), Changes.end(), Change::IsBeforeInFile(SourceMgr));
111 Changes[0].PreviousEndOfTokenColumn = 0;
112 for (unsigned i = 1, e = Changes.size(); i != e; ++i) {
114 SourceMgr.getFileOffset(Changes[
154 AlignTokenSequence(unsigned Start, unsigned End, unsigned Column, F &&Matches, SmallVector<WhitespaceManager::Change, 16> &Changes) argument
187 AlignTokens(const FormatStyle &Style, F &&Matches, SmallVector<WhitespaceManager::Change, 16> &Changes) argument
[all...]
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp377 unsigned Changes; local
379 Changes = 0;
434 ++Changes;
463 ++Changes;
467 } while (Changes);
/external/llvm/lib/Target/AMDGPU/
H A DSIInsertWaits.cpp456 bool Changes = false; local
481 Changes |= insertWait(MBB, I, LastIssued);
483 Changes |= insertWait(MBB, I, handleOperands(*I));
490 Changes |= insertWait(MBB, MBB.getFirstTerminator(), LastIssued);
493 return Changes;
/external/v8/build/android/gyp/util/
H A Dmd5_check.py43 pass_changes: Whether to pass a Changes instance to |function|.
76 changes = Changes(old_metadata, new_metadata, force, missing_outputs)
93 class Changes(object): class in inherits:object
/external/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp571 bool Changes = true; local
573 while (Changes) {
575 Changes = false;
585 Changes = true;
589 Changes = true;
596 Changes = true;
601 Changes = true;
/external/clang/lib/Parse/
H A DParseDecl.cpp860 AvailabilityChange Changes[Unknown]; local
974 if (!Changes[Index].KeywordLoc.isInvalid()) {
977 << SourceRange(Changes[Index].KeywordLoc,
978 Changes[Index].VersionRange.getEnd());
981 Changes[Index].KeywordLoc = KeywordLoc;
982 Changes[Index].Version = Version;
983 Changes[Index].VersionRange = VersionRange;
1003 if (Changes[Index].KeywordLoc.isValid()) {
1006 << SourceRange(Changes[Index].KeywordLoc,
1007 Changes[Inde
[all...]

Completed in 271 milliseconds