Searched refs:Visit (Results 176 - 200 of 204) sorted by last modified time

123456789

/external/chromium_org/net/spdy/
H A Dspdy_protocol.h549 virtual void Visit(SpdyFrameVisitor* visitor) const = 0;
666 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
701 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
716 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
742 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
788 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
807 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
835 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
852 virtual void Visit(SpdyFrameVisitor* visitor) const OVERRIDE;
879 virtual void Visit(SpdyFrameVisito
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_ast.py160 IDLLabelResolver().Visit(self, None)
164 IDLNamespaceVersionResolver().Visit(self, self.namespace)
167 IDLFileTypeResolver().Visit(self, None)
175 IDLReleaseResolver().Visit(self, sorted(releases))
H A Didl_c_header.py216 proto.Visit(filenode, None)
H A Didl_lint.py119 warnings = IDLLinter().Visit(filenode, 0)
H A Didl_visitor.py16 # function which returns the final result of the Visit. By default this is
28 def Visit(self, node, data): member in class:IDLVisitor
34 ret = self.Visit(child, newdata)
/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/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/content/public/renderer/
H A Drender_view_visitor.h15 virtual bool Visit(RenderView* render_view) = 0;
/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/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/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/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 ) );

Completed in 452 milliseconds

123456789