Searched refs:graphident (Results 1 – 6 of 6) sorted by relevance
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/ |
D | objectgraph.rst | 5 :synopsis: A graph of objects that have a "graphident" attribute. 9 A graph of objects that have a "graphident" attribute. The 47 is either a node object, or the graphident of a node. 54 *Fromnode* and *tonode* can either be node objects or the graphident 63 Returns the *graphident* attribute of *node*, or the graph itself 71 *Node* can either be an actual node object or the graphident of 79 *Node* is either an object with a *graphident* attribute or 80 the *graphident* attribute itself. 85 object with a *graphident* attribute or the *graphident* attribute itself.
|
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/ |
D | test_object_graph.py | 13 def __init__(self, graphident): argument 14 self.graphident = graphident 20 def __init__(self, graphident, *args, **kwds): argument 21 self.graphident = graphident 26 return '<ArgNode %s>'%(self.graphident,) 301 e = graph.graph.edge_by_node(n1.graphident, n111.graphident)
|
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/ |
D | ObjectGraph.py | 21 self.graphident = self 121 return node.graphident 154 self.graph.restore_node(node.graphident) 156 self.graph.add_node(node.graphident, node)
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/ |
D | modulegraph.py | 351 self.graphident = identifier 383 return cmp(self.graphident, otherIdent) 391 return self.graphident == otherIdent 399 return self.graphident != otherIdent 407 return self.graphident < otherIdent 415 return self.graphident <= otherIdent 423 return self.graphident > otherIdent 431 return self.graphident >= otherIdent 435 return hash(self.graphident) 453 return (self.graphident, self.identifier)
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/ |
D | test_modulegraph.py | 362 self.assertEqual(n.identifier, n.graphident) 479 self.assertEqual(a1.graphident, 'a1') 492 self.assertEqual(s1.graphident, 'do_import') 502 self.assertEqual(m1.graphident, 'foo') 508 self.assertEqual(m1.graphident, 'foo')
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/ |
D | modulegraph.rst | 298 .. data:: graphident 366 The value of attribute *graphident* for this node will be the 399 .. data:: graphident
|