OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatcherCast
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_3.cc
20
using ::testing::
MatcherCast
;
context_group_unittest.cc
19
using ::testing::
MatcherCast
;
gles2_cmd_decoder_unittest_1.cc
20
using ::testing::
MatcherCast
;
gles2_cmd_decoder_unittest_2.cc
20
using ::testing::
MatcherCast
;
test_helper.cc
25
using ::testing::
MatcherCast
;
feature_info_unittest.cc
23
using ::testing::
MatcherCast
;
[
all
...]
gles2_cmd_decoder_unittest_base.cc
30
using ::testing::
MatcherCast
;
[
all
...]
program_manager_unittest.cc
26
using ::testing::
MatcherCast
;
[
all
...]
gles2_cmd_decoder_unittest.cc
42
using ::testing::
MatcherCast
;
[
all
...]
/external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h
328
MatcherCast
<const Element&>(e1_);
350
MatcherCast
<const Element&>(e1_),
351
MatcherCast
<const Element&>(e2_),
377
MatcherCast
<const Element&>(e1_),
378
MatcherCast
<const Element&>(e2_),
379
MatcherCast
<const Element&>(e3_),
406
MatcherCast
<const Element&>(e1_),
407
MatcherCast
<const Element&>(e2_),
408
MatcherCast
<const Element&>(e3_),
409
MatcherCast
<const Element&>(e4_)
[
all
...]
gmock-matchers.h
388
// types is done explicitly via
MatcherCast
<T>(m), which takes a
392
Matcher<T>
MatcherCast
(M m);
440
return
MatcherCast
<T>(matcher);
604
//
MatcherCast
(). We need this helper in order to partially
605
// specialize the implementation of
MatcherCast
() (C++ allows
609
// This general version is used when
MatcherCast
()'s argument is a
620
// This more specialized version is used when
MatcherCast
()'s argument
[
all
...]
/external/chromium/testing/gmock/test/
gmock_link_test.h
98
//
MatcherCast
<T>
154
using testing::
MatcherCast
;
663
// Tests the linkage of the
MatcherCast
<T>() function.
665
Matcher<const char*> m =
MatcherCast
<const char*>(_);
gmock-matchers_test.cc
97
using testing::
MatcherCast
;
461
// Tests that
MatcherCast
<T>(m) works when m is a polymorphic matcher.
463
Matcher<int> m =
MatcherCast
<int>(Eq(5));
485
// Tests that
MatcherCast
<T>(m) works when m is a Matcher<U> where T
489
Matcher<int> m2 =
MatcherCast
<int>(m1);
494
Matcher<int> m4 =
MatcherCast
<int>(m3);
502
// Tests that
MatcherCast
<T>(m) works when m is a Matcher<const T&>.
505
Matcher<int> m2 =
MatcherCast
<int>(m1);
510
// Tests that
MatcherCast
<T>(m) works when m is a Matcher<T&>.
513
Matcher<int> m2 =
MatcherCast
<int>(m1)
[
all
...]
Completed in 797 milliseconds