Searched refs:inspect (Results 1 - 25 of 149) sorted by relevance

123456

/external/fonttools/Tools/
H A Dpyftinspect4 from fontTools import inspect namespace
6 inspect.main(sys.argv[1:])
/external/python/cpython3/Lib/test/
H A Dtest_inspect.py6 import inspect namespace
64 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode,
65 inspect.isframe, inspect.isfunction, inspect.ismethod,
66 inspect.ismodule, inspect.istraceback,
67 inspect
[all...]
H A Dinspect_fodder.py4 import sys, inspect namespace
15 fr = inspect.currentframe()
16 st = inspect.stack()
46 self.tr = inspect.trace()
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dclass_util.py5 import inspect namespace
8 assert inspect.isclass(parent_cls), '%s should be a class' % parent_cls
9 assert inspect.isclass(child_cls), '%s should be a class' % child_cls
H A Ddiscover.py7 import inspect namespace
136 for _, obj in inspect.getmembers(module):
138 if not inspect.isclass(obj):
171 assert inspect.isclass(cls)
179 args, _, _, defaults = inspect.getargspec(cls.__init__)
/external/python/cpython2/Lib/test/
H A Dtest_inspect.py5 import inspect namespace
49 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode,
50 inspect.isframe, inspect.isfunction, inspect.ismethod,
51 inspect.ismodule, inspect.istraceback,
52 inspect
[all...]
H A Dinspect_fodder.py4 import sys, inspect namespace
15 fr = inspect.currentframe()
16 st = inspect.stack()
46 self.tr = inspect.trace()
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArity1.java7 @Parameter(arity = 1, names = "-inspect", description = "", required = false)
8 public boolean inspect; field in class:Arity1
/external/libcxx/utils/libcxx/test/
H A Dtracing.py11 import inspect namespace
37 for name, member in inspect.getmembers(obj):
38 if inspect.ismethod(member):
/external/python/cpython2/Python/
H A Dfrozenmain.c19 int inspect = 0; local
25 inspect = 1;
61 if (inspect && isatty((int)fileno(stdin)))
/external/protobuf/python/
H A 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/protobuf/ruby/tests/
H A Dstress.rb33 assert_equal mnew.inspect, m.inspect
/external/toolchain-utils/crosperf/
H A Dbenchmark_unittest.py8 import inspect namespace
60 arg_spec = inspect.getargspec(Benchmark.__init__)
/external/python/cpython3/Python/
H A Dfrozenmain.c20 int inspect = 0; local
39 inspect = 1;
96 if (inspect && isatty((int)fileno(stdin)))
/external/autotest/client/common_lib/cros/
H A Dxmlrpc_types.py5 import inspect namespace
38 constructor_args = inspect.getargspec(klass.__init__)
/external/python/cpython2/Mac/PythonLauncher/
H A DFileSettings.h16 - (BOOL) inspect;
32 BOOL inspect; // -i option: interactive mode after script variable
/external/python/cpython3/Mac/PythonLauncher/
H A DFileSettings.h16 - (BOOL) inspect;
32 BOOL inspect; // -i option: interactive mode after script variable
/external/skia/tools/
H A Dpinspect.cpp17 static sk_sp<SkPicture> inspect(const char path[]) { function
73 auto pic(inspect(argv[index]));
/external/skqp/tools/
H A Dpinspect.cpp17 static sk_sp<SkPicture> inspect(const char path[]) { function
73 auto pic(inspect(argv[index]));
/external/python/cpython2/Lib/
H A Dpydoc.py56 import sys, imp, os, re, types, inspect, __builtin__, pkgutil, warnings namespace
84 result = inspect.getdoc(object) or inspect.getcomments(object)
106 return not (inspect.ismodule(object) or inspect.isclass(object) or
107 inspect.isroutine(object) or inspect.isframe(object) or
108 inspect.istraceback(object) or inspect.iscode(object))
132 return inspect
[all...]
H A DDocXMLRPCServer.py14 import inspect namespace
77 if inspect.ismethod(object):
78 args, varargs, varkw, defaults = inspect.getargspec(object.im_func)
81 argspec = inspect.formatargspec (
88 elif inspect.isfunction(object):
89 args, varargs, varkw, defaults = inspect.getargspec(object)
90 argspec = inspect.formatargspec(
/external/python/cpython3/Lib/
H A Dpydoc.py59 import inspect namespace
91 result = inspect.getdoc(object) or inspect.getcomments(object)
112 return not (inspect.ismodule(object) or inspect.isclass(object) or
113 inspect.isroutine(object) or inspect.isframe(object) or
114 inspect.istraceback(object) or inspect.iscode(object))
138 return (inspect
[all...]
/external/python/cpython3/Lib/asyncio/
H A Dcoroutines.py5 import inspect namespace
43 _inspect_iscoroutinefunction = inspect.iscoroutinefunction
91 assert inspect.isgenerator(gen) or inspect.iscoroutine(gen), gen
205 if inspect.isgeneratorfunction(func):
211 if (base_futures.isfuture(res) or inspect.isgenerator(res) or
324 not inspect.isgeneratorfunction(coro.func) and
/external/tensorflow/tensorflow/python/util/
H A Dtf_inspect_test.py22 import inspect namespace
70 self.assertEqual(inspect.currentframe(), tf_inspect.currentframe())
124 inspect.getmembers(TestDecoratedClass),
129 inspect.getmodule(TestDecoratedClass),
132 inspect.getmodule(test_decorated_function),
135 inspect.getmodule(test_undecorated_function),
161 tf_inspect.ismodule(inspect.getmodule(inspect.currentframe())))
169 expected_stack = inspect.stack()
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
H A Ddecorators.py5 import inspect namespace
27 if inspect.isgeneratorfunction(func):
32 arg_spec = inspect.getargspec(func)

Completed in 510 milliseconds

123456