Home
last modified time | relevance | path

Searched refs:impl_ (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-cardinalities.h94 explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {} in Cardinality()
98 int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); } in ConservativeLowerBound()
99 int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); } in ConservativeUpperBound()
103 return impl_->IsSatisfiedByCallCount(call_count); in IsSatisfiedByCallCount()
108 return impl_->IsSaturatedByCallCount(call_count); in IsSaturatedByCallCount()
114 return impl_->IsSaturatedByCallCount(call_count) && in IsOverSaturatedByCallCount()
115 !impl_->IsSatisfiedByCallCount(call_count); in IsOverSaturatedByCallCount()
119 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } in DescribeTo()
126 internal::linked_ptr<const CardinalityInterface> impl_;
H A Dgmock-actions.h389 return impl_ == nullptr && fun_ == nullptr;
391 return impl_ == NULL;
410 return impl_->Perform(args);
429 internal::linked_ptr<ActionInterface<F> > impl_;
460 return Action<F>(new MonomorphicImpl<F>(impl_));
473 return impl_.template Perform<Result>(args);
477 Impl impl_;
482 Impl impl_;
516 explicit ActionAdaptor(const Action<F2>& from) : impl_(from.impl_) {}
519 return impl_->Perform(args);
[all …]
H A Dgmock-matchers.h195 : impl_(impl) {} in MatcherInterfaceAdapter()
201 impl_->DescribeNegationTo(os); in DescribeNegationTo()
210 const MatcherInterface<T>* const impl_;
306 impl_->DescribeNegationTo(os); in DescribeNegationTo()
320 return impl_.get(); in GetDescriber()
329 : impl_(impl) {} in MatcherBase()
355 impl_;
591 impl_.DescribeTo(os); in DescribeTo()
595 impl_.DescribeNegationTo(os); in DescribeNegationTo()
603 const Impl impl_;
[all …]
/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h126 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} in ParamIterator()
129 impl_.reset(other.impl_->Clone());
137 impl_->Advance();
142 ParamIteratorInterface<T>* clone = impl_->Clone();
143 impl_->Advance();
147 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
156 scoped_ptr<ParamIteratorInterface<T> > impl_; variable
184 ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} in ParamGenerator()
187 impl_ = other.impl_;
192 iterator end() const { return iterator(impl_->End()); } in end()
[all …]
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest.cc4697 impl_->environments().push_back(env); in AddEnvironment()
4715 if (impl_->gtest_trace_stack().size() > 0) { in AddTestPartResult()
4780 impl_->RecordProperty(TestProperty(key, value)); in RecordProperty()
4869 return impl_->original_working_dir_.c_str(); in original_working_dir()
4877 return impl_->current_test_case(); in current_test_case()
4885 return impl_->current_test_info(); in current_test_info()
4896 return impl_->parameterized_test_registry(); in parameterized_test_registry()
4901 impl_ = new internal::UnitTestImpl(this); in UnitTest()
4906 delete impl_; in ~UnitTest()
4914 impl_->gtest_trace_stack().push_back(trace); in PushGTestTrace()
[all …]
/freebsd-13.1/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1357 internal::UnitTestImpl* impl() { return impl_; } in impl()
1358 const internal::UnitTestImpl* impl() const { return impl_; } in impl()
1396 internal::UnitTestImpl* impl_; variable