Searched refs:Visit (Results 1 - 25 of 204) sorted by path

123456789

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeFilter.cs131 v.Visit( t, pre, post );
H A DTreeRewriter.cs98 t = v.Visit(t, (o) => ApplyOnce(o, topdown_func), (o) => ApplyRepeatedly(o, bottomup_func));
H A DTreeVisitor.cs50 * Visit every node in tree t and trigger an action for each node
58 public object Visit(object t, ITreeVisitorAction action) method in class:Antlr.Runtime.Tree.TreeVisitor
69 Visit(child, action);
76 public object Visit(object t, Func<object, object> preAction, Func<object, object> postAction) method in class:Antlr.Runtime.Tree.TreeVisitor
78 return Visit(t, new TreeVisitorAction(preAction, postAction));
H A DTreeWizard.cs70 void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels); method in interface:Antlr.Runtime.Tree.TreeWizard.IContextVisitor
74 public virtual void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) { method in class:Antlr.Runtime.Tree.TreeWizard.Visitor
75 Visit(t);
77 public abstract void Visit(object t); method in class:Antlr.Runtime.Tree.TreeWizard.Visitor
87 public override void Visit(object t) { method in class:Antlr.Runtime.Tree.TreeWizard.ActionVisitor
245 public override void Visit(object t) { method in class:Antlr.Runtime.Tree.TreeWizard.FindTreeWizardVisitor
259 public void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) { method in class:Antlr.Runtime.Tree.TreeWizard.FindTreeWizardContextVisitor
269 Visit(t, ttype, new FindTreeWizardVisitor(nodes));
288 Visit(t, rootTokenType, new FindTreeWizardContextVisitor(this, tpattern, subtrees));
301 * Visit ever
307 public void Visit(object t, int ttype, IContextVisitor visitor) { method in class:Antlr.Runtime.Tree.TreeWizard
311 public void Visit(object t, int ttype, System.Action<object> action) { method in class:Antlr.Runtime.Tree.TreeWizard
343 public void Visit(object t, object parent, int childIndex, IDictionary<string, object> unusedlabels) { method in class:Antlr.Runtime.Tree.TreeWizard.VisitTreeWizardContextVisitor
359 public void Visit(object t, string pattern, IContextVisitor visitor) { method in class:Antlr.Runtime.Tree.TreeWizard
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeFilter.cs86 v.Visit( t, pre, post );
H A DTreeRewriter.cs115 t = v.Visit( t, ( o ) => ApplyOnce( o, topdown_func ), ( o ) => ApplyRepeatedly( o, bottomup_func ) );
H A DTreeVisitor.cs52 * Visit every node in tree t and trigger an action for each node
60 public object Visit( object t, ITreeVisitorAction action ) method in class:Antlr.Runtime.Tree.TreeVisitor
71 Visit( child, action );
78 public object Visit( object t, Func<object, object> preAction, Func<object, object> postAction ) method in class:Antlr.Runtime.Tree.TreeVisitor
80 return Visit( t, new TreeVisitorAction( preAction, postAction ) );
H A DTreeWizard.cs73 void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels ); method in interface:Antlr.Runtime.Tree.TreeWizard.IContextVisitor
78 public virtual void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels ) method in class:Antlr.Runtime.Tree.TreeWizard.Visitor
80 Visit( t );
82 public abstract void Visit( object t ); method in class:Antlr.Runtime.Tree.TreeWizard.Visitor
94 public override void Visit( object t ) method in class:Antlr.Runtime.Tree.TreeWizard.ActionVisitor
279 public override void Visit( object t ) method in class:Antlr.Runtime.Tree.TreeWizard.FindTreeWizardVisitor
296 public void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels ) method in class:Antlr.Runtime.Tree.TreeWizard.FindTreeWizardContextVisitor
309 Visit( t, ttype, new FindTreeWizardVisitor( nodes ) );
330 Visit( t, rootTokenType, new FindTreeWizardContextVisitor( this, tpattern, subtrees ) );
345 * Visit ever
351 public void Visit( object t, int ttype, IContextVisitor visitor ) method in class:Antlr.Runtime.Tree.TreeWizard
356 public void Visit( object t, int ttype, System.Action<object> action ) method in class:Antlr.Runtime.Tree.TreeWizard
395 public void Visit( object t, object parent, int childIndex, IDictionary<string, object> unusedlabels ) method in class:Antlr.Runtime.Tree.TreeWizard.VisitTreeWizardContextVisitor
413 public void Visit( object t, string pattern, IContextVisitor visitor ) method in class:Antlr.Runtime.Tree.TreeWizard
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas126 procedure Visit(const T: IANTLRInterface); override; procedure
137 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer; procedure
150 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer; procedure
1706 Wiz.Visit(T, Wiz.GetTokenType('B'), Visitor);
1723 Wiz.Visit(T, Wiz.GetTokenType('C'), Visitor);
1885 Wiz.Visit(T, Wiz.GetTokenType('B'), Visitor);
1902 Wiz.Visit(T, Wiz.GetTokenType('A'), Visitor);
1919 Wiz.Visit(T, Wiz.GetTokenType('B'), Visitor);
1936 Wiz.Visit(T, Wiz.GetTokenType('A'), Visitor);
2015 Wiz.Visit(
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas907 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
965 /// Visit every ttype node in t, invoking the visitor.
973 procedure Visit(const T: IANTLRInterface; const TokenType: Integer;
984 procedure Visit(const T: IANTLRInterface; const Pattern: String;
1726 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
1729 procedure Visit(const T: IANTLRInterface); overload; virtual; abstract;
1764 procedure Visit(const T: IANTLRInterface); override;
1777 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
1793 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
1808 procedure Visit(cons
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_service_unittest.cc337 int Visit(const std::string& json_data) { function in class:MockProviderVisitor
4929 EXPECT_EQ(3, visitor.Visit(json_data));
4982 EXPECT_EQ(1, visitor.Visit(json_data));
5001 EXPECT_EQ(2, visitor_no_relative_paths.Visit(json_data));
5011 EXPECT_EQ(0, visitor_no_relative_paths.Visit(json_data));
5034 EXPECT_EQ(2, visitor.Visit(json_data));
5047 EXPECT_EQ(0, visitor.Visit(json_data));
5061 EXPECT_EQ(1, from_bookmark_visitor.Visit(json_data));
5074 EXPECT_EQ(1, from_webstore_visitor.Visit(json_data));
5087 EXPECT_EQ(1, was_installed_by_eom_visitor.Visit(json_dat
[all...]
H A Dexternal_policy_loader_unittest.cc51 void Visit(const base::DictionaryValue& policy_forcelist, function in class:extensions::MockExternalPolicyProviderVisitor
133 mv.Visit(forced_extensions, expected_extensions);
152 mv.Visit(forced_extensions, expected_extensions);
/external/chromium_org/chrome/browser/resources/history/
H A Dhistory.js113 // Visit:
123 function Visit(result, continued, model) { class
168 // Visit, public: -------------------------------------------------------------
180 Visit.prototype.getResultDOM = function(propertyBag) {
337 Visit.prototype.removeFromHistory = function() {
346 Object.defineProperty(Visit.prototype, 'checkBox', {
347 get: /** @this {Visit} */function() {
352 Object.defineProperty(Visit.prototype, 'bookmarkStar', {
353 get: /** @this {Visit} */function() {
358 Object.defineProperty(Visit
[all...]
/external/chromium_org/chrome/renderer/
H A Dchrome_content_renderer_client.cc217 virtual bool Visit(content::RenderView* render_view) OVERRIDE;
224 bool SpellCheckReplacer::Visit(content::RenderView* render_view) { function in class:__anon5797::SpellCheckReplacer
/external/chromium_org/chrome/renderer/extensions/
H A Dtab_finder.cc27 // Note: Visit returns false to terminate the iteration.
28 bool TabFinder::Visit(RenderView* render_view) { function in class:extensions::TabFinder
H A Dtab_finder.h29 virtual bool Visit(content::RenderView* render_view) OVERRIDE;
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck.cc34 virtual bool Visit(content::RenderView* render_view) OVERRIDE;
41 bool UpdateSpellcheckEnabled::Visit(content::RenderView* render_view) { function in class:__anon5848::UpdateSpellcheckEnabled
53 virtual bool Visit(content::RenderView* render_view) OVERRIDE;
60 bool DocumentMarkersCollector::Visit(content::RenderView* render_view) { function in class:__anon5848::DocumentMarkersCollector
67 // Visit all render views.
75 virtual bool Visit(content::RenderView* render_view) OVERRIDE;
89 bool DocumentMarkersRemover::Visit(content::RenderView* render_view) { function in class:__anon5848::DocumentMarkersRemover
/external/chromium_org/content/public/renderer/
H A Drender_view_visitor.h15 virtual bool Visit(RenderView* render_view) = 0;
/external/chromium_org/content/renderer/
H A Drender_thread_impl.cc201 virtual bool Visit(RenderView* render_view) OVERRIDE {
H A Drender_view_impl.cc920 if (!visitor->Visit(it->second))
/external/chromium_org/content/shell/renderer/
H A Dwebkit_test_runner.cc108 virtual bool Visit(RenderView* render_view) OVERRIDE {
126 virtual bool Visit(RenderView* render_view) OVERRIDE {
152 virtual bool Visit(RenderView* render_view) OVERRIDE {
171 virtual bool Visit(RenderView* render_view) OVERRIDE {
/external/chromium_org/extensions/renderer/
H A Dconsole.cc40 virtual bool Visit(content::RenderView* render_view) OVERRIDE {
H A Dcontent_watcher.cc49 virtual bool Visit(content::RenderView* view) OVERRIDE {
H A Dextension_helper.cc50 virtual bool Visit(content::RenderView* render_view) OVERRIDE {
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc2905 frame.Visit(&visitor);

Completed in 572 milliseconds

123456789