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

1 2 3 4 5

  /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...]
test_zipimport_support.py 13 import inspect namespace
24 # inspect (Issue 4223)
87 self.assertEqual(inspect.getsource(zip_pkg.foo), test_src)
95 test_src = inspect.getsource(test_doctest)
107 src = inspect.getsource(mod)
  /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...]
test_zipimport_support.py 13 import inspect namespace
24 # inspect (Issue 4223)
87 self.assertEqual(inspect.getsource(zip_pkg.foo), test_src)
95 test_src = inspect.getsource(test_doctest)
107 src = inspect.getsource(mod)
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_popup_gtk.h 28 bool inspect);
34 bool inspect);
extension_popup_gtk.cc 39 bool inspect)
44 being_inspected_(inspect),
159 GtkWidget* anchor, bool inspect) {
168 new ExtensionPopupGtk(browser, host, anchor, inspect);
  /external/chromium_org/tools/telemetry/telemetry/
__init__.py 7 import inspect namespace
37 if x in (inspect, os, sys):
40 if (inspect.isclass(getattr(m, x)) or
41 inspect.isfunction(getattr(m, x))):
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 6 import inspect namespace
69 for _, obj in inspect.getmembers(module):
71 if not inspect.isclass(obj):
  /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/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/
InspectorAgent.cpp 118 inspect(m_pendingInspectData.first, m_pendingInspectData.second);
156 void InspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints) function in class:WebCore::InspectorAgent
159 m_frontend->inspector()->inspect(objectToInspect, hints);
InjectedScriptHost.idl 38 [Custom] void inspect(any objectId, any hints);
InspectorAgent.h 81 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints);
  /external/chromium_org/chrome/browser/resources/task_manager/
commands.js 16 inspect: function(uniqueId) {
17 chrome.send('inspect', [uniqueId]);
  /external/chromium_org/chrome/browser/resources/extensions/
extension_error.css 86 .extension-error-inspect {
91 .extension-error-links .extension-error-inspect {
107 .extension-error-context-wrapper .extension-error-inspect {
  /external/llvm/utils/lit/lit/
LitConfig.py 113 import inspect, os, sys namespace
116 f = inspect.currentframe()
119 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):

Completed in 1098 milliseconds

1 2 3 4 5