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

1 2 3 4 5 6

  /external/fonttools/Tools/
pyftinspect 4 from fontTools import inspect namespace
6 inspect.main(sys.argv[1:])
  /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()
test_inspect.py 5 import inspect namespace
46 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
48 inspect.ismodule, inspect.istraceback,
49 inspect.isgenerator, inspect.isgeneratorfunction]
    [all...]
  /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()
test_inspect.py 5 import inspect namespace
46 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
48 inspect.ismodule, inspect.istraceback,
49 inspect.isgenerator, inspect.isgeneratorfunction]
    [all...]
  /external/chromium_org/third_party/protobuf/python/
stubout.py 62 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/python/
stubout.py 62 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_org/tools/telemetry/telemetry/core/
discover.py 6 import inspect namespace
93 for _, obj in inspect.getmembers(module):
95 if not inspect.isclass(obj):
util.py 6 import inspect namespace
68 return inspect.getsource(condition).strip()
  /external/chromium_org/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/
__init__.py 5 import inspect namespace
  /external/chromium_org/tools/perf/page_sets/
__init__.py 5 import inspect namespace
  /external/chromium_org/third_party/skia/tools/
pinspect.cpp 19 static SkPicture* inspect(const char path[]) { function
76 SkAutoTUnref<SkPicture> pic(inspect(argv[index]));
  /external/skia/tools/
pinspect.cpp 19 static SkPicture* inspect(const char path[]) { function
74 SkAutoTUnref<SkPicture> pic(inspect(argv[index]));
  /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(
pydoc.py 55 import sys, imp, os, re, types, inspect, __builtin__, pkgutil, warnings namespace
83 result = inspect.getdoc(object) or inspect.getcomments(object)
104 return not (inspect.ismodule(object) or inspect.isclass(object) or
105 inspect.isroutine(object) or inspect.isframe(object) or
106 inspect.istraceback(object) or inspect.iscode(object))
130 return inspect.ismethod(obj) or inspect.ismethoddescriptor(obj
    [all...]
  /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(
pydoc.py 55 import sys, imp, os, re, types, inspect, __builtin__, pkgutil, warnings namespace
83 result = inspect.getdoc(object) or inspect.getcomments(object)
104 return not (inspect.ismodule(object) or inspect.isclass(object) or
105 inspect.isroutine(object) or inspect.isframe(object) or
106 inspect.istraceback(object) or inspect.iscode(object))
130 return inspect.ismethod(obj) or inspect.ismethoddescriptor(obj
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInspectorAgent.cpp 120 inspect(m_pendingInspectData.first, m_pendingInspectData.second);
160 void InspectorInspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints) function in class:blink::InspectorInspectorAgent
163 m_frontend->inspect(objectToInspect, hints);
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
template_expander.py 9 import inspect namespace
51 base_dir = os.path.dirname(inspect.getfile(sys._getframe(1)))
  /external/llvm/utils/lit/lit/
LitConfig.py 2 import inspect namespace
101 f = inspect.currentframe()
104 file,line,_,_,_ = inspect.getframeinfo(f)
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 30 found = stream.inspect
72 found = stream.inspect
95 found = stream.inspect
113 found = stream.inspect
129 found = stream.inspect
143 found = stream.inspect
341 found = stream.inspect
643 t.inspect.should == '(a c)'
655 t.inspect.should == '(a b x d)'
667 t.inspect.should == '(a x c d)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
misc.py 3 import inspect namespace
111 if inspect.isroutine(a):
  /external/chromium_org/tools/telemetry/telemetry/
decorators.py 7 import inspect namespace
27 cacher = args[0] if inspect.getargspec(obj).args[:1] == ['self'] else obj
  /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]

Completed in 491 milliseconds

1 2 3 4 5 6