Searched refs:mh (Results 1 – 3 of 3) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_mhlib.py | 149 mh = getMH() 152 eq(mh.getprofile('Editor'), 'emacs') 153 eq(mh.getprofile('not-set'), None) 154 eq(mh.getpath(), os.path.abspath(_mhpath)) 155 eq(mh.getcontext(), 'inbox') 157 mh.setcontext('wide') 158 eq(mh.getcontext(), 'wide') 162 mh.setcontext('inbox') 164 inbox = mh.openfolder('inbox') 173 mh = getMH() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | mhlib.py | 245 def __init__(self, mh, name): argument 247 self.mh = mh 254 return 'Folder(%r, %r)' % (self.mh, self.name) 258 self.mh.error(*args) 262 return os.path.join(self.mh.path, self.name) 274 return self.mh.listsubfolders(self.name) 278 return self.mh.listallsubfolders(self.name) 963 global mh, f 965 mh = MH() 975 f = mh.openfolder('@test') [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/ |
D | mboxconvert.py | 32 sts = mh(arg) or sts 50 def mh(dir): function
|