Lines Matching refs:subpath
33 def __init__(self, subpath, name, dependencies, parent): argument
34 if not subpath.startswith('/'):
35 raise ValueError("invalid subpath: %r" % subpath)
36 self.subpath = subpath
98 def parse(subpath, items): argument
100 return GroupComponentInfo(subpath, **kwargs)
102 def __init__(self, subpath, name, parent): argument
103 ComponentInfo.__init__(self, subpath, name, [], parent)
126 def parse(subpath, items): argument
128 return LibraryComponentInfo(subpath, **kwargs)
130 def __init__(self, subpath, name, dependencies, parent, library_name, argument
132 ComponentInfo.__init__(self, subpath, name, dependencies, parent)
202 def parse(subpath, items): argument
204 return OptionalLibraryComponentInfo(subpath, **kwargs)
206 def __init__(self, subpath, name, dependencies, parent, library_name, argument
208 LibraryComponentInfo.__init__(self, subpath, name, dependencies, parent,
216 def parse(subpath, items): argument
221 return LibraryGroupComponentInfo(subpath, **kwargs)
223 def __init__(self, subpath, name, parent, required_libraries = [], argument
225 ComponentInfo.__init__(self, subpath, name, [], parent)
264 def parse(subpath, items): argument
276 return TargetGroupComponentInfo(subpath, **kwargs)
278 def __init__(self, subpath, name, parent, required_libraries = [], argument
282 ComponentInfo.__init__(self, subpath, name, [], parent)
341 def parse(subpath, items): argument
344 return ToolComponentInfo(subpath, **kwargs)
346 def __init__(self, subpath, name, dependencies, parent, argument
348 ComponentInfo.__init__(self, subpath, name, dependencies, parent)
373 def parse(subpath, items): argument
376 return BuildToolComponentInfo(subpath, **kwargs)
425 def load_from_path(path, subpath): argument
437 return common, _read_components_from_parser(parser, path, subpath)
439 def _read_components_from_parser(parser, path, subpath): argument
461 info = type_class.parse(subpath,