Home
last modified time | relevance | path

Searched refs:inspect (Results 1 – 25 of 126) sorted by relevance

123456

/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
Dstubout.py18 import inspect
65 if (inspect.ismodule(obj) or
66 (not inspect.isclass(obj) and attr_name in obj.__dict__)):
71 if not inspect.isclass(obj):
72 mro = list(inspect.getmro(obj.__class__))
74 mro = list(inspect.getmro(obj))
/external/chromium-trace/catapult/third_party/mox3/mox3/
Dstubout.py18 import inspect
65 if (inspect.ismodule(obj) or
66 (not inspect.isclass(obj) and attr_name in obj.__dict__)):
71 if not inspect.isclass(obj):
72 mro = list(inspect.getmro(obj.__class__))
74 mro = list(inspect.getmro(obj))
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
Dutil.py37 import inspect
286 not inspect.isfunction(handler) and
287 not inspect.ismethod(handler)) and
324 return bool(((inspect.isfunction(obj) or inspect.ismethod(obj)) and
403 if inspect.isclass(obj) or inspect.isfunction(obj):
/external/protobuf/python/
Dstubout.py62 if (inspect.ismodule(obj) or
63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))):
68 if not inspect.isclass(obj):
69 mro = list(inspect.getmro(obj.__class__))
71 mro = list(inspect.getmro(obj))
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
Dclasses.py5 import inspect
10 assert inspect.isclass(cls)
18 args, _, _, defaults = inspect.getargspec(cls.__init__)
Dps_util.py6 import inspect
74 if inspect.ismethod(p.name):
80 if inspect.ismethod(p.cmdline):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
Dcfadmin19 import inspect
26 if not inspect.isfunction(cmd):
29 (args, varargs, varkw, defaults) = inspect.getargspec(cmd)
37 if inspect.isfunction(cmd):
Dcwutil98 import inspect
105 if not inspect.isfunction(cmd):
108 (args, varargs, varkw, defaults) = inspect.getargspec(cmd)
116 if inspect.isfunction(cmd):
Droute53161 import inspect
168 if not inspect.isfunction(cmd):
171 (args, varargs, varkw, defaults) = inspect.getargspec(cmd)
179 if inspect.isfunction(cmd):
/external/libcxx/test/libcxx/test/
Dtracing.py2 import inspect
28 for name, member in inspect.getmembers(obj):
29 if inspect.ismethod(member):
/external/chromium-trace/catapult/tracing/tracing_build/
Dbenchmarks.py9 import inspect
33 if g != Bench and inspect.isclass(g) and
34 Bench in inspect.getmro(g)]
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/node_modules/chai/
Dchai.js1122 , 'expected #{this} to include ' + _.inspect(val)
1123 , 'expected #{this} to not include ' + _.inspect(val));
1763 throw new Error(msg + _.inspect(obj) + ' has no ' + descriptor + _.inspect(name));
1768 , 'expected #{this} to have a ' + descriptor + _.inspect(name)
1769 , 'expected #{this} to not have ' + descriptor + _.inspect(name));
1775 … , 'expected #{this} to have a ' + descriptor + _.inspect(name) + ' of #{exp}, but got #{act}'
1776 , 'expected #{this} to not have a ' + descriptor + _.inspect(name) + ' of #{act}'
1805 , 'expected #{this} to have own property ' + _.inspect(name)
1806 , 'expected #{this} to not have own property ' + _.inspect(name)
1904 , 'expected #{this} to contain ' + _.inspect(str)
[all …]
/external/fonttools/Tools/
Dpyftinspect4 from fontTools import inspect
6 inspect.main(sys.argv[1:])
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Ddecorators.py5 import inspect
26 if inspect.isgeneratorfunction(func):
31 arg_spec = inspect.getargspec(func)
/external/chromium-trace/catapult/telemetry/telemetry/core/
Ddiscover.py6 import inspect
115 for _, obj in inspect.getmembers(module):
117 if not inspect.isclass(obj):
/external/chromium-trace/catapult/telemetry/telemetry/story/
Dstory_set.py5 import inspect
44 self._base_dir = os.path.dirname(inspect.getfile(self.__class__))
65 return inspect.getfile(self.__class__).replace('.pyc', '.py')
/external/chromium-trace/catapult/third_party/pipeline/pipeline/
Dutil.py26 import inspect
151 return bool(((inspect.isfunction(obj) or inspect.ismethod(obj)) and
/external/autotest/client/site_tests/buffet_BasicDBusAPI/
Dbuffet_BasicDBusAPI.py6 import inspect
26 frame = inspect.getouterframes(inspect.currentframe())[1]
/external/chromium-trace/catapult/telemetry/telemetry/
Ddecorators.py9 import inspect
30 cacher = args[0] if inspect.getargspec(obj).args[:1] == ['self'] else obj
61 frame = inspect.currentframe()
77 elif inspect.isclass(target):
/external/skia/tools/
Dnanobench_flags.py17 import inspect
24 caller = inspect.stack()[1] # Up one level to our caller.
25 return inspect.getframeinfo(caller[0]).lineno
/external/autotest/cli/
Dsite_readme.py12 import inspect, new, sys
41 if not inspect.isclass(cls):
/external/chromium-trace/catapult/tracing/third_party/chai/
Dchai.js1inspect(e),"expected #{this} to not include "+t.inspect(e))}function o(){var e=q(this,"object"),t=…
/external/chromium-trace/catapult/third_party/chai/
Dchai.js1inspect(e),"expected #{this} to not include "+t.inspect(e))}function o(){var e=q(this,"object"),t=…
/external/llvm/utils/lit/lit/
DLitConfig.py2 import inspect
99 f = inspect.currentframe()
102 file,line,_,_,_ = inspect.getframeinfo(f)
/external/autotest/client/common_lib/cros/
Dxmlrpc_types.py5 import inspect
38 constructor_args = inspect.getargspec(klass.__init__)

123456