Home
last modified time | relevance | path

Searched refs:wtree (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/pysh/
H A Dpyshlex.py338 def normalize_wordtree(wtree): argument
342 def normalize(wtree): argument
344 for part in wtree[1:-1]:
357 return [wtree[0]] + result + [wtree[-1]]
359 return normalize(wtree)
388 def wordtree_as_string(wtree): argument
398 visit(wtree, output)
402 def unquote_wordtree(wtree): argument
406 def unquote(wtree): argument
408 if wtree[0] in ('', "'", '"', '\\'):
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dcodeparser.py448 wtree = pyshlex.make_wordtree(word[1])
449 for part in wtree: