HomeSort by relevance Sort by last modified time
    Searched refs:NodeTy (Results 1 - 9 of 9) 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 49 template<typename NodeTy, typename Traits> class iplist;
50 template<typename NodeTy> class ilist_iterator;
55 template<typename NodeTy>
57 static NodeTy *getPrev(NodeTy *N) { return N->getPrev(); }
58 static NodeTy *getNext(NodeTy *N) { return N->getNext(); }
59 static const NodeTy *getPrev(const NodeTy *N) { return N->getPrev(); }
60 static const NodeTy *getNext(const NodeTy *N) { return N->getNext();
    [all...]
  /external/llvm/include/llvm/IR/
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/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 309 NodeTy::Profile(profile, L, State, IsSink);
310 NodeTy* V = Nodes.FindNodeOrInsertPos(profile, InsertPos);
319 V = (NodeTy*) getAllocator().Allocate<NodeTy>();
322 new (V) NodeTy(L, State, IsSink);
340 ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks,
357 for (ArrayRef<const NodeTy *>::iterator I = Sinks.begin(), E = Sinks.end();
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 267 template <class NodeTy>
268 SDValue getAddrLocal(NodeTy *N, EVT Ty, SelectionDAG &DAG,
287 template<class NodeTy>
288 SDValue getAddrGlobal(NodeTy *N, EVT Ty, SelectionDAG &DAG,
301 template<class NodeTy>
302 SDValue getAddrGlobalLargeGOT(NodeTy *N, EVT Ty, SelectionDAG &DAG,
320 template<class NodeTy>
321 SDValue getAddrNonPIC(NodeTy *N, EVT Ty, SelectionDAG &DAG) const {
Mips16ISelDAGToDAG.cpp 250 EVT NodeTy = Node->getValueType(0);
295 std::pair<SDNode*, SDNode*> LoHi = selectMULT(Node, MultOpc, DL, NodeTy,
309 SDNode *Result = selectMULT(Node, MultOpc, DL, NodeTy, false, true).second;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 327 typedef ExplodedNode NodeTy;
375 ExplodedGraph *trim(ArrayRef<const NodeTy *> Nodes,
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]

Completed in 641 milliseconds