reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
82 struct ilist_node_traits : ilist_alloc_traits<NodeTy>, 83 ilist_callback_traits<NodeTy> {}; 89 struct ilist_traits : public ilist_node_traits<NodeTy> {}; 96 template <class T> T &make(); 106 static Yes &test(U *I, decltype(I->getNext(&make<NodeT>())) * = 0); 136 static Yes &test(U *I, decltype(I->createNode(make<NodeT>())) * = 0); 144 static const bool value = HasGetNext<TraitsT, NodeT>::value || 146 HasCreateNode<TraitsT, NodeT>::value; 389 : public iplist_impl<simple_ilist<T, Options...>, ilist_traits<T>> { 389 : public iplist_impl<simple_ilist<T, Options...>, ilist_traits<T>> {include/llvm/ADT/ilist_node.h
150 typename ilist_detail::compute_node_options<T, Options...>::type> {
include/llvm/ADT/ilist_node_options.h108 typedef T value_type; 109 typedef T *pointer; 110 typedef T &reference; 111 typedef const T *const_pointer; 112 typedef const T &const_reference; 122 typedef node_options<T, extract_sentinel_tracking<Options...>::value,include/llvm/ADT/simple_ilist.h
79 : ilist_detail::compute_node_options<T, Options...>::type::list_base_type, 81 typename ilist_detail::compute_node_options<T, Options...>::type> { 85 typename ilist_detail::compute_node_options<T, Options...>::type;unittests/ADT/IListTest.cpp
197 struct NodeWithCallback : ilist_node<NodeWithCallback> { 204 NodeWithCallback(const NodeWithCallback &) = delete; 213 static void deleteNode(NodeWithCallback *) {} 217 void addNodeToList(NodeWithCallback *N) { N->IsInList = true; } 218 void removeNodeFromList(NodeWithCallback *N) { N->IsInList = false; } 234 ilist<NodeWithCallback> L1, L2; 235 NodeWithCallback N(7); 257 NodeWithCallback N1(1); 258 NodeWithCallback N2(2); 262 ilist<NodeWithCallback> L1;utils/unittest/googletest/include/gtest/gtest-printers.h
407 T* p, ::std::ostream* os) { 416 if (IsTrue(ImplicitlyConvertible<T*, const void*>::value)) {