Home
last modified time | relevance | path

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

/aosp_15_r20/external/webrtc/api/
H A Drtc_error_unittest.cc38 struct MoveOnlyInt2 { struct
39 MoveOnlyInt2() {} in MoveOnlyInt2() argument
40 explicit MoveOnlyInt2(int value) : value(value) {} in MoveOnlyInt2() argument
43 MoveOnlyInt2(MoveOnlyInt2&& other) : value(other.value) {} in MoveOnlyInt2() argument
44 MoveOnlyInt2& operator=(MoveOnlyInt2&& other) { in operator =()
49 explicit MoveOnlyInt2(MoveOnlyInt&& other) : value(other.value) {} in MoveOnlyInt2() function
50 MoveOnlyInt2& operator=(MoveOnlyInt&& other) { in operator =()
55 int value = kDefaultMoveOnlyIntValue;