Lines Matching +defs:other +defs:foo

38   TestObject(int foo, double bar)  in TestObject()
41 TestObject(const TestObject& other) in TestObject()
47 TestObject(TestObject&& other) in TestObject() function in base::__anon29ad220e0111::TestObject
55 TestObject& operator=(const TestObject& other) { in operator =()
63 TestObject& operator=(TestObject&& other) { in operator =()
72 void Swap(TestObject* other) { in Swap()
87 int foo() const { return foo_; } in foo() function in base::__anon29ad220e0111::TestObject
110 DeletedDefaultConstructor(int foo) : foo_(foo) {} in DeletedDefaultConstructor()
112 int foo() const { return foo_; } in foo() function in base::__anon29ad220e0111::DeletedDefaultConstructor
120 explicit DeletedCopy(int foo) : foo_(foo) {} in DeletedCopy()
127 int foo() const { return foo_; } in foo() function in base::__anon29ad220e0111::DeletedCopy
135 explicit DeletedMove(int foo) : foo_(foo) {} in DeletedMove()
142 int foo() const { return foo_; } in foo() function in base::__anon29ad220e0111::DeletedMove
150 explicit NonTriviallyDestructibleDeletedCopyConstructor(int foo) in NonTriviallyDestructibleDeletedCopyConstructor()
159 int foo() const { return foo_; } in foo() function in base::__anon29ad220e0111::NonTriviallyDestructibleDeletedCopyConstructor
206 constexpr Optional<float> other(first); in TEST() local
215 Optional<std::string> other(first); in TEST() local
224 Optional<std::string> other(first); in TEST() local
233 Optional<TestObject> other(first); in TEST() local
403 explicit Test1(int foo) : foo_(foo) {} in TEST()
405 int foo() const { return foo_; } in TEST() function in base::TEST::Test1
415 explicit Test2(Test1&& other) : bar_(other.foo()) {} in TEST()