Searched refs:SomeMeth (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libaddressinput/src/cpp/test/util/
H A Dscoped_ptr_unittest.cc28 int SomeMeth(int x) { return x; } function in class:__anon12603::ConDecLogger
43 EXPECT_EQ(10, scoper->SomeMeth(10));
44 EXPECT_EQ(10, scoper.get()->SomeMeth(10));
45 EXPECT_EQ(10, (*scoper).SomeMeth(10));
/external/chromium_org/base/memory/
H A Dscoped_ptr_unittest.cc21 virtual int SomeMeth(int x) const = 0;
32 virtual int SomeMeth(int x) const OVERRIDE { return x; }
113 EXPECT_EQ(10, scoper->SomeMeth(10));
114 EXPECT_EQ(10, scoper.get()->SomeMeth(10));
115 EXPECT_EQ(10, (*scoper).SomeMeth(10));
186 EXPECT_EQ(10, scoper_parent->SomeMeth(10));
187 EXPECT_EQ(10, scoper_parent.get()->SomeMeth(10));
188 EXPECT_EQ(10, (*scoper_parent).SomeMeth(10));
217 EXPECT_EQ(10, scoper_const->SomeMeth(10));
218 EXPECT_EQ(10, scoper_const.get()->SomeMeth(1
[all...]

Completed in 149 milliseconds