Searched refs:meth (Results 1 – 4 of 4) sorted by relevance
| /openbmc/phosphor-fan-presence/control/templates/ |
| H A D | defs.mako | 37 <%def name="genMethod(meth)" buffered="True"> 38 %if ('type' in meth['mparams']) and \ 39 (meth['mparams']['type'] is not None): 40 ${meth['method']}<${meth['mparams']['type']}>( 42 ${meth['method']}( 44 %for spk in meth['mparams']['params']: 45 ${meth['mparams'][spk]}, 47 ${genParams(par=meth)}\ 133 ${indent(genMethod(meth=i), 3)}\
|
| H A D | fan_zone_defs.cpp.mako | 186 ${indent(genMethod(meth=i), 3)}\
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | decorators.py | 46 def get_class_that_defined_method(meth): argument 47 if inspect.ismethod(meth): 48 for cls in inspect.getmro(meth.__self__.__class__): 49 if cls.__dict__.get(meth.__name__) is meth: 51 meth = meth.__func__ # fallback to __qualname__ parsing 52 if inspect.isfunction(meth): 53 cls = getattr(inspect.getmodule(meth), 54 meth.__qualname__.split('.<locals>', 1)[0].rsplit('.', 1)[0])
|
| /openbmc/openbmc/poky/bitbake/lib/ |
| H A D | pyinotify.py | 621 meth = getattr(self, 'process_' + maskname, None) 622 if meth is not None: 623 return meth(event) 625 meth = getattr(self, 'process_IN_' + maskname.split('_')[1], None) 626 if meth is not None: 627 return meth(event)
|