HomeSort by relevance Sort by last modified time
    Searched defs:iplist (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ilist.h 48 template<typename NodeTy, typename Traits> class iplist;
291 /// iplist - The subset of list functionality that can safely be used on nodes
302 /// in the list. When the list is empty, the pointer in the iplist points
312 class iplist : public Traits { class in namespace:llvm
332 // No fundamental reason why iplist can't be copyable, but the default
334 iplist(const iplist &); // do not implement
335 void operator=(const iplist &); // do not implement
350 iplist() : Head(this->provideInitialHead()) {} function in class:llvm::iplist
351 ~iplist() {
    [all...]
  /external/llvm/include/llvm/ADT/
ilist.h 49 template<typename NodeTy, typename Traits> class iplist;
289 /// iplist - The subset of list functionality that can safely be used on nodes
300 /// in the list. When the list is empty, the pointer in the iplist points
310 class iplist : public Traits { class in namespace:llvm
330 // No fundamental reason why iplist can't be copyable, but the default
332 iplist(const iplist &) = delete;
333 void operator=(const iplist &) = delete;
348 iplist() : Head(this->provideInitialHead()) {} function in class:llvm::iplist
349 ~iplist() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
ilist.h 34 /// Use delete by default for iplist and ilist.
48 /// non-intrusive deletion in iplist (which implies ownership).
61 /// Callbacks do nothing by default in iplist and ilist.
390 class iplist class in namespace:llvm
392 using iplist_impl_type = typename iplist::iplist_impl;
395 iplist() = default;
397 iplist(const iplist &X) = delete;
398 iplist &operator=(const iplist &X) = delete
400 iplist(iplist &&X) : iplist_impl_type(std::move(X)) {} function in class:llvm::iplist
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
ilist.h 34 /// Use delete by default for iplist and ilist.
48 /// non-intrusive deletion in iplist (which implies ownership).
61 /// Callbacks do nothing by default in iplist and ilist.
403 class iplist class in namespace:llvm
405 typedef typename iplist::iplist_impl_type iplist_impl_type;
408 iplist() = default;
410 iplist(const iplist &X) = delete;
411 iplist &operator=(const iplist &X) = delete
413 iplist(iplist &&X) : iplist_impl_type(std::move(X)) {} function in class:llvm::iplist
    [all...]

Completed in 417 milliseconds