Searched refs:clsname (Results 1 - 8 of 8) sorted by relevance
/third_party/libinput/tools/ |
H A D | razer-quirks-lister.py | 44 for clsname in filter(lambda c: c.startswith("RazerBlade"), dir(razer_keyboards)): 45 kbd = getattr(razer_keyboards, clsname) 47 k = KeyboardDescriptor(name=clsname, vid=kbd.USB_VID, pid=kbd.USB_PID)
|
/third_party/nghttp2/doc/_exts/rubydomain/ |
H A D | rubydomain.py | 288 clsname, methname = ruby_rsplit(name) 296 clsname) 298 return _('%s() (%s method)') % (methname, clsname) 352 clsname, methname = ruby_rsplit(name) 357 clsname) 359 return _('%s() (%s class method)') % (methname, clsname) 362 clsname, attrname = ruby_rsplit(name) 366 return _('%s (%s.%s attribute)') % (attrname, modname, clsname) 368 return _('%s (%s attribute)') % (attrname, clsname) 685 clsname [all...] |
/third_party/python/Lib/ |
H A D | trace.py | 477 clsname = None 480 clsname = self._caller_cache[code] 498 clsname = classes[0].__name__ 503 self._caller_cache[code] = clsname 504 if clsname is not None: 505 funcname = "%s.%s" % (clsname, funcname)
|
H A D | enum.py | 215 "<enum %r> cannot set attribute %r" % (self.clsname, self.name) 223 "<enum %r> cannot delete attribute %r" % (self.clsname, self.name) 230 self.clsname = ownerclass.__name__
|
H A D | _pyio.py | 885 clsname = self.__class__.__qualname__ 889 return "<{}.{}>".format(modname, clsname) 891 return "<{}.{} name={!r}>".format(modname, clsname, name)
|
/third_party/python/Modules/ |
H A D | _xxsubinterpretersmodule.c | 1668 const char *clsname = (end == CHANNEL_RECV) ? "RecvChannel" : in _channel_from_cid() local 1670 PyObject *cls = PyObject_GetAttrString(highlevel, clsname); in _channel_from_cid()
|
/third_party/python/Lib/test/ |
H A D | test_pathlib.py | 291 clsname = p.__class__.__name__ 294 self.assertTrue(r.startswith(clsname + '('), r) 296 inner = r[len(clsname) + 1 : -1]
|
H A D | test_io.py | 1140 clsname = r"(%s\.)?%s" % (self.tp.__module__, self.tp.__qualname__) 1141 self.assertRegex(repr(b), "<%s>" % clsname) 1143 self.assertRegex(repr(b), "<%s name='dummy'>" % clsname) 1145 self.assertRegex(repr(b), "<%s name=b'dummy'>" % clsname)
|
Completed in 22 milliseconds