Searched defs:ListNode (Results 1 – 3 of 3) sorted by relevance
42 explicit ListNode(ListNode *next) : next_(next) {} in ListNode() function43 ListNode(const ListNode & /* unused */) : next_(nullptr) {} in ListNode() function44 ListNode(ListNode && /* unused */) noexcept : next_(nullptr) {} in ListNode() argument
20 const ListNode = getTestClass('ListNode'); constant
34 explicit ListNode(ListNode *next) : next_(next) {} in ListNode() function