Home | History | Annotate | Download | only in linker

Lines Matching full:nullptr

34   LinkedList() : head_(nullptr), tail_(nullptr) {}
42 that.head_ = that.tail_ = nullptr;
50 if (tail_ == nullptr) {
57 new_entry->next = nullptr;
59 if (tail_ == nullptr) {
68 if (head_ == nullptr) {
69 return nullptr;
77 if (head_ == nullptr) {
78 tail_ = nullptr;
85 if (head_ == nullptr) {
86 return nullptr;
93 while (head_ != nullptr) {
99 tail_ = nullptr;
112 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
122 for (LinkedListEntry<T>* e = head_, *p = nullptr; e != nullptr;) {
125 if (p == nullptr) {
141 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
147 return nullptr;
152 for (LinkedListEntry<T>* e = head_; sz < array_length && e != nullptr; e = e->next) {
160 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {