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

1 2 3

  /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/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regress/
regress-7703.js 54 function inspect(object) { function
62 inspect(o);
64 AddTestCase( "inspect(o),length", 2, types.length );
65 AddTestCase( "inspect(o)[0]", "number", types[0] );
66 AddTestCase( "inspect(o)[1]", "number", types[1] );
  /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))
ez_setup.py 256 import inspect namespace
257 srcfile = inspect.getsourcefile(sys.modules[__name__])
  /external/skia/tools/
pinspect.cpp 17 static SkPicture* inspect(const char path[]) { function
67 SkAutoTUnref<SkPicture> pic(inspect(argv[index]));
  /external/webkit/Source/WebCore/inspector/
InjectedScriptHost.idl 38 [Custom] void inspect(in DOMObject objectId, in DOMObject hints);
InspectorController.h 80 void inspect(Node*);
InjectedScriptHost.cpp 122 m_frontend->inspector()->inspect(object->asObject(), hints->asObject());
InspectorController.cpp 216 void InspectorController::inspect(Node* node) function in class:WebCore::InspectorController
223 m_inspectorAgent->domAgent()->inspect(node);
  /external/llvm/utils/lit/lit/
LitConfig.py 109 import inspect, os, sys namespace
112 f = inspect.currentframe()
115 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...]
test-tree-wizard.rb 181 assert_equal(t.inspect, 'ID')
187 assert_equal(t.inspect, 'foo')
192 assert_equal(t.inspect, 'A')
197 assert_equal(t.inspect, '(A B C D)')
202 assert_equal(t.inspect, 'A B C')
212 assert_equal(t.inspect, "(A (B C) (B D) E)")
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /external/llvm/utils/Misc/
zkill 8 import inspect, os, sys namespace
11 f = inspect.currentframe()
14 file,line,_,_,_ = inspect.getframeinfo(f)
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 114 JSValue JSInjectedScriptHost::inspect(ExecState* exec) function in class:WebCore::JSInjectedScriptHost
  /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/
recognizers.rb 451 [ token_error_display( e.symbol ), e.expecting.inspect ]
454 [ token_error_display( e.symbol ), e.expecting.inspect ]
484 return text.inspect
    [all...]
main.rb 471 return_value.inspect
577 out = result.tree.inspect rescue result.inspect
streams.rb 638 def inspect( before_chars = 6, after_chars = 10 ) method in class:ANTLR3.that.StringStream
639 before = through( -before_chars ).inspect
642 after = through( after_chars ).inspect
1069 def inspect method in class:ANTLR3.that.CommonTokenStream
    [all...]
  /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/skia/legacy/include/images/
SkImageDecoder.h 110 virtual void inspect(int index, SkBitmap::Config config, int width, int height) {} function in class:SkImageDecoder::Chooser
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 201 def inspect method in class:ANTLR3.Test.Grammar
299 def inspect method in class:ANTLR3.Test.Grammar
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebinspector.cpp 47 * The WebKit Inspector is a graphical tool to inspect and change
61 * /<!-- -->* load some data or reload to be able to inspect the page*<!-- -->/
66 * g_signal_connect (G_OBJECT (inspector), "inspect-web-view", G_CALLBACK(create_gtk_window_around_it), NULL);
130 * WebKitWebInspector::inspect-web-view:
134 * Emitted when the user activates the 'inspect' context menu item
135 * to inspect a web view. The application which is interested in
147 webkit_web_inspector_signals[INSPECT_WEB_VIEW] = g_signal_new("inspect-web-view",
164 * #WebKitWebInspector::inspect-web-view.
227 * #WebKitWebInspector::inspect-web-view will be emmited again, when the user
429 * application, by handling the #WebKitWebInspector::inspect-web-view signal. This mean
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 98 example 'using built-in main to inspect AST constructed by an AST-building parser' do
158 example "using a tree parser's built-in main to inspect AST rewrite output" do
222 output.should == 'b'.inspect

Completed in 398 milliseconds

1 2 3