Searched refs:opt_str (Results 1 – 5 of 5) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | optparse.py | 136 def __init__(self, opt_str): argument 137 self.opt_str = opt_str 140 return _("no such option: %s") % self.opt_str 146 def __init__(self, opt_str, possibilities): argument 147 BadOptionError.__init__(self, opt_str) 152 % (self.opt_str, ", ".join(self.possibilities))) 1044 def get_option(self, opt_str): argument 1045 return (self._short_opt.get(opt_str) or 1046 self._long_opt.get(opt_str)) 1048 def has_option(self, opt_str): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | optparse.py | 136 def __init__(self, opt_str): argument 137 self.opt_str = opt_str 140 return _("no such option: %s") % self.opt_str 146 def __init__(self, opt_str, possibilities): argument 147 BadOptionError.__init__(self, opt_str) 152 % (self.opt_str, ", ".join(self.possibilities))) 1043 def get_option(self, opt_str): argument 1044 return (self._short_opt.get(opt_str) or 1045 self._long_opt.get(opt_str)) 1047 def has_option(self, opt_str): argument [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/ |
D | TargetTool.py | 187 def SingleCheckCallback(option, opt_str, value, parser): argument 194 def RangeCheckCallback(option, opt_str, value, parser): argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | GenFds.py | 339 def SingleCheckCallback(option, opt_str, value, parser): argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
D | build.py | 2088 def SingleCheckCallback(option, opt_str, value, parser): argument
|