Searched refs:Visit (Results 51 - 75 of 204) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeFilter.cs86 v.Visit( t, pre, post );
/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))
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DFlagStd140Structs.cpp12 bool FlagStd140Structs::visitBinary(Visit visit, TIntermBinary *binaryNode)
H A DIntermNode.h670 enum Visit enum
703 virtual bool visitBinary(Visit, TIntermBinary *) { return true; }
704 virtual bool visitUnary(Visit, TIntermUnary *) { return true; }
705 virtual bool visitSelection(Visit, TIntermSelection *) { return true; }
706 virtual bool visitAggregate(Visit, TIntermAggregate *) { return true; }
707 virtual bool visitLoop(Visit, TIntermLoop *) { return true; }
708 virtual bool visitBranch(Visit, TIntermBranch *) { return true; }
759 virtual bool visitBinary(Visit, TIntermBinary *) { return depthCheck(); }
760 virtual bool visitUnary(Visit, TIntermUnary *) { return depthCheck(); }
761 virtual bool visitSelection(Visit, TIntermSelectio
[all...]
H A DRegenerateStructNames.cpp61 bool RegenerateStructNames::visitAggregate(Visit, TIntermAggregate *aggregate)
H A DVersionGLSL.cpp49 bool TVersionGLSL::visitAggregate(Visit, TIntermAggregate *node)
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraphBuilder.h22 virtual bool visitBinary(Visit visit, TIntermBinary *);
23 virtual bool visitSelection(Visit visit, TIntermSelection *);
24 virtual bool visitAggregate(Visit visit, TIntermAggregate *);
25 virtual bool visitLoop(Visit visit, TIntermLoop *);
H A DDependencyGraphBuilder.cpp16 Visit visit, TIntermAggregate *intermAggregate)
109 bool TDependencyGraphBuilder::visitBinary(Visit visit, TIntermBinary *intermBinary)
199 Visit visit, TIntermSelection *intermSelection)
222 bool TDependencyGraphBuilder::visitLoop(Visit visit, TIntermLoop *intermLoop)
/external/chromium_org/third_party/angle/src/third_party/compiler/
H A DArrayBoundsClamper.cpp50 virtual bool visitBinary(Visit visit, TIntermBinary* node)
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp95 // Visit the body.
97 Visit(FD->getBody());
130 Visit(child);
222 walker.Visit(Body);
230 walker.Visit(Body);
H A DLLVMConventionsChecker.cpp130 Visit(child);
142 walker.Visit(D->getBody());
228 void Visit(FieldDecl *D);
240 walker.Visit(I);
244 void ASTFieldVisitor::Visit(FieldDecl *D) { function in class:ASTFieldVisitor
255 Visit(I);
H A DMallocOverflowSecurityChecker.cpp176 return this->Visit(S->getBody());
179 return this->Visit(S->getBody());
182 return this->Visit(S->getBody());
208 c.Visit(mgr.getAnalysisDeclContext(D)->getBody());
/external/chromium_org/v8/src/arm64/
H A Ddecoder-arm64.cc71 void DispatchingDecoderVisitor::Visit##A(Instruction* instr) { \
77 (*it)->Visit##A(instr); \
H A Ddecoder-arm64.h71 #define DECLARE(A) virtual void Visit##A(Instruction* instr) = 0;
112 #define DECLARE(A) void Visit##A(Instruction* instr);
H A Dinstrument-arm64.h60 #define DECLARE(A) void Visit##A(Instruction* instr);
/external/chromium_org/tools/cr/cr/
H A Dvisitor.py39 # Visit all the values first
41 self.Visit(key, node.values[key])
54 def Visit(self, key, value): member in class:Visitor
55 """Visit is called for every variable in each node."""
61 """Visit is called for every node after traversal."""
103 def Visit(self, key, value): member in class:SearchVisitor
115 def Visit(self, key, value): member in class:WhereVisitor
117 super(WhereVisitor, self).Visit(key, value)
140 def Visit(self, key, value): member in class:ExportVisitor
/external/clang/include/clang/AST/
H A DStmtVisitor.h37 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S))
39 RetTy Visit(PTR(Stmt) S) {
112 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); }
195 return static_cast<ImplClass*>(this)->Visit##CLASS(static_cast<PTR(CLASS)>(S))
198 RetTy Visit ## Class (PTR(Class) S) { DISPATCH(Class); }
201 RetTy Visit(PTR(OMPClause) S) {
206 case OMPC_ ## Name : return Visit ## Class(static_cast<PTR(Class)>(S));
/external/clang/tools/libclang/
H A DCursorVisitor.h110 using DeclVisitor<CursorVisitor, bool>::Visit;
111 using TypeLocVisitor<CursorVisitor, bool>::Visit;
178 bool Visit(CXCursor Cursor, bool CheckedRegionOfInterest = false);
180 /// \brief Visit declarations and preprocessed entities for the file region
252 bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
263 LLVM_ATTRIBUTE_NOINLINE bool Visit(const Stmt *S);
H A DCIndex.cpp171 /// \brief Visit the given cursor and, if requested by the visitor,
181 bool CursorVisitor::Visit(CXCursor Cursor, bool CheckedRegionOfInterest) { function in class:CursorVisitor
361 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
381 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
452 if (Visit(MakeMacroExpansionCursor(ME, TU)))
459 if (Visit(MakeMacroDefinitionCursor(MD, TU)))
466 if (Visit(MakeInclusionDirectiveCursor(ID, TU)))
476 /// \brief Visit the children of the given cursor.
496 return VisitAttributes(D) || Visit(D);
501 return Visit(
2549 bool CursorVisitor::Visit(const Stmt *S) { function in class:CursorVisitor
[all...]
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp93 ComplexPairTy Visit(Expr *E) { function in class:__anon17835::ComplexExprEmitter
94 return StmtVisitor<ComplexExprEmitter, ComplexPairTy>::Visit(E);
102 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
104 return Visit(GE->getResultExpr());
109 return Visit(PE->getReplacement());
179 return Visit(E->getSubExpr());
185 return Visit(E->getSubExpr());
188 return Visit(DAE->getExpr());
192 return Visit(DIE->getExpr());
197 return Visit(
[all...]
/external/chromium_org/v8/src/compiler/
H A Dgeneric-algorithm.h40 static void Visit(GenericGraphBase* graph, Zone* zone, function in class:v8::internal::compiler::GenericGraphVisit
96 static void Visit(GenericGraphBase* graph, Zone* zone, function in namespace:v8::internal::compiler
99 Visit<Visitor, Traits>(graph, zone, &array[0], &array[1], visitor);
/external/chromium_org/v8/src/
H A Dfull-codegen.cc23 Visit(stmt);
28 Visit(expr);
84 Visit(stmt->expression());
94 Visit(stmt->condition());
109 Visit(stmt->expression());
114 Visit(stmt->expression());
120 Visit(stmt->tag());
132 Visit(stmt->cond());
139 Visit(stmt->cond());
146 Visit(stm
[all...]
H A Dprettyprinter.h33 #define DECLARE_VISIT(type) virtual void Visit##type(type* node);
70 #define DECLARE_VISIT(type) virtual void Visit##type(type* node);
/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/vixl/src/a64/
H A Ddecoder-a64.h90 #define DECLARE(A) virtual void Visit##A(Instruction* instr) = 0;
141 #define DECLARE(A) void Visit##A(Instruction* instr);

Completed in 739 milliseconds

123456789