Home
last modified time | relevance | path

Searched refs:NodeMap (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
Dfake_pepper_interface_html5fs.cc170 NodeMap::iterator iter = node_map_.find(path); in AddFile()
186 std::pair<NodeMap::iterator, bool> result = in AddFile()
187 node_map_.insert(NodeMap::value_type(path, node)); in AddFile()
197 NodeMap::iterator iter = node_map_.find(path); in AddDirectory()
213 std::pair<NodeMap::iterator, bool> result = in AddDirectory()
214 node_map_.insert(NodeMap::value_type(path, node)); in AddDirectory()
227 NodeMap::iterator iter = node_map_.find(path); in GetNode()
238 NodeMap::const_iterator iter = node_map_.find(path); in GetDirectoryEntries()
246 for (NodeMap::const_iterator iter = node_map_.begin(); in GetDirectoryEntries()
Dfake_pepper_interface_html5fs.h92 typedef std::map<Path, FakeHtml5FsNode> NodeMap; typedef
93 NodeMap node_map_;
/external/chromium_org/net/spdy/
Dspdy_priority_forest.h126 typedef base::hash_map<NodeId, Node> NodeMap; typedef
145 NodeMap all_nodes_; // maps from node IDs to Node objects
423 for (typename NodeMap::const_iterator iter = all_nodes_.begin(); in FirstMarkedNode()
488 typename NodeMap::const_iterator iter = all_nodes_.find(node_id); in FindNode()
497 for (typename NodeMap::const_iterator iter = all_nodes_.begin(); in ValidateInvariantsForTests()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h71 NodeMap[ID] = ast_type_traits::DynTypedNode::create(*Node); in addNode()
80 IDToNodeMap::const_iterator It = NodeMap.find(ID); in getNodeAs()
81 if (It == NodeMap.end()) { in getNodeAs()
88 IDToNodeMap::const_iterator It = NodeMap.find(ID); in getNode()
89 if (It == NodeMap.end()) { in getNode()
97 return NodeMap < Other.NodeMap;
108 IDToNodeMap NodeMap; variable
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h86 DenseMap<const Value*, SDValue> NodeMap; variable
388 SDValue &N = NodeMap[V]; in setValue()
DSelectionDAGBuilder.cpp880 NodeMap.clear(); in clear()
1015 SDValue &N = NodeMap[V]; in getValue()
1033 NodeMap[V] = Val; in getValue()
1042 SDValue &N = NodeMap[V]; in getNonRegisterValue()
1047 NodeMap[V] = Val; in getNonRegisterValue()
1077 SDValue N1 = NodeMap[V]; in getValueImpl()
1112 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(), in getValueImpl()
1165 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(), in getValueImpl()
4557 SDValue &N = NodeMap[Address]; in visitIntrinsicCall()
4639 SDValue N = NodeMap[V]; in visitIntrinsicCall()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExplodedGraph.h363 typedef llvm::DenseMap<const ExplodedNode*, ExplodedNode*> NodeMap; typedef