reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

utils/unittest/googlemock/include/gmock/gmock-spec-builders.h
   88 class ExpectationSet;

References

utils/unittest/googlemock/include/gmock/gmock-spec-builders.h
  595   bool operator==(const ExpectationSet& rhs) const {
  599   bool operator!=(const ExpectationSet& rhs) const { return !(*this == rhs); }
  603   ExpectationSet& operator+=(const Expectation& e) {
  813   void FindUnsatisfiedPrerequisites(ExpectationSet* result) const
  860   ExpectationSet immediate_prerequisites_;
  966   TypedExpectation& After(const ExpectationSet& s) {
  973     for (ExpectationSet::const_iterator it = s.begin(); it != s.end(); ++it) {
  978   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2) {
  978   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2) {
  981   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
  981   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
  982                           const ExpectationSet& s3) {
  985   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
  985   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
  986                           const ExpectationSet& s3, const ExpectationSet& s4) {
  986                           const ExpectationSet& s3, const ExpectationSet& s4) {
  989   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
  989   TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
  990                           const ExpectationSet& s3, const ExpectationSet& s4,
  990                           const ExpectationSet& s3, const ExpectationSet& s4,
  991                           const ExpectationSet& s5) {
 1134       ExpectationSet unsatisfied_prereqs;
 1137       for (ExpectationSet::const_iterator it = unsatisfied_prereqs.begin();
utils/unittest/googlemock/src/gmock-spec-builders.cc
  103   for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin();
  118   for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin();
  128 void ExpectationBase::FindUnsatisfiedPrerequisites(ExpectationSet* result) const
  131   for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin();