Home
last modified time | relevance | path

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

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/anthy/anthy/
H A Dtarget-helpers.patch48 diff -Nurp anthy-9100h.org/depgraph/Makefile.am anthy-9100h/depgraph/Makefile.am
49 --- anthy-9100h.org/depgraph/Makefile.am 2008-11-29 21:46:14.000000000 +0900
50 +++ anthy-9100h/depgraph/Makefile.am 2014-11-11 17:12:03.813999991 +0900
82 -anthy.dic : mkfiledic ../mkworddic/anthy.wdic ../depgraph/anthy.dep ../calctrans/anthy.cand_info .…
84 +anthy.dic : ../mkworddic/anthy.wdic ../depgraph/anthy.dep ../calctrans/anthy.cand_info ../calctran…
H A Dnative-helpers.patch19 Index: anthy-9100h/depgraph/Makefile.am
21 --- anthy-9100h.orig/depgraph/Makefile.am
22 +++ anthy-9100h/depgraph/Makefile.am
/OK3568_Linux_fs/yocto/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']
/OK3568_Linux_fs/yocto/poky/scripts/lib/checklayer/cases/
H A Dbsp.py107 depgraph = get_depgraph()
108 depends = depgraph['tdepends']
/OK3568_Linux_fs/yocto/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]:
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dcooker.py970 depgraph = self.generateTaskDepTreeData(pkgs_to_build, task)
971 bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.data)
979 depgraph = self.generateTaskDepTreeData(pkgs_to_build, task)
982 for pn in depgraph["pn"]:
1002 for task in sorted(depgraph["tdepends"]):
1004 fn = depgraph["pn"][pn]["filename"]
1005 version = depgraph["pn"][pn]["version"]
1007 for dep in sorted(depgraph["tdepends"][task]):
H A Devent.py657 def __init__(self, depgraph): argument
659 self._depgraph = depgraph
H A Drunqueue.py1509 depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData)
1511 bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Devent.py796 depgraph = Mock()
797 event = bb.event.DepTreeGenerated(depgraph)