Home
last modified time | relevance | path

Searched refs:wordmap (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Doptparse.py1674 def _match_abbrev(s, wordmap): argument
1682 if s in wordmap:
1686 possibilities = [word for word in wordmap.keys()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Doptparse.py1675 def _match_abbrev(s, wordmap): argument
1683 if s in wordmap:
1687 possibilities = [word for word in wordmap.keys()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_optparse.py1572 wordmap = {"--foz": None, "--foo": None, "--fie": None}
1574 _match_abbrev, (s, wordmap), None,