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

1 2 3 4 5 6 7 8 9

  /external/vulkan-validation-layers/libs/vkjson/
vkjson.cc 68 visitor->Visit("width", &extents->width) &&
69 visitor->Visit("height", &extents->height) &&
70 visitor->Visit("depth", &extents->depth);
76 visitor->Visit("maxExtent", &properties->maxExtent) &&
77 visitor->Visit("maxMipLevels", &properties->maxMipLevels) &&
78 visitor->Visit("maxArrayLayers", &properties->maxArrayLayers) &&
79 visitor->Visit("sampleCounts", &properties->sampleCounts) &&
80 visitor->Visit("maxResourceSize", &properties->maxResourceSize);
86 visitor->Visit("maxImageDimension1D", &limits->maxImageDimension1D) &&
87 visitor->Visit("maxImageDimension2D", &limits->maxImageDimension2D) &
    [all...]
  /external/v8/src/ast/
ast-literal-reindexer.cc 29 Visit(node->statement());
47 Visit(node->block());
48 Visit(node->result());
68 Visit(node->this_var());
69 Visit(node->home_object());
74 Visit(node->this_var());
75 Visit(node->new_target_var());
76 Visit(node->this_function_var());
82 Visit(node->expression());
92 Visit(node->expression())
    [all...]
ast-numbering.cc 31 #define DEFINE_VISIT(type) void Visit##type(type* node) override;
110 Visit(node->statement());
142 Visit(node->block());
143 Visit(node->result());
185 Visit(node->this_var());
186 Visit(node->home_object());
194 Visit(node->this_var());
195 Visit(node->new_target_var());
196 Visit(node->this_function_var());
209 Visit(node->expression())
    [all...]
ast-literal-reindexer.h 22 #define DEFINE_VISIT(type) void Visit##type(type* node) override;
35 void Visit(AstNode* node) override { node->Accept(this); }
ast.cc 29 void type::Accept(AstVisitor* v) { v->Visit##type(this); }
798 Visit(declarations->at(i));
806 Visit(stmt);
819 if (expression != NULL) Visit(expression);
853 RECURSE(Visit(decl));
860 RECURSE(Visit(stmt));
868 RECURSE(Visit(decl->fun()));
880 RECURSE(Visit(stmt->expression()));
887 RECURSE(Visit(stmt->statement()));
891 RECURSE(Visit(stmt->condition()))
    [all...]
ast-expression-visitor.h 30 #define DECLARE_VISIT(type) void Visit##type(type* node) override;
prettyprinter.cc 45 Visit(node);
50 Visit(node);
537 Visit(node->expression());
549 Visit(node->statement());
555 Visit(node->condition());
557 Visit(node->then_statement());
560 Visit(node->else_statement());
591 Visit(node->expression());
598 Visit(node->expression());
600 Visit(node->statement())
    [all...]
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 81 Visit(expr->block());
82 Visit(expr->result());
87 Visit(stmt->expression());
92 Visit(stmt->condition());
93 Visit(stmt->then_statement());
94 Visit(stmt->else_statement());
99 Visit(stmt->expression());
104 Visit(stmt->expression());
105 Visit(stmt->statement());
110 Visit(stmt->tag())
    [all...]
  /art/runtime/
dex_instruction_visitor_test.cc 45 v0.Visit(c0, sizeof(c0));
50 v1.Visit(c1, sizeof(c1));
55 v2.Visit(c2, sizeof(c2));
60 v3.Visit(c3, sizeof(c3));
65 v4.Visit(c4, sizeof(c4));
  /external/clang/include/clang/AST/
TypeVisitor.h 23 Visit##CLASS(static_cast<const CLASS*>(T))
32 /// from Type. The operation is performed by calling method Visit. It then
46 /// sometype result = avisitor.Visit(atype);
69 RetTy Visit(const Type *T) {
79 // If the implementation chooses not to implement a certain visit method, fall
81 #define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(const CLASS##Type *T) { \
TypeLocVisitor.h 24 Visit##CLASSNAME(TyLoc.castAs<CLASSNAME>())
29 RetTy Visit(TypeLoc TyLoc) {
39 RetTy Visit(UnqualTypeLoc TyLoc) {
50 RetTy Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
EvaluatedExprVisitor.h 51 return this->Visit(E->getBase());
55 // Don't visit either child expression if the condition is dependent.
59 return this->Visit(E->getChosenSubExpr());
65 // Don't visit either child expression if the condition is type-dependent.
70 return this->Visit(E->getResultExpr());
76 return this->Visit(E->getInit());
81 return this->Visit(E->getExprOperand());
90 // Only visit the capture initializers, and not the body.
95 this->Visit(*I);
103 this->Visit(SubStmt)
    [all...]
DeclVisitor.h 36 return static_cast<ImplClass*>(this)->Visit##NAME(static_cast<PTR(CLASS)>(D))
38 RetTy Visit(PTR(Decl) D) {
48 // If the implementation chooses not to implement a certain visit
51 RetTy Visit##DERIVED##Decl(PTR(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));
  /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 ) );
  /external/clang/test/SemaTemplate/
instantiate-using-decl.cpp 27 void Visit(struct Object1*);
30 void Visit(struct Object2*); // expected-note {{candidate function}}
38 void Visit(struct Object1*); // expected-note {{candidate function}}
39 using Base2::Visit;
46 Knot().Visit((struct Object1*) 0);
47 Knot().Visit((struct Object2*) 0);
48 Knot().Visit((struct Object3*) 0); // expected-error {{no matching member function for call}}
  /external/v8/src/crankshaft/
typing.cc 119 RECURSE(Visit(stmt));
134 RECURSE(Visit(stmt->expression()));
144 Visit(stmt->statement());
155 RECURSE(Visit(stmt->condition()));
157 RECURSE(Visit(stmt->then_statement()));
160 RECURSE(Visit(stmt->else_statement()));
182 RECURSE(Visit(stmt->expression()));
194 RECURSE(Visit(stmt->tag()));
217 RECURSE(Visit(label));
255 RECURSE(Visit(stmt->body()))
    [all...]
  /art/compiler/optimizing/
intrinsics_arm64.h 45 void Visit ## Name(HInvoke* invoke) OVERRIDE;
69 void Visit ## Name(HInvoke* invoke) OVERRIDE;
intrinsics_mips.h 40 void Visit ## Name(HInvoke* invoke) OVERRIDE;
64 void Visit ## Name(HInvoke* invoke) OVERRIDE;
intrinsics_mips64.h 40 void Visit ## Name(HInvoke* invoke) OVERRIDE;
64 void Visit ## Name(HInvoke* invoke) OVERRIDE;
intrinsics_x86.h 40 void Visit ## Name(HInvoke* invoke) OVERRIDE;
65 void Visit ## Name(HInvoke* invoke) OVERRIDE;
intrinsics_x86_64.h 40 void Visit ## Name(HInvoke* invoke) OVERRIDE;
65 void Visit ## Name(HInvoke* invoke) OVERRIDE;
  /external/regex-re2/re2/testing/
backtrack.cc 60 bool Visit(int id, const char* p);
132 return Visit(prog_->start(), text.begin());
140 if (Visit(prog_->start(), p)) // Match must be leftmost; done.
148 bool Backtracker::Visit(int id, const char* p) {
174 if (Visit(ip->out(), p)) {
176 Visit(ip->out1(), p);
179 return Visit(ip->out1(), p);
183 return Visit(ip->out(), p+1);
191 bool ret = Visit(ip->out(), p);
196 return Visit(ip->out(), p)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 242 this->Visit(Child);
249 Visit(D->getBody());
252 // Skip lambda expressions. We visit these as FunctionDecls when we're
261 Visit(D->getBody());
268 Visit(D->getBody());
275 Visit(D->getBody());
281 Visit(S->getRetValue());
289 Visit(E->getSubExpr());
305 Visit(S->getSubStmt());
329 // Visit the body region first so the break/continue adjustments can b
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 61 TypeCallPair AllocCall = Visit(S);
74 return Visit(E->getSubExpr());
79 Visit(E->getSubExpr()).second);
83 return Visit(E->getSubExpr());
116 Visit(E->getLHS());
117 Visit(E->getRHS());
121 return Visit(E->getSubExpr());
125 return Visit(E->getSubExpr());
181 Finder.Visit(D->getBody());
197 SFinder.Visit(*ai)
    [all...]

Completed in 400 milliseconds

1 2 3 4 5 6 7 8 9