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

1 2 3 4 5 6

  /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...]
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeVisitor.cs 50 * Visit every node in tree t and trigger an action for each node
58 public object Visit(object t, ITreeVisitorAction action)
60 // System.out.println("visit "+((Tree)t).toStringTree());
69 Visit(child, action);
76 public object Visit(object t, Func<object, object> preAction, Func<object, object> postAction)
78 return Visit(t, new TreeVisitorAction(preAction, postAction));
TreeWizard.cs 69 // TODO: should this be called visit or something else?
70 void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels);
74 public virtual void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) {
75 Visit(t);
77 public abstract void Visit(object t);
87 public override void Visit(object t) {
212 * TODO: save this index so that find and visit are faster
245 public override void Visit(object t) {
259 public void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) {
269 Visit(t, ttype, new FindTreeWizardVisitor(nodes))
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeVisitor.cs 52 * Visit every node in tree t and trigger an action for each node
60 public object Visit( object t, ITreeVisitorAction action )
62 // System.out.println("visit "+((Tree)t).toStringTree());
71 Visit( child, action );
78 public object Visit( object t, Func<object, object> preAction, Func<object, object> postAction )
80 return Visit( t, new TreeVisitorAction( preAction, postAction ) );
TreeWizard.cs 72 // TODO: should this be called visit or something else?
73 void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels );
78 public virtual void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels )
80 Visit( t );
82 public abstract void Visit( object t );
94 public override void Visit( object t )
239 * TODO: save this index so that find and visit are faster
279 public override void Visit( object t )
296 public void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels )
309 Visit( t, ttype, new FindTreeWizardVisitor( nodes ) )
    [all...]
  /external/v8/src/
prettyprinter.cc 81 Visit(node->module());
90 Visit(node->module());
108 Visit(node->proxy());
113 Visit(node->module());
126 Visit(node->expression());
138 Visit(node->condition());
140 Visit(node->then_statement());
143 Visit(node->else_statement());
174 Visit(node->expression());
181 Visit(node->expression())
    [all...]
objects-visiting-inl.h 40 int>::Visit);
45 int>::Visit);
50 int>::Visit);
55 int>::Visit);
62 int>::Visit);
69 int>::Visit);
81 table_.Register(kVisitJSWeakMap, &JSObjectVisitor::Visit);
83 table_.Register(kVisitJSRegExp, &JSObjectVisitor::Visit);
116 it.rinfo()->Visit(v);
148 it.rinfo()->template Visit<StaticVisitor>(heap)
    [all...]
rewriter.cc 84 virtual void Visit##type(type* node);
94 Visit(statements->at(i));
124 Visit(node->else_statement());
127 Visit(node->then_statement());
135 Visit(node->body());
163 Visit(node->catch_block());
167 Visit(node->try_block());
174 Visit(node->finally_block());
177 Visit(node->try_block());
206 Visit(node->statement())
    [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/Checkers/
MallocSizeofChecker.cpp 60 TypeCallPair AllocCall = Visit(S);
74 return Visit(E->getSubExpr());
79 Visit(E->getSubExpr()).second);
83 return Visit(E->getSubExpr());
117 Visit(E->getLHS());
118 Visit(E->getRHS());
122 return Visit(E->getSubExpr());
126 return Visit(E->getSubExpr());
178 Finder.Visit(D->getBody());
194 SFinder.Visit(*ai)
    [all...]

Completed in 411 milliseconds

1 2 3 4 5 6