Home
last modified time | relevance | path

Searched refs:_next (Results 1 - 17 of 17) sorted by relevance

/third_party/eudev/src/shared/
H A Dlist.h31 t *name##_next, *name##_prev
44 _item->name##_prev = _item->name##_next = NULL; \
52 if ((_item->name##_next = *_head)) \
53 _item->name##_next->name##_prev = _item; \
63 if (_item->name##_next) \
64 _item->name##_next->name##_prev = _item->name##_prev; \
66 _item->name##_prev->name##_next = _item->name##_next; \
69 *_head = _item->name##_next; \
71 _item->name##_next
[all...]
/third_party/libuv/src/win/
H A Dloop-watcher.c60 handle->name##_next = old_head; \
86 loop->name##_handles = handle->name##_next; \
91 loop->next_##name##_handle = handle->name##_next; \
95 handle->name##_prev->name##_next = handle->name##_next; \
97 if (handle->name##_next) { \
98 handle->name##_next->name##_prev = handle->name##_prev; \
114 (loop)->next_##name##_handle = handle->name##_next; \
/third_party/node/deps/uv/src/win/
H A Dloop-watcher.c60 handle->name##_next = old_head; \
86 loop->name##_handles = handle->name##_next; \
91 loop->next_##name##_handle = handle->name##_next; \
95 handle->name##_prev->name##_next = handle->name##_next; \
97 if (handle->name##_next) { \
98 handle->name##_next->name##_prev = handle->name##_prev; \
114 (loop)->next_##name##_handle = handle->name##_next; \
/third_party/musl/src/network/
H A Dlookup_name.c585 struct _linknode *_next; member
635 pnode = pnode->_next; in predefined_host_clear_all_hosts()
686 pnode = pnode->_next; in _predefined_host_is_contain_host_ip()
763 pnode = pnode->_next; in predefined_host_lookup_ip()
836 pnode = pnode->_next; in predefined_host_name_from_hosts()
860 pnode->_next = NULL; in create_linknode()
887 pnode = pnode->_next; in destory_linklist()
918 pnode = pnode->_next; in get_linknode()
943 plastnode->_next = pnode; in linklist_append_last()
970 preindex->_next in linklist_delete()
[all...]
/third_party/musl/porting/linux/user/src/network/
H A Dlookup_name.c517 struct _linknode *_next; member
567 pnode = pnode->_next; in predefined_host_clear_all_hosts()
618 pnode = pnode->_next; in _predefined_host_is_contain_host_ip()
747 pnode = pnode->_next; in predefined_host_name_from_hosts()
771 pnode->_next = NULL; in create_linknode()
798 pnode = pnode->_next; in destory_linklist()
826 pnode = pnode->_next; in get_linknode()
848 plastnode->_next = pnode; in linklist_append_last()
875 preindex->_next = pindex->_next; in linklist_delete()
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Denvironment.py1323 self._next = partial(next, self._gen)
1351 self._next = partial(next, self._buffered_generator(size))
1357 return self._next()
/third_party/node/tools/inspector_protocol/jinja2/
H A Denvironment.py1237 self._next = partial(next, self._gen)
1265 self._next = partial(next, self._buffered_generator(size))
1271 return self._next()
/third_party/skia/third_party/externals/jinja2/
H A Denvironment.py1323 self._next = partial(next, self._gen)
1351 self._next = partial(next, self._buffered_generator(size))
1357 return self._next()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h636 TiXmlNode* NextSibling( const char* _next ) { in NextSibling()
637 return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->NextSibling( _next ) ); in NextSibling()
654 TiXmlElement* NextSiblingElement( const char *_next ) { in NextSiblingElement()
655 return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->NextSiblingElement( _next ) ); in NextSiblingElement()
/third_party/libbpf/src/
H A Dbpf_helpers.h345 (((cur) = bpf_iter_##type##_next(&___it))); \
/third_party/jinja2/
H A Denvironment.py1628 self._next = partial(next, self._gen)
1656 self._next = partial(next, self._buffered_generator(size))
1662 return self._next() # type: ignore
/third_party/icu/icu4c/source/common/
H A Ducurr.cpp131 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); in next() local
132 if (_next == NULL) { in next()
136 if (*_next == *_start) { in next()
139 _current = _next; in next()
140 return _next; in next()
/third_party/node/deps/icu-small/source/common/
H A Ducurr.cpp134 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); in next() local
135 if (_next == nullptr) { in next()
139 if (*_next == *_start) { in next()
142 _current = _next; in next()
143 return _next; in next()
/third_party/skia/third_party/externals/icu/source/common/
H A Ducurr.cpp131 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); in next() local
132 if (_next == NULL) { in next()
136 if (*_next == *_start) { in next()
139 _current = _next; in next()
140 return _next; in next()
/third_party/python/Lib/
H A Dzipfile.py2526 def _next(self, at): member in Path
2541 subs = map(self._next, self.root.namelist())
2552 return self._next(self.root.resolve_dir(next))
2563 return self._next(parent_at)
/third_party/python/Lib/test/
H A Dtest_inspect.py4369 self._next = None
4375 if self._next is None:
4376 self._next = NTimesUnwrappable(self.n - 1)
4377 return self._next
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp1970 struct _IO_marker *_next;
[all...]

Completed in 59 milliseconds