Searched defs:_Node (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/include/utils/
H A DList.h48 class _Node { class in class:android::List
50 explicit _Node(const T& val) : mVal(val) {} function in class:android::List::_Node
51 ~_Node() {}
54 inline _Node* getPrev() const { return mpPrev; }
55 inline _Node* getNext() const { return mpNext; }
57 inline void setPrev(_Node* ptr) { mpPrev = ptr; }
58 inline void setNext(_Node* ptr) { mpNext = ptr; }
63 _Node* mpPrev;
64 _Node* mpNext;
73 typedef _Node cons
[all...]

Completed in 226 milliseconds