Searched refs:PreVisit (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDetectCallDepth.cpp12 visit(PreVisit)
33 ASSERT(visit == PreVisit);
45 case PreVisit: {
69 visit = PreVisit;
97 if (visit == PreVisit) {
110 if (visit == PreVisit) {
H A DIntermTraverse.cpp47 visit = it->visitBinary(PreVisit, this);
98 visit = it->visitUnary(PreVisit, this);
118 visit = it->visitAggregate(PreVisit, this);
168 visit = it->visitSelection(PreVisit, this);
204 visit = it->visitLoop(PreVisit, this);
254 visit = it->visitBranch(PreVisit, this);
H A DFlagStd140Structs.cpp36 return visit == PreVisit;
H A DDetectDiscontinuity.cpp27 if (visit == PreVisit)
H A DBuiltInFunctionEmulator.cpp205 if (visit == PreVisit) {
216 if (visit == PreVisit) {
H A DOutputGLSLBase.cpp64 if (visit == PreVisit && preStr)
494 if (visit == PreVisit && node->getUseEmulatedFunction())
543 bool useEmulatedFunction = (visit == PreVisit && node->getUseEmulatedFunction());
575 ASSERT(visit == PreVisit);
587 ASSERT(visit == PreVisit);
617 if (visit == PreVisit)
626 ASSERT(visit == PreVisit);
634 if (visit == PreVisit)
654 ASSERT(visit == PreVisit);
709 if (visit == PreVisit)
[all...]
H A DInitializeVariables.cpp51 ASSERT(visit == PreVisit);
H A DRewriteElseBlocks.cpp93 mFunctionType = ((visit == PreVisit) ? &node->getType() : NULL);
H A DOutputHLSL.cpp1487 if (visit == PreVisit)
1525 if (visit == PreVisit)
1541 if (visit == PreVisit)
1562 if (visit == PreVisit)
1847 if (visit == PreVisit)
1926 if (visit == PreVisit)
2440 if (visit == PreVisit)
2461 if (visit == PreVisit)
2732 if (visit == PreVisit)
2808 if (visit == PreVisit)
[all...]
H A DScalarizeVecAndMatConstructorArgs.cpp76 if (visit == PreVisit)
H A DIntermNode.h672 PreVisit, enumerator in enum:Visit
/external/chromium_org/third_party/re2/re2/
H A Dwalker-inl.h7 // the PreVisit and PostVisit methods, which are called before
28 // PreVisit passes ownership of its return value to its caller.
29 // The Arg* that PreVisit returns will be passed to PostVisit as pre_arg
32 // If PreVisit sets *stop to true, the walk does not recurse
34 // value from PreVisit is the return value from PostVisit.
35 // The default PreVisit returns parent_arg.
36 virtual T PreVisit(Regexp* re, T parent_arg, bool* stop);
39 // The pre_arg is the T that PreVisit returned.
65 // Top_arg is passed as parent_arg to PreVisit and PostVisit of re.
76 // visited rather than calling PreVisit/PostVisi
98 template<typename T> T Regexp::Walker<T>::PreVisit(Regexp* re, function in class:re2::Regexp::Walker
[all...]
H A Dtostring.cc35 virtual int PreVisit(Regexp* re, int parent_arg, bool* stop);
61 int ToStringWalker::PreVisit(Regexp* re, int parent_arg, bool* stop) { function in class:re2::ToStringWalker
H A Dsimplify.cc106 virtual Regexp* PreVisit(Regexp* re, Regexp* parent_arg, bool* stop);
165 Regexp* SimplifyWalker::PreVisit(Regexp* re, Regexp* parent_arg, bool* stop) { function in class:re2::SimplifyWalker
H A Dregexp.cc507 virtual Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { function in class:re2::NumCapturesWalker
541 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { function in class:re2::NamedCapturesWalker
585 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { function in class:re2::CaptureNamesWalker
H A Dcompile.cc144 // each node in depth-first order. It invokes PreVisit before
147 Frag PreVisit(Regexp* re, Frag parent_arg, bool* stop);
683 Frag Compiler::PreVisit(Regexp* re, Frag, bool* stop) { function in class:re2::Compiler
/external/regex-re2/re2/
H A Dwalker-inl.h7 // the PreVisit and PostVisit methods, which are called before
28 // PreVisit passes ownership of its return value to its caller.
29 // The Arg* that PreVisit returns will be passed to PostVisit as pre_arg
32 // If PreVisit sets *stop to true, the walk does not recurse
34 // value from PreVisit is the return value from PostVisit.
35 // The default PreVisit returns parent_arg.
36 virtual T PreVisit(Regexp* re, T parent_arg, bool* stop);
39 // The pre_arg is the T that PreVisit returned.
65 // Top_arg is passed as parent_arg to PreVisit and PostVisit of re.
76 // visited rather than calling PreVisit/PostVisi
98 template<typename T> T Regexp::Walker<T>::PreVisit(Regexp* re, function in class:re2::Regexp::Walker
[all...]
H A Dtostring.cc35 virtual int PreVisit(Regexp* re, int parent_arg, bool* stop);
61 int ToStringWalker::PreVisit(Regexp* re, int parent_arg, bool* stop) { function in class:re2::ToStringWalker
H A Dsimplify.cc106 virtual Regexp* PreVisit(Regexp* re, Regexp* parent_arg, bool* stop);
165 Regexp* SimplifyWalker::PreVisit(Regexp* re, Regexp* parent_arg, bool* stop) { function in class:re2::SimplifyWalker
H A Dregexp.cc507 virtual Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { function in class:re2::NumCapturesWalker
541 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { function in class:re2::NamedCapturesWalker
585 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { function in class:re2::CaptureNamesWalker
H A Dcompile.cc143 // each node in depth-first order. It invokes PreVisit before
146 Frag PreVisit(Regexp* re, Frag parent_arg, bool* stop);
682 Frag Compiler::PreVisit(Regexp* re, Frag, bool* stop) { function in class:re2::Compiler
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp819 ExplodedNodeSet PreVisit; local
820 getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
823 StmtNodeBuilder Bldr2(PreVisit, Tmp, *currBldrCtx);
845 for (ExplodedNodeSet::iterator I = PreVisit.begin(), E = PreVisit.end();
1007 ExplodedNodeSet PreVisit; local
1009 getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
1011 for (ExplodedNodeSet::iterator i = PreVisit.begin(),
1012 e = PreVisit.end(); i != e ; ++i)

Completed in 323 milliseconds