Lines Matching refs:spec

251   // Where in the source file was the default action spec defined?
283 // This template class implements an ON_CALL spec.
697 // Where in the source file was the expectation spec defined?
701 // Returns the cardinality specified in the expectation spec.
758 // Sets the cardinality of this expectation spec.
844 // This group of fields are part of the spec and won't change after
1253 // that the spec is associated with.
1257 // Adds a new default action spec to the function mocker and returns
1258 // the newly created spec.
1266 // Adds a new expectation spec to the function mocker and returns
1267 // the newly created spec.
1284 // The function mocker that owns this spec.
1286 // The argument matchers specified in the spec.
1475 // Returns the ON_CALL spec that matches this mock function with the
1483 const OnCallSpec<F>* spec = static_cast<const OnCallSpec<F>*>(*it);
1484 if (spec->Matches(args))
1485 return spec;
1500 const OnCallSpec<F>* const spec =
1502 if (spec != NULL) {
1503 return spec->GetAction().Perform(args);
1589 // Adds and returns a default action spec for this mock function.
1600 // Adds and returns an expectation spec for this mock function.
1622 // The current spec (either default action spec or expectation spec)
1636 const OnCallSpec<F>* const spec = FindOnCallSpec(args);
1638 if (spec == NULL) {
1644 << FormatFileLocation(spec->file(), spec->line()) << "\n";
1768 // The current spec (either default action spec or expectation spec)
1837 // internal/gmock-spec-builders_test.cc for more details.