HomeSort by relevance Sort by last modified time
    Searched defs:inspect (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/fonttools/Tools/
pyftinspect 4 from fontTools import inspect namespace
6 inspect.main(sys.argv[1:])
  /external/libcxx/test/libcxx/test/
tracing.py 2 import inspect namespace
28 for name, member in inspect.getmembers(obj):
29 if inspect.ismethod(member):
  /external/skia/tools/
pinspect.cpp 19 static SkPicture* inspect(const char path[]) { function
76 SkAutoTUnref<SkPicture> pic(inspect(argv[index]));
dm_flags.py 17 import inspect namespace
24 caller = inspect.stack()[1] # Up one level to our caller.
25 return inspect.getframeinfo(caller[0]).lineno
nanobench_flags.py 17 import inspect namespace
24 caller = inspect.stack()[1] # Up one level to our caller.
25 return inspect.getframeinfo(caller[0]).lineno
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
inspect_fodder.py 4 import sys, inspect namespace
15 fr = inspect.currentframe()
16 st = inspect.stack()
46 self.tr = inspect.trace()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
inspect_fodder.py 4 import sys, inspect namespace
15 fr = inspect.currentframe()
16 st = inspect.stack()
46 self.tr = inspect.trace()
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 40 def inspect method in class:Call
41 to_s.inspect
  /external/chromium-trace/trace-viewer/tracing/build/
benchmarks.py 8 import inspect namespace
42 if g != Bench and inspect.isclass(g) and
43 Bench in inspect.getmro(g)]
temporary_dev_server.py 5 import inspect namespace
48 return inspect.getsource(condition).strip()
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
test_runner.py 6 import inspect namespace
78 assert inspect.ismodule(module)
module.py 15 import inspect namespace
27 frame = inspect.currentframe()
  /external/lldb/examples/summaries/cocoa/
Logger.py 4 import inspect namespace
100 caller = inspect.stack()[2]
metrics.py 10 import inspect namespace
22 caller = inspect.stack()[1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/external/decorator/decorator2/
_decorator2.py 35 import sys, re, inspect namespace
52 from inspect import getfullargspec
58 inspect.getargspec(f)
87 if inspect.isfunction(func):
94 self.signature = inspect.formatargspec(
202 first = inspect.getargspec(caller)[0][0] # first arg
  /external/llvm/utils/lit/lit/
LitConfig.py 2 import inspect namespace
99 f = inspect.currentframe()
102 file,line,_,_,_ = inspect.getframeinfo(f)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 14 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(
ast.py 198 import inspect namespace
199 return inspect.cleandoc(node.body[0].value.s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 14 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(
ast.py 198 import inspect namespace
199 return inspect.cleandoc(node.body[0].value.s)
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 204 import inspect namespace
205 srcfile = inspect.getsourcefile(sys.modules[__name__])
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 89 def inspect method in class:ANTLR3.TokenRewriteStream
  /external/llvm/utils/Misc/
zkill 8 import inspect, os, sys namespace
11 f = inspect.currentframe()
14 file,line,_,_,_ = inspect.getframeinfo(f)
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 10 import inspect namespace
29 # sometimes not, breaking the inspect.getmodule() function.
132 for frame in inspect.stack():
134 codeMod = inspect.getmodule(code)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
error.rb 165 alias inspect message
226 "%s: %p %p" % [ self.class, unexpected_type, @expecting.inspect ]
478 def inspect method in class:ANTLR3.Error.report_error.FailedPredicate

Completed in 561 milliseconds

1 2 3