HomeSort by relevance Sort by last modified time
    Searched refs:NodeTy (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/ADT/
ilist_node.h 20 template<typename NodeTy>
25 template<typename NodeTy>
27 friend struct ilist_traits<NodeTy>;
28 NodeTy *Prev;
30 NodeTy *getPrev() { return Prev; }
31 const NodeTy *getPrev() const { return Prev; }
32 void setPrev(NodeTy *P) { Prev = P; }
36 template<typename NodeTy>
42 template<typename NodeTy>
43 class ilist_node : private ilist_half_node<NodeTy> {
    [all...]
ilist.h 48 template<typename NodeTy, typename Traits> class iplist;
49 template<typename NodeTy> class ilist_iterator;
54 template<typename NodeTy>
56 static NodeTy *getPrev(NodeTy *N) { return N->getPrev(); }
57 static NodeTy *getNext(NodeTy *N) { return N->getNext(); }
58 static const NodeTy *getPrev(const NodeTy *N) { return N->getPrev(); }
59 static const NodeTy *getNext(const NodeTy *N) { return N->getNext();
    [all...]
  /external/llvm/include/llvm/
SymbolTableListTraits.h 33 template<typename NodeTy> class ilist_iterator;
34 template<typename NodeTy, typename Traits> class iplist;
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 88 template<class NodeTy, class OrigContainer_t, class GT = GraphTraits<NodeTy*>,
89 class IGT = GraphTraits<Inverse<NodeTy*> > >
97 typedef IntervalIterator<NodeTy, OrigContainer_t> _Self;
166 bool ProcessInterval(NodeTy *Node) {
191 void ProcessNode(Interval *Int, NodeTy *Node) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 312 typedef ExplodedNode NodeTy;
314 typedef NodeTy** roots_iterator;
315 typedef NodeTy* const * const_roots_iterator;
316 typedef NodeTy** eop_iterator;
317 typedef NodeTy* const * const_eop_iterator;
351 Trim(const NodeTy* const* NBeg, const NodeTy* const* NEnd,
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 223 NodeTy::Profile(profile, L, State);
224 NodeTy* V = Nodes.FindNodeOrInsertPos(profile, InsertPos);
234 V = (NodeTy*) getAllocator().Allocate<NodeTy>();
237 new (V) NodeTy(L, State);
259 ExplodedGraph::Trim(const NodeTy* const* NBeg, const NodeTy* const* NEnd,
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]

Completed in 108 milliseconds