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

  /external/chromium_org/net/spdy/
spdy_priority_forest.h 30 // The NodeId and Priority types must be POD that support comparison (most
32 template <typename NodeId, typename Priority>
42 bool NodeExists(NodeId node_id) const;
46 bool AddRootNode(NodeId node_id, Priority priority);
51 bool AddNonRootNode(NodeId node_id, NodeId parent_id, bool unordered);
55 bool RemoveNode(NodeId node_id);
59 Priority GetPriority(NodeId node_id) const;
62 // node (and thus has no parent), returns NodeId().
63 NodeId GetParent(NodeId node_id) const
    [all...]
  /external/chromium_org/mojo/services/view_manager/
ids.h 24 struct MOJO_VIEW_MANAGER_EXPORT NodeId {
25 NodeId(ConnectionSpecificId connection_id, ConnectionSpecificId node_id)
28 NodeId() : connection_id(0), node_id(0) {}
30 bool operator==(const NodeId& other) const {
35 bool operator!=(const NodeId& other) const {
64 inline NodeId NodeIdFromTransportId(Id id) {
65 return NodeId(HiWord(id), LoWord(id));
68 inline Id NodeIdToTransportId(const NodeId& id) {
80 inline NodeId RootNodeId() {
81 return NodeId(kRootConnection, 1)
    [all...]
node.h 30 Node(NodeDelegate* delegate, const NodeId& id);
36 const NodeId& id() const { return id_; }
96 const NodeId id_;
view_manager_service_impl.h 59 Node* GetNode(const NodeId& id) {
63 const Node* GetNode(const NodeId& id) const;
98 void ProcessNodeDeleted(const NodeId& node,
120 bool CanDeleteNode(const NodeId& node_id) const;
129 bool DeleteNodeImpl(ViewManagerServiceImpl* source, const NodeId& node_id);
root_node_manager.h 109 Node* GetNode(const NodeId& id);
149 void ProcessNodeDeleted(const NodeId& node);
view_manager_service_impl.cc 72 const NodeId node_id(node->id());
83 const Node* ViewManagerServiceImpl::GetNode(const NodeId& id) const {
161 const NodeId new_parent_id(new_parent ? new_parent->id() : NodeId());
162 const NodeId old_parent_id(old_parent ? old_parent->id() : NodeId());
206 void ViewManagerServiceImpl::ProcessNodeDeleted(const NodeId& node,
309 bool ViewManagerServiceImpl::CanDeleteNode(const NodeId& node_id) const {
347 const NodeId& node_id) {
529 inode->parent_id = NodeIdToTransportId(parent ? parent->id() : NodeId());
    [all...]
root_node_manager.cc 101 Node* RootNodeManager::GetNode(const NodeId& id) {
189 void RootNodeManager::ProcessNodeDeleted(const NodeId& node) {
node.cc 24 Node::Node(NodeDelegate* delegate, const NodeId& id)
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 29 typedef std::map<GraphBase::NodeId, unsigned> SelectionsMap;
73 /// @param nodeId Node id.
74 /// @param selection Selection for nodeId.
75 void setSelection(GraphBase::NodeId nodeId, unsigned selection) {
76 selections[nodeId] = selection;
80 /// @param nodeId Node id.
81 /// @return The selection for nodeId;
82 unsigned getSelection(GraphBase::NodeId nodeId) const
    [all...]
RegAllocSolver.h 141 typedef PBQP::GraphBase::NodeId NodeId;
161 void handleAddNode(NodeId NId) {
164 void handleRemoveNode(NodeId NId) {}
165 void handleSetNodeCosts(NodeId NId, const Vector& newCosts) {}
177 void handleDisconnectEdge(EdgeId EId, NodeId NId) {
192 void handleReconnectEdge(EdgeId EId, NodeId NId) {
201 NodeId N1Id = G.getEdgeNode1Id(EId);
202 NodeId N2Id = G.getEdgeNode2Id(EId);
212 void removeFromCurrentSet(NodeId NId)
    [all...]
Graph.h 29 typedef unsigned NodeId;
33 static NodeId invalidNodeId() {
34 return std::numeric_limits<NodeId>::max();
80 void removeAdjEdgeId(Graph &G, NodeId ThisNId, AdjEdgeIdx Idx) {
102 EdgeEntry(NodeId N1Id, NodeId N2Id, MatrixPtr Costs)
124 void connectTo(Graph &G, EdgeId ThisEdgeId, NodeId NId) {
138 void setAdjEdgeIdx(NodeId NId, typename NodeEntry::AdjEdgeIdx NewIdx) {
155 void disconnectFrom(Graph &G, NodeId NId) {
164 NodeId getN1Id() const { return NIds[0];
    [all...]
ReductionRules.h 28 void applyR1(GraphT &G, typename GraphT::NodeId NId) {
29 typedef typename GraphT::NodeId NodeId;
39 NodeId MId = G.getEdgeOtherNodeId(EId, NId);
72 void applyR2(GraphT &G, typename GraphT::NodeId NId) {
73 typedef typename GraphT::NodeId NodeId;
88 NodeId YNId = G.getEdgeOtherNodeId(YXEId, NId),
160 typedef GraphBase::NodeId NodeId;
    [all...]
  /external/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 55 void recordVReg(unsigned vreg, PBQPRAGraph::NodeId nodeId,
57 assert(node2VReg.find(nodeId) == node2VReg.end() && "Re-mapping node.");
61 node2VReg[nodeId] = vreg;
62 vreg2Node[vreg] = nodeId;
67 unsigned getVRegForNode(PBQPRAGraph::NodeId nodeId) const;
70 PBQPRAGraph::NodeId getNodeForVReg(unsigned vreg) const;
95 typedef std::map<PBQPRAGraph::NodeId, unsigned> Node2VReg;
96 typedef DenseMap<unsigned, PBQPRAGraph::NodeId> VReg2Node
    [all...]
SelectionDAGNodes.h 359 /// NodeId - Unique id per SDNode in the DAG.
360 int NodeId;
449 int getNodeId() const { return NodeId; }
452 void setNodeId(int Id) { NodeId = Id; }
744 SubclassData(0), NodeId(-1),
760 SubclassData(0), NodeId(-1), OperandList(nullptr), ValueList(VTs.VTs),
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocPBQP.cpp 156 unsigned PBQPRAProblem::getVRegForNode(PBQPRAGraph::NodeId node) const {
162 PBQPRAGraph::NodeId PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
252 PBQPRAGraph::NodeId nId = g.addNode(std::move(nodeCosts));
355 PBQPRAGraph::NodeId node = p->getNodeForVReg(src);
365 PBQPRAGraph::NodeId node1 = p->getNodeForVReg(dst);
366 PBQPRAGraph::NodeId node2 = p->getNodeForVReg(src);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 194 // Walk all nodes in the graph, assigning them a NodeId of 'ReadyToProcess'
321 // Recompute the NodeId and correct processed operands, adding the node to
356 int NodeId = User->getNodeId();
360 if (NodeId > 0) {
361 User->setNodeId(NodeId-1);
364 if (NodeId-1 == ReadyToProcess)
372 if (NodeId == NewNode)
376 // became ready. Its new NodeId is the number of operands it has minus 1
378 assert(NodeId == Unanalyzed && "Unknown node ID!");
448 /// calculate the NodeId. If the node itself changes to a processed node, i
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 820 static MDString *AppendMDNodeToSourcePtr(unsigned NodeId,
830 if (!(Node = Inst->getMetadata(NodeId))) {
844 Inst->setMetadata(NodeId, MDNode::get(Inst->getContext(),Hash));
878 static void AppendMDNodeToInstForPtr(unsigned NodeId,
893 Inst->setMetadata(NodeId, Node);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ksproxy.h 623 ULONG NodeId,
ks.h 113 ULONG NodeId;
119 ULONG NodeId;
125 ULONG NodeId;
    [all...]
clusapi.h 113 DWORD NodeId;
    [all...]
ksmedia.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtilsImpl.js 366 * @param {?Array.<!DOMAgent.NodeId>} nodeIds
TracingTimelineUIUtils.js 443 * @param {?Array.<!DOMAgent.NodeId>} nodeIds
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
portcls.h     [all...]

Completed in 4012 milliseconds