Home
last modified time | relevance | path

Searched refs:depgraph (Results 1 – 10 of 10) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/anthy/anthy/
H A Dtarget-helpers.patch50 diff -Nurp anthy-9100h.org/depgraph/Makefile.am anthy-9100h/depgraph/Makefile.am
51 --- anthy-9100h.org/depgraph/Makefile.am 2008-11-29 21:46:14.000000000 +0900
52 +++ anthy-9100h/depgraph/Makefile.am 2014-11-11 17:12:03.813999991 +0900
84 -anthy.dic : mkfiledic ../mkworddic/anthy.wdic ../depgraph/anthy.dep ../calctrans/anthy.cand_info .…
86 +anthy.dic : ../mkworddic/anthy.wdic ../depgraph/anthy.dep ../calctrans/anthy.cand_info ../calctran…
H A Dnative-helpers.patch21 Index: anthy-9100h/depgraph/Makefile.am
23 --- anthy-9100h.orig/depgraph/Makefile.am
24 +++ anthy-9100h/depgraph/Makefile.am
/openbmc/openbmc/poky/scripts/lib/checklayer/
H A D__init__.py360 depgraph = None
384 depgraph = event._depgraph
386 if depgraph is None:
388 return depgraph
416 depgraph = get_depgraph(failsafe=True)
417 depends = depgraph['tdepends']
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dbsp.py107 depgraph = get_depgraph()
108 depends = depgraph['tdepends']
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dtaskexp.py169 def parse(self, depgraph): argument
170 for task in depgraph["tdepends"]:
172 for depend in depgraph["tdepends"][task]:
H A Dtaskexp_ncurses.py728 def parse(self, depgraph): argument
729 for task in depgraph["tdepends"]:
731 for depend in depgraph["tdepends"][task]:
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dcooker.py891 depgraph = self.generateTaskDepTreeData(pkgs_to_build, task)
892 bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.data)
900 depgraph = self.generateTaskDepTreeData(pkgs_to_build, task)
902 pns = depgraph["pn"].keys()
924 for task in sorted(depgraph["tdepends"]):
926 fn = depgraph["pn"][pn]["filename"]
927 version = depgraph["pn"][pn]["version"]
929 for dep in sorted(depgraph["tdepends"][task]):
H A Devent.py662 def __init__(self, depgraph): argument
664 self._depgraph = depgraph
H A Drunqueue.py1580 depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData)
1582 bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data)
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Devent.py785 depgraph = Mock()
786 event = bb.event.DepTreeGenerated(depgraph)