Searched refs:NodeTy (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A Dilist_node.h20 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...]
H A Dilist.h49 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 *getNex
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DSymbolTableListTraits.h33 template<typename NodeTy> class ilist_iterator;
34 template<typename NodeTy, typename Traits> class iplist;
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DIntervalIterator.h88 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) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp304 NodeTy::Profile(profile, L, State, IsSink);
305 NodeTy* V = Nodes.FindNodeOrInsertPos(profile, InsertPos);
314 V = (NodeTy*) getAllocator().Allocate<NodeTy>();
317 new (V) NodeTy(L, State, IsSink);
335 ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks,
352 for (ArrayRef<const NodeTy *>::iterator I = Sinks.begin(), E = Sinks.end();
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp244 EVT NodeTy = Node->getValueType(0); local
289 std::pair<SDNode*, SDNode*> LoHi = selectMULT(Node, MultOpc, DL, NodeTy,
303 SDNode *Result = selectMULT(Node, MultOpc, DL, NodeTy, false, true).second;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h327 typedef ExplodedNode NodeTy; typedef in class:clang::ento::ExplodedGraph
375 ExplodedGraph *trim(ArrayRef<const NodeTy *> Nodes,
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1476 BlockAddressSDNode(unsigned NodeTy, EVT VT, const BlockAddress *ba, argument
1478 : SDNode(NodeTy, DebugLoc(), getSDVTList(VT)),
1592 LSBaseSDNode(ISD::NodeType NodeTy, DebugLoc dl, SDValue *Operands, argument
1595 : MemSDNode(NodeTy, dl, VTs, MemVT, MMO) {

Completed in 127 milliseconds