HomeSort by relevance Sort by last modified time
    Searched refs:PreVisit (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/angle_dx11/src/compiler/
DetectCallDepth.cpp 12 visit(PreVisit)
33 ASSERT(visit == PreVisit);
45 case PreVisit: {
69 visit = PreVisit;
97 if (visit == PreVisit) {
110 if (visit == PreVisit) {
IntermTraverse.cpp 16 // if preVisit is turned on and the type specific function
19 // preVisit, postVisit, and rightToLeft control what order
46 if(it->preVisit)
48 visit = it->visitBinary(PreVisit, this);
113 if (it->preVisit)
114 visit = it->visitUnary(PreVisit, this);
133 if(it->preVisit)
135 visit = it->visitAggregate(PreVisit, this);
189 if (it->preVisit)
190 visit = it->visitSelection(PreVisit, this)
    [all...]
DetectDiscontinuity.cpp 27 if (visit == PreVisit)
OutputGLSLBase.cpp 60 if (visit == PreVisit && preStr)
407 if (visit == PreVisit && node->getUseEmulatedFunction())
484 ASSERT(visit == PreVisit);
497 ASSERT(visit == PreVisit);
527 if (visit == PreVisit)
542 ASSERT(visit == PreVisit);
551 if (visit == PreVisit)
586 if (visit == PreVisit)
630 if (delayedWrite && visit == PreVisit && node->getUseEmulatedFunction())
BuiltInFunctionEmulator.cpp 205 if (visit == PreVisit) {
216 if (visit == PreVisit) {
OutputHLSL.cpp     [all...]
intermediate.h 526 PreVisit,
543 TIntermTraverser(bool preVisit = true, bool inVisit = false, bool postVisit = false, bool rightToLeft = false) :
544 preVisit(preVisit),
569 const bool preVisit;
  /external/chromium_org/third_party/re2/re2/
walker-inl.h 7 // 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/PostVisit
    [all...]
tostring.cc 35 virtual int PreVisit(Regexp* re, int parent_arg, bool* stop);
61 int ToStringWalker::PreVisit(Regexp* re, int parent_arg, bool* stop) {
simplify.cc 106 virtual Regexp* PreVisit(Regexp* re, Regexp* parent_arg, bool* stop);
165 Regexp* SimplifyWalker::PreVisit(Regexp* re, Regexp* parent_arg, bool* stop) {
regexp.cc 507 virtual Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) {
541 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) {
585 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) {
compile.cc 144 // 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) {
    [all...]
  /external/regex-re2/re2/
walker-inl.h 7 // 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/PostVisit
    [all...]
tostring.cc 35 virtual int PreVisit(Regexp* re, int parent_arg, bool* stop);
61 int ToStringWalker::PreVisit(Regexp* re, int parent_arg, bool* stop) {
simplify.cc 106 virtual Regexp* PreVisit(Regexp* re, Regexp* parent_arg, bool* stop);
165 Regexp* SimplifyWalker::PreVisit(Regexp* re, Regexp* parent_arg, bool* stop) {
regexp.cc 507 virtual Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) {
541 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) {
585 Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) {
compile.cc 143 // 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) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 737 ExplodedNodeSet preVisit;
738 getCheckerManager().runCheckersForPreStmt(preVisit, Pred, S, *this);
739 getCheckerManager().runCheckersForPostStmt(Dst, preVisit, S, *this);
747 ExplodedNodeSet PreVisit;
748 getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
751 StmtNodeBuilder Bldr2(PreVisit, Tmp, *currBldrCtx);
773 for (ExplodedNodeSet::iterator I = PreVisit.begin(), E = PreVisit.end();
796 ExplodedNodeSet preVisit;
797 getCheckerManager().runCheckersForPreStmt(preVisit, Pred, S, *this)
    [all...]

Completed in 308 milliseconds