Home
last modified time | relevance | path

Searched refs:isclass (Results 1 – 11 of 11) sorted by relevance

/external/lisa/libs/utils/
Danalysis_register.py25 from inspect import isclass
70 if handler and isclass(handler) and \
/external/protobuf/python/
Dstubout.py63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))):
68 if not inspect.isclass(obj):
/external/devlib/devlib/module/
D__init__.py16 from inspect import isclass
121 if isclass(obj) and issubclass(obj, Module) and obj.name:
/external/python/cpython2/Lib/test/
Dtest_inspect.py49 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode,
107 self.istest(inspect.isclass, 'mod.StupidGit')
108 self.assertTrue(inspect.isclass(list))
111 self.assertTrue(inspect.isclass(newstyle))
116 self.assertFalse(inspect.isclass(CustomGetattr()))
221 classes = inspect.getmembers(mod, inspect.isclass)
/external/python/cpython2/Lib/
Dinspect.py59 def isclass(object): function
96 and not isclass(object))
403 if isclass(object):
542 if isclass(object):
Ddoctest.py945 elif inspect.isclass(object):
977 if ((inspect.isfunction(val) or inspect.isclass(val)) and
989 if not (inspect.isfunction(val) or inspect.isclass(val) or
1001 if inspect.isclass(obj) and self._recurse:
1010 if ((inspect.isfunction(val) or inspect.isclass(val) or
1068 if inspect.isclass(obj):
Dpydoc.py106 return not (inspect.ismodule(object) or inspect.isclass(object) or
362 if inspect.isclass(object): return self.docclass(*args)
668 for key, value in inspect.getmembers(object, inspect.isclass):
1095 for key, value in inspect.getmembers(object, inspect.isclass):
1503 if inspect.isclass(thing):
1565 inspect.isclass(object) or
Durllib2.py489 def isclass(obj): function
501 if isclass(check):
513 if isclass(h):
/external/python/cpython2/Doc/library/
Dinspect.rst268 .. function:: isclass(object)
335 :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin`
/external/pcre/dist2/src/
Dpcre2_compile.c1825 int *errorcodeptr, uint32_t options, BOOL isclass, compile_block *cb) in PRIV()
1944 if (isclass) break; in PRIV()
2036 if (!isclass) in PRIV()
/external/python/cpython2/Misc/
DNEWS8546 - Issue #1225107: inspect.isclass() returned True for instances with a custom