OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dothis
(Results
1 - 3
of
3
) sorted by null
/external/chromium/testing/gmock/test/
gmock-nice-strict_test.cc
45
MOCK_METHOD0(
DoThis
, void());
71
virtual void
DoThis
() = 0;
80
MOCK_METHOD0(
DoThis
, void());
117
nice_foo.
DoThis
();
127
ON_CALL(*nice_foo,
DoThis
())
131
nice_foo->
DoThis
();
143
nice_foo.
DoThis
();
160
EXPECT_CALL(nice_foo,
DoThis
());
161
nice_foo.
DoThis
();
168
EXPECT_CALL(nice_foo,
DoThis
()).Times(0)
[
all
...]
gmock_leak_test_.cc
46
virtual void
DoThis
() = 0;
53
MOCK_METHOD0(
DoThis
, void());
62
EXPECT_CALL(*foo,
DoThis
());
63
foo->
DoThis
();
75
ON_CALL(*foo,
DoThis
()).WillByDefault(Return());
88
ON_CALL(*foo1,
DoThis
()).WillByDefault(Return());
89
EXPECT_CALL(*foo2,
DoThis
());
90
foo2->
DoThis
();
/external/clang/www/
compatibility.html
573
void
DoThis
(T x) {}
579
DoThis
(x); // Invalid!
589
<b>my_file.cpp:8:5: <span class="error">error:</span> use of undeclared identifier '
DoThis
'</b>
590
DoThis
(x);
594
void
DoThis
(T x) {}
605
<tt>
DoThis
</tt> and <tt>DoThat</tt> are looked up when the template
617
<b>this-></b>
DoThis
(x);
626
<b>Base<T></b>::
DoThis
(x);
632
if <tt>
DoThis
</tt> is virtual, calling it this way will bypass virtual
[
all
...]
Completed in 180 milliseconds