HomeSort by relevance Sort by last modified time
    Searched defs:Changes (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/Format/
WhitespaceManager.h 88 /// \brief Functor to sort changes in original source order.
116 // Changes might be in the middle of a token, so we cannot just keep the
167 /// \brief Align trailing comments over all \c Changes.
174 /// \brief Align escaped newlines over all \c Changes.
181 /// \brief Fill \c Replaces with the replacements for all effective changes.
193 SmallVector<Change, 16> Changes;
  /external/llvm/lib/CodeGen/
LiveRangeCalc.cpp 283 unsigned Changes;
285 Changes = 0;
341 ++Changes;
370 ++Changes;
374 } while (Changes);
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 66 const changeset_ty &Changes;
121 void UpdatedSearchState(const changeset_ty &Changes,
124 DDA.UpdatedSearchState(Changes, Sets, Required);
148 /// GetTestResult - Get the test result for the active set \p Changes with
149 /// \p Required changes from the cache, executing the test if necessary.
151 /// \param Changes - The set of active changes being minimized, which should
153 /// \param Required - The set of changes which have previously been
156 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
159 /// Helper object for minimizing an active set of changes
    [all...]
  /external/chromium_org/mojo/services/public/cpp/view_manager/tests/
view_unittest.cc 334 typedef std::vector<Change> Changes;
343 Changes GetAndClearChanges() {
344 Changes changes; local
345 changes_.swap(changes);
346 return changes;
368 Changes changes_;
395 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
396 EXPECT_EQ(2U, changes.size())
415 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
435 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
455 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
491 Changes changes; local
533 Changes changes = observer.GetAndClearChanges(); local
    [all...]
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 347 bool Changes = false;
367 Changes |= insertWait(MBB, I, handleOperands(*I));
372 Changes |= insertWait(MBB, MBB.getFirstTerminator(), LastIssued);
375 return Changes;
  /external/chromium_org/mojo/services/view_manager/
view_manager_unittest.cc 50 // ViewManagerClient messages received by way of a vector of Changes. Use
83 // Runs the main loop until |count| changes have been received.
86 if (tracker_->changes()->size() >= count) {
90 quit_count_ = count - tracker_->changes()->size();
91 // Run the current message loop. When |count| Changes have been received,
97 const std::vector<Change>& changes() const { return changes_; } function in class:mojo::service::__anon13452::ViewManagerProxy
106 tracker_->changes()->clear();
110 std::vector<Change> changes; local
111 tracker_->changes()->swap(changes);
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 768 AvailabilityChange Changes[Unknown];
858 if (!Changes[Index].KeywordLoc.isInvalid()) {
861 << SourceRange(Changes[Index].KeywordLoc,
862 Changes[Index].VersionRange.getEnd());
865 Changes[Index].KeywordLoc = KeywordLoc;
866 Changes[Index].Version = Version;
867 Changes[Index].VersionRange = VersionRange;
883 // availability changes. Make sure that hasn't happened.
887 if (Changes[Index].KeywordLoc.isValid()) {
890 << SourceRange(Changes[Index].KeywordLoc
    [all...]

Completed in 124 milliseconds