Searched refs:NodeMap (Results 1 - 10 of 10) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h413 Node *lookup(const Function &F) const { return NodeMap.lookup(&F); }
424 Node *&N = NodeMap[&F];
464 DenseMap<const Function *, Node *> NodeMap; member in class:llvm::LazyCallGraph
500 /// the NodeMap.
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_pepper_interface_html5_fs.cc170 NodeMap::iterator iter = node_map_.find(path);
186 std::pair<NodeMap::iterator, bool> result =
187 node_map_.insert(NodeMap::value_type(path, node));
197 NodeMap::iterator iter = node_map_.find(path);
213 std::pair<NodeMap::iterator, bool> result =
214 node_map_.insert(NodeMap::value_type(path, node));
227 NodeMap::iterator iter = node_map_.find(path);
238 NodeMap::const_iterator iter = node_map_.find(path);
246 for (NodeMap::const_iterator iter = node_map_.begin();
H A Dfake_pepper_interface_html5_fs.h95 typedef std::map<Path, FakeHtml5FsNode> NodeMap; typedef in class:FakeHtml5FsFilesystem
96 NodeMap node_map_;
/external/chromium_org/net/spdy/
H A Dspdy_priority_forest.h127 typedef base::hash_map<NodeId, Node> NodeMap; typedef in class:net::SpdyPriorityForest
146 NodeMap all_nodes_; // maps from node IDs to Node objects
424 for (typename NodeMap::const_iterator iter = all_nodes_.begin();
489 typename NodeMap::const_iterator iter = all_nodes_.find(node_id);
498 for (typename NodeMap::const_iterator iter = all_nodes_.begin();
H A Dspdy_priority_tree.h151 typedef base::hash_map<NodeId, Node> NodeMap; typedef in class:net::SpdyPriorityTree
153 NodeMap all_nodes_; // maps from node IDs to Node objects
420 typename NodeMap::const_iterator iter = all_nodes_.find(node_id);
502 for (typename NodeMap::const_iterator iter = all_nodes_.begin();
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h66 NodeMap[ID] = ast_type_traits::DynTypedNode::create(*Node);
75 IDToNodeMap::const_iterator It = NodeMap.find(ID);
76 if (It == NodeMap.end()) {
83 IDToNodeMap::const_iterator It = NodeMap.find(ID);
84 if (It == NodeMap.end()) {
92 return NodeMap < Other.NodeMap;
103 return NodeMap;
107 IDToNodeMap NodeMap; member in class:clang::ast_matchers::internal::BoundNodesMap
/external/llvm/lib/Analysis/
H A DLazyCallGraph.cpp134 : BPA(std::move(G.BPA)), NodeMap(std::move(G.NodeMap)),
146 NodeMap = std::move(G.NodeMap);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h87 DenseMap<const Value*, SDValue> NodeMap; member in class:llvm::SelectionDAGBuilder
602 SDValue &N = NodeMap[V];
H A DSelectionDAGBuilder.cpp875 NodeMap.clear();
1013 SDValue &N = NodeMap[V];
1031 NodeMap[V] = Val;
1040 SDValue &N = NodeMap[V];
1045 NodeMap[V] = Val;
1077 SDValue N1 = NodeMap[V];
1078 assert(N1.getNode() && "visit didn't populate the NodeMap!");
1111 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(),
1163 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(), VT, Ops);
4755 SDValue &N = NodeMap[Addres
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h363 typedef llvm::DenseMap<const ExplodedNode*, ExplodedNode*> NodeMap; typedef in class:clang::ento::ExplodedGraph

Completed in 3143 milliseconds