OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:polymorphicmatcher
(Results
1 - 3
of
3
) sorted by null
/external/chromium/testing/gmock/include/gmock/
gmock-matchers.h
304
// The
PolymorphicMatcher
class template makes it easy to implement a
317
class
PolymorphicMatcher
{
319
explicit
PolymorphicMatcher
(const Impl& an_impl) : impl_(an_impl) {}
360
GTEST_DISALLOW_ASSIGN_(
PolymorphicMatcher
);
376
// easier to use than the
PolymorphicMatcher
<Impl> constructor as it
381
//
PolymorphicMatcher
<TypeOfFoo>(foo);
383
inline
PolymorphicMatcher
<Impl> MakePolymorphicMatcher(const Impl& impl) {
384
return
PolymorphicMatcher
<Impl>(impl);
[
all
...]
/external/ceres-solver/internal/ceres/gmock/
gmock.h
[
all
...]
/external/chromium/testing/gmock/test/
gmock-matchers_test.cc
109
using testing::
PolymorphicMatcher
;
389
//
PolymorphicMatcher
<T> where T is the argument's type.
390
PolymorphicMatcher
<ReferencesBarOrIsZeroImpl> ReferencesBarOrIsZero() {
433
PolymorphicMatcher
<PolymorphicIsEvenImpl> PolymorphicIsEven() {
[
all
...]
Completed in 5983 milliseconds