Home
last modified time | relevance | path

Searched defs:MethodBindTester (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/rtc_base/
Dbind_unittest.cc25 struct MethodBindTester { struct
26 void NullaryVoid() { ++call_count; } in NullaryVoid()
27 int NullaryInt() { in NullaryInt()
31 int NullaryConst() const { in NullaryConst()
35 void UnaryVoid(int dummy) { ++call_count; } in UnaryVoid()
37 T Identity(T value) { in Identity()
41 int UnaryByPointer(int* value) const { in UnaryByPointer()
45 int UnaryByRef(const int& value) const { in UnaryByRef()
49 int Multiply(int a, int b) const { in Multiply()
53 void RefArgument(const scoped_refptr<LifeTimeCheck>& object) { in RefArgument()
[all …]