OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:out_edges
(Results
1 - 4
of
4
) sorted by null
/system/update_engine/payload_generator/
graph_types.h
61
EdgeMap
out_edges
;
member in struct:chromeos_update_engine::Vertex
inplace_generator.cc
125
for (auto& edge_prop_pair : vertex->
out_edges
) {
150
(*graph)[edge.first].
out_edges
[edge.second].extents;
162
(*graph)[edge.first].
out_edges
.find(edge.second)->second;
171
(*graph)[edge.first].
out_edges
.insert(make_pair(graph->size() - 1,
187
(*graph)[edge.first].
out_edges
[edge.second].extents,
192
(*graph)[edge.first].
out_edges
.erase(edge.second));
197
(*graph)[edge.second].
out_edges
.insert(
221
(*graph)[blocks[i].writer].
out_edges
.find(blocks[i].reader);
222
if (edge_it == (*graph)[blocks[i].writer].
out_edges
.end()) {
224
(*graph)[blocks[i].writer].
out_edges
.insert
561
Vertex::EdgeMap
out_edges
= (*graph)[cut.old_dst].
out_edges
;
local
[
all
...]
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
Graph.py
213
for edge in self.
out_edges
(head):
320
l = [self.tail(n) for n in self.
out_edges
(node)]
337
def
out_edges
(self, node):
member in class:Graph
363
return set(self.inc_edges(node) + self.
out_edges
(node))
369
return len(self.
out_edges
(node))
397
get_edges = self.
out_edges
497
get_edges = self.
out_edges
524
get_edges = self.
out_edges
557
get_edges = self.
out_edges
/external/valgrind/coregrind/
m_transtab.c
214
predecessors in the control flow graph. '
out_edges
' points
220
The '
out_edges
' list exists only so that we can visit the
291
its
out_edges
. Furthermore, a matching out-in pair must have
294
a
out_edges
set may not have duplicates when using the
295
equality defined by (TTEntry,offset). Hence the
out_edges
299
then A.
out_edges
= { (B,42), (B,87) } (in any order)
303
mapping between P.
out_edges
and Q.in_edges.
306
OutEdgeArr
out_edges
;
member in struct:__anon26582
872
OutEdgeArr__add(&from_tte->
out_edges
, &oe);
[
all
...]
Completed in 747 milliseconds