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

1 2 3 4 5

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
VersionGLSL.h 35 virtual bool visitBinary(Visit, TIntermBinary*);
36 virtual bool visitUnary(Visit, TIntermUnary*);
37 virtual bool visitSelection(Visit, TIntermSelection*);
38 virtual bool visitAggregate(Visit, TIntermAggregate*);
39 virtual bool visitLoop(Visit, TIntermLoop*);
40 virtual bool visitBranch(Visit, TIntermBranch*);
VariableInfo.h 27 virtual bool visitBinary(Visit, TIntermBinary*);
28 virtual bool visitUnary(Visit, TIntermUnary*);
29 virtual bool visitSelection(Visit, TIntermSelection*);
30 virtual bool visitAggregate(Visit, TIntermAggregate*);
31 virtual bool visitLoop(Visit, TIntermLoop*);
32 virtual bool visitBranch(Visit, TIntermBranch*);
RemoveTree.cpp 24 bool visitBinary(Visit visit, TIntermBinary*);
25 bool visitUnary(Visit visit, TIntermUnary*);
26 bool visitSelection(Visit visit, TIntermSelection*);
27 bool visitAggregate(Visit visit, TIntermAggregate*);
35 bool RemoveTree::visitBinary(Visit visit, TIntermBinary* node
    [all...]
OutputGLSL.h 22 void writeTriplet(Visit visit, const char* preStr, const char* inStr, const char* postStr);
29 virtual bool visitBinary(Visit visit, TIntermBinary* node);
30 virtual bool visitUnary(Visit visit, TIntermUnary* node);
31 virtual bool visitSelection(Visit visit, TIntermSelection* node);
32 virtual bool visitAggregate(Visit visit, TIntermAggregate* node)
    [all...]
ValidateLimitations.h 29 virtual bool visitBinary(Visit, TIntermBinary*);
30 virtual bool visitUnary(Visit, TIntermUnary*);
31 virtual bool visitSelection(Visit, TIntermSelection*);
32 virtual bool visitAggregate(Visit, TIntermAggregate*);
33 virtual bool visitLoop(Visit, TIntermLoop*);
34 virtual bool visitBranch(Visit, TIntermBranch*);
VersionGLSL.cpp 48 bool TVersionGLSL::visitBinary(Visit, TIntermBinary*)
54 bool TVersionGLSL::visitUnary(Visit, TIntermUnary*)
60 bool TVersionGLSL::visitSelection(Visit, TIntermSelection*)
66 bool TVersionGLSL::visitAggregate(Visit, TIntermAggregate* node)
74 // We need to visit sequence children to get to global or inner scope.
92 bool TVersionGLSL::visitLoop(Visit, TIntermLoop*)
98 bool TVersionGLSL::visitBranch(Visit, TIntermBranch*)
QualifierAlive.cpp 22 bool visitSelection(Visit, TIntermSelection*);
52 bool TAliveTraverser::visitSelection(Visit preVisit, TIntermSelection* node)
UnfoldSelect.h 25 bool visitSelection(Visit visit, TIntermSelection *node);
OutputHLSL.h 39 // Visit AST nodes and output their code to the body stream
42 bool visitBinary(Visit visit, TIntermBinary*);
43 bool visitUnary(Visit visit, TIntermUnary*);
44 bool visitSelection(Visit visit, TIntermSelection*);
45 bool visitAggregate(Visit visit, TIntermAggregate*);
46 bool visitLoop(Visit visit, TIntermLoop*)
    [all...]
parseConst.cpp 34 bool visitBinary(Visit visit, TIntermBinary*);
35 bool visitUnary(Visit visit, TIntermUnary*);
36 bool visitSelection(Visit visit, TIntermSelection*);
37 bool visitAggregate(Visit visit, TIntermAggregate*);
38 bool visitLoop(Visit visit, TIntermLoop*)
    [all...]
VariableInfo.cpp 147 bool CollectAttribsUniforms::visitBinary(Visit, TIntermBinary*)
152 bool CollectAttribsUniforms::visitUnary(Visit, TIntermUnary*)
157 bool CollectAttribsUniforms::visitSelection(Visit, TIntermSelection*)
162 bool CollectAttribsUniforms::visitAggregate(Visit, TIntermAggregate* node)
169 // We need to visit sequence children to get to variable declarations.
201 bool CollectAttribsUniforms::visitLoop(Visit, TIntermLoop*)
206 bool CollectAttribsUniforms::visitBranch(Visit, TIntermBranch*)
ValidateLimitations.cpp 46 virtual bool visitBinary(Visit, TIntermBinary*) { return true; }
47 virtual bool visitUnary(Visit, TIntermUnary*) { return true; }
48 virtual bool visitSelection(Visit, TIntermSelection*) { return true; }
49 virtual bool visitAggregate(Visit, TIntermAggregate*) { return true; }
50 virtual bool visitLoop(Visit, TIntermLoop*) { return true; }
51 virtual bool visitBranch(Visit, TIntermBranch*) { return true; }
75 bool ValidateLimitations::visitBinary(Visit, TIntermBinary* node)
91 bool ValidateLimitations::visitUnary(Visit, TIntermUnary* node)
99 bool ValidateLimitations::visitSelection(Visit, TIntermSelection*)
104 bool ValidateLimitations::visitAggregate(Visit, TIntermAggregate* node
    [all...]
intermOut.cpp 30 bool visitBinary(Visit visit, TIntermBinary*);
31 bool visitUnary(Visit visit, TIntermUnary*);
32 bool visitSelection(Visit visit, TIntermSelection*);
33 bool visitAggregate(Visit visit, TIntermAggregate*);
34 bool visitLoop(Visit visit, TIntermLoop*)
    [all...]
  /external/clang/lib/Index/
ASTVisitor.h 40 using BaseStmtVisitor::Visit;
46 void Visit(Decl *D) {
49 BaseDeclVisitor::Visit(D);
56 Visit(TInfo->getTypeLoc());
62 Visit(D->getBody());
68 Visit(D->getBody());
73 Visit(D->getBody());
79 Visit(Init);
93 Visit(*I);
103 Visit(*I)
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-using-decl.cpp 26 void Visit(struct Object1*);
29 void Visit(struct Object2*); // expected-note {{candidate function}}
37 void Visit(struct Object1*); // expected-note {{candidate function}}
38 using Base2::Visit;
45 Knot().Visit((struct Object1*) 0);
46 Knot().Visit((struct Object2*) 0);
47 Knot().Visit((struct Object3*) 0); // expected-error {{no matching member function for call}}
  /external/clang/include/clang/AST/
TypeVisitor.h 23 Visit##CLASS(static_cast<const CLASS*>(T))
28 RetTy Visit(const Type *T) {
38 // If the implementation chooses not to implement a certain visit method, fall
40 #define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(const CLASS##Type *T) { \
TypeLocVisitor.h 24 Visit##CLASSNAME(cast<CLASSNAME>(TyLoc))
29 RetTy Visit(TypeLoc TyLoc) {
39 RetTy Visit(UnqualTypeLoc TyLoc) {
50 RetTy Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
EvaluatedExprVisitor.h 48 return this->Visit(E->getBase());
53 return this->Visit(E->getChosenSubExpr(Context));
59 return this->Visit(E->getInit());
69 return this->Visit(E->getExprOperand());
77 this->Visit(*C);
DeclVisitor.h 25 return static_cast<ImplClass*>(this)-> Visit##NAME(static_cast<CLASS*>(D))
31 RetTy Visit(Decl *D) {
41 // If the implementation chooses not to implement a certain visit
44 RetTy Visit##DERIVED##Decl(DERIVED##Decl *D) { DISPATCH(BASE, BASE); }
  /external/v8/src/
prettyprinter.cc 73 Visit(node->expression());
85 Visit(node->condition());
87 Visit(node->then_statement());
90 Visit(node->else_statement());
121 Visit(node->expression());
128 Visit(node->expression());
141 Visit(node->tag());
153 Visit(node->body());
155 Visit(node->cond());
163 Visit(node->cond())
    [all...]
data-flow.cc 186 Visit(expr);
208 Visit(stmt->then_statement());
209 Visit(stmt->else_statement());
244 Visit(stmt->tag());
250 Visit(clause->label());
261 Visit(stmt->body());
267 Visit(stmt->body());
272 if (stmt->init() != NULL) Visit(stmt->init());
274 if (stmt->next() != NULL) Visit(stmt->next());
280 Visit(stmt->body())
    [all...]
  /external/clang/include/clang/Analysis/Visitors/
CFGRecStmtDeclVisitor.h 27 static_cast<ImplClass*>(this)->Visit##CLASS##Decl( \
31 #define DEFAULT_DISPATCH(CLASS) void Visit##CLASS##Decl(CLASS##Decl *D) {}
32 #define DEFAULT_DISPATCH_VARDECL(CLASS) void Visit##CLASS##Decl(CLASS##Decl *D)\
50 // Visit the initializer.
53 static_cast<ImplClass*>(this)->Visit(I);
CFGStmtVisitor.h 50 RetTy Visit(Stmt *S) {
53 return StmtVisitor<ImplClass,RetTy>::Visit(S);
69 /// to using StmtVisitor's Visit method.
126 return static_cast<ImplClass*>(this)->Visit(S);
143 /// VisitChildren: Call "Visit" on each child of S.
153 static_cast<ImplClass*>(this)->Visit(CS->body_back());
160 static_cast<ImplClass*>(this)->Visit(B->getRHS());
166 if (*I) static_cast<ImplClass*>(this)->Visit(*I);
  /external/clang/lib/StaticAnalyzer/Core/
AggExprVisitor.cpp 25 /// into. Passing such a pointer around would pollute the Visit* interface of
53 Visit(E->getSubExpr());
63 Eng.Visit(E, Pred, DstSet);
68 AggExprVisitor(Dest, Pred, Dst, *this).Visit(const_cast<Expr *>(E));
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 93 if (!Visit(*I))
105 if (!S->getThen() || !Visit(S->getThen()))
107 if (S->getElse() && !Visit(S->getElse()))
121 return Visit(S->getBody());
131 return Visit(S->getBody());
141 return Visit(S->getBody());
146 return Visit(S->getSubStmt());
180 if (EmptyChecker(Pass.Ctx, Pass.ARCMTMacroLocs).Visit(S)) {
193 if (!EmptyChecker(Ctx, MacroLocs).Visit(*I))

Completed in 3013 milliseconds

1 2 3 4 5