Searched refs:Visit (Results 126 - 150 of 204) sorted by relevance

123456789

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DOutputHLSL.cpp1472 bool OutputHLSL::visitBinary(Visit visit, TIntermBinary *node)
1745 bool OutputHLSL::visitUnary(Visit visit, TIntermUnary *node)
1815 bool OutputHLSL::visitAggregate(Visit visit, TIntermAggregate *node)
2278 bool OutputHLSL::visitSelection(Visit visit, TIntermSelection *node)
2344 bool OutputHLSL::visitLoop(Visit visit, TIntermLoop *node)
2430 bool OutputHLSL::visitBranch(Visit visit, TIntermBranch *node)
2728 void OutputHLSL::outputTriplet(Visit visit, const TString &preString, const TString &inString, const TString &postString)
2804 void OutputHLSL::outputConstructor(Visit visit, const TType &type, const TString &name, const TIntermSequence *parameters)
H A DVariableInfo.cpp349 bool CollectVariables::visitAggregate(Visit, TIntermAggregate *node)
399 bool CollectVariables::visitBinary(Visit, TIntermBinary *binaryNode)
H A DScalarizeVecAndMatConstructorArgs.cpp74 bool ScalarizeVecAndMatConstructorArgs::visitAggregate(Visit visit, TIntermAggregate *node)
/external/chromium_org/v8/src/mips/
H A Dassembler-mips-inl.h371 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) { function in class:v8::internal::RelocInfo
396 void RelocInfo::Visit(Heap* heap) { function in class:v8::internal::RelocInfo
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64-inl.h368 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) { function in class:v8::internal::RelocInfo
393 void RelocInfo::Visit(Heap* heap) { function in class:v8::internal::RelocInfo
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas126 procedure Visit(const T: IANTLRInterface); override; procedure
137 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer; procedure
150 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer; procedure
1706 Wiz.Visit(T, Wiz.GetTokenType('B'), Visitor);
1723 Wiz.Visit(T, Wiz.GetTokenType('C'), Visitor);
1885 Wiz.Visit(T, Wiz.GetTokenType('B'), Visitor);
1902 Wiz.Visit(T, Wiz.GetTokenType('A'), Visitor);
1919 Wiz.Visit(T, Wiz.GetTokenType('B'), Visitor);
1936 Wiz.Visit(T, Wiz.GetTokenType('A'), Visitor);
2015 Wiz.Visit(
[all...]
/external/chromium_org/extensions/renderer/
H A Dconsole.cc40 virtual bool Visit(content::RenderView* render_view) OVERRIDE {
H A Dextension_helper.cc50 virtual bool Visit(content::RenderView* render_view) OVERRIDE {
/external/chromium_org/v8/src/compiler/
H A Dgraph-visualizer.cc241 // Visit all uses of white nodes.
243 GenericGraphVisit::Visit<GraphVisualizer, NodeUseIterationTraits<Node> >(
H A Dinstruction-selector.h32 // Visit code for the entire graph with the included schedule.
152 // Visit nodes in the given block and generate code.
155 // Visit the node for the control flow at the end of the block, generating
159 // Visit the node and generate code, if any.
162 #define DECLARE_GENERATOR(x) void Visit##x(Node* node);
H A Dast-graph-builder.cc81 // Visit implicit declaration of the function name.
86 // Visit declarations within the function scope.
93 // Visit statements in the function body.
453 // Visit statements in the same scope, no declarations.
461 // Visit declarations and statements in a block scope.
490 Visit(stmt->then_statement());
492 Visit(stmt->else_statement());
525 Visit(stmt->statement());
832 Visit(expr->then_expression());
834 Visit(exp
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp1283 Visit(E->getLHS());
1284 Visit(E->getRHS());
1288 Visit(E->getSubExpr());
1296 Visit(E->getSubExpr());
1300 Visit(E->getCond());
1301 Visit(E->getTrueExpr());
1302 Visit(E->getFalseExpr());
1306 Visit(E->getSubExpr());
1310 Visit(E->getOpaqueValue()->getSourceExpr());
1311 Visit(
[all...]
H A DSemaTemplate.cpp3911 bool Visit(QualType T) { function in class:__anon18101::UnnamedLocalNoLinkageFinder
3912 return inherited::Visit(T.getTypePtr());
3916 bool Visit##Class##Type(const Class##Type *);
3918 bool Visit##Class##Type(const Class##Type *) { return false; }
3920 bool Visit##Class##Type(const Class##Type *) { return false; }
3933 return Visit(T->getElementType());
3937 return Visit(T->getPointeeType());
3942 return Visit(T->getPointeeType());
3947 return Visit(T->getPointeeType());
3952 return Visit(
[all...]
H A DSemaExprObjC.cpp2848 using super::Visit;
2849 ACCResult Visit(Expr *e) { function in class:__anon18056::ARCCastChecker
2850 return super::Visit(e->IgnoreParens());
2885 return Visit(e->getSubExpr());
2894 return Visit(e->getSubExpr());
2899 return Visit(e->getRHS());
2904 ACCResult left = Visit(e->getTrueExpr());
2906 return merge(left, Visit(e->getFalseExpr()));
2912 return Visit(e->getResultExpr());
2917 return Visit(
[all...]
/external/clang/include/clang/AST/
H A DDataRecursiveASTVisitor.h103 /// Visit*). A method (e.g. Traverse*) may call methods from the same
109 /// that the Visit*() methods for a given node are called in the
113 /// This scheme guarantees that all Visit*() calls for the same AST
114 /// node are grouped together. In other words, Visit*() methods for
123 /// and Visit* methods for declarations, types, statements,
125 /// behavior. Most users only need to override Visit*. Advanced
255 // \brief Visit an attribute.
258 // Declare Traverse* and empty Visit* for all Attr classes.
271 // Define WalkUpFrom*() and empty Visit*() for all Stmt classes.
277 TRY_TO(Visit##CLAS
[all...]
H A DRecursiveASTVisitor.h99 /// Visit*). A method (e.g. Traverse*) may call methods from the same
105 /// that the Visit*() methods for a given node are called in the
109 /// This scheme guarantees that all Visit*() calls for the same AST
110 /// node are grouped together. In other words, Visit*() methods for
116 /// and Visit* methods for declarations, types, statements,
118 /// behavior. Most users only need to override Visit*. Advanced
259 // \brief Visit an attribute.
262 // Declare Traverse* and empty Visit* for all Attr classes.
275 // Define WalkUpFrom*() and empty Visit*() for all Stmt classes.
281 TRY_TO(Visit##CLAS
[all...]
/external/chromium_org/v8/src/
H A Dcompiler.cc302 virtual void Visit##type(type* node) OVERRIDE { \
306 HOptimizedGraphBuilder::Visit##type(node); \
312 virtual void Visit##type(type* node) OVERRIDE { \
316 HOptimizedGraphBuilder::Visit##type(node); \
322 virtual void Visit##type(type* node) OVERRIDE { \
323 HOptimizedGraphBuilder::Visit##type(node); \
/external/chromium_org/v8/src/arm/
H A Dassembler-arm-inl.h320 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) { function in class:v8::internal::RelocInfo
345 void RelocInfo::Visit(Heap* heap) { function in class:v8::internal::RelocInfo
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32-inl.h292 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) { function in class:v8::internal::RelocInfo
319 void RelocInfo::Visit(Heap* heap) { function in class:v8::internal::RelocInfo
/external/chromium_org/v8/src/x64/
H A Dassembler-x64-inl.h470 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) { function in class:v8::internal::RelocInfo
497 void RelocInfo::Visit(Heap* heap) { function in class:v8::internal::RelocInfo
/external/chromium_org/v8/src/x87/
H A Dassembler-x87-inl.h293 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) { function in class:v8::internal::RelocInfo
320 void RelocInfo::Visit(Heap* heap) { function in class:v8::internal::RelocInfo
/external/vixl/src/a64/
H A Ddecoder-a64.cc703 void Decoder::Visit##A(Instruction *instr) { \
707 (*it)->Visit##A(instr); \
/external/clang/include/clang/Sema/
H A DTemplate.h399 Decl *Visit ## DERIVED ## Decl(DERIVED ## Decl *D);
/external/clang/tools/libclang/
H A DIndexDecl.cpp326 bool Handled = IndexingDeclVisitor(*this).Visit(D);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas907 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
965 /// Visit every ttype node in t, invoking the visitor.
973 procedure Visit(const T: IANTLRInterface; const TokenType: Integer;
984 procedure Visit(const T: IANTLRInterface; const Pattern: String;
1726 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
1729 procedure Visit(const T: IANTLRInterface); overload; virtual; abstract;
1764 procedure Visit(const T: IANTLRInterface); override;
1777 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
1793 procedure Visit(const T, Parent: IANTLRInterface; const ChildIndex: Integer;
1808 procedure Visit(cons
[all...]

Completed in 531 milliseconds

123456789