Home
last modified time | relevance | path

Searched refs:mFound (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/compiler/translator/tree_ops/
DRewriteUnaryMinusOperatorFloat.cpp28 bool mFound = false; member in sh::__anon20f9a7cc0111::Traverser
39 if (traverser.mFound) in Apply()
46 } while (traverser.mFound); in Apply()
55 mFound = false; in nextIteration()
60 if (mFound) in visitUnary()
86 mFound = true; in visitUnary()
DRewriteUnaryMinusOperatorInt.cpp29 bool mFound = false; member in sh::__anon097db8e10111::Traverser
40 if (traverser.mFound) in Apply()
47 } while (traverser.mFound); in Apply()
56 mFound = false; in nextIteration()
61 if (mFound) in visitUnary()
104 mFound = true; in visitUnary()
DExpandIntegerPowExpressions.cpp35 bool mFound = false; member in sh::__anonc37fa8540111::Traverser
46 if (traverser.mFound) in Apply()
53 } while (traverser.mFound); in Apply()
63 mFound = false; in nextIteration()
68 if (mFound) in visitAggregate()
141 mFound = true; in visitAggregate()
DRewriteTexelFetchOffset.cpp37 bool mFound = false; member in sh::__anon644469a20111::Traverser
55 if (traverser.mFound) in Apply()
62 } while (traverser.mFound); in Apply()
69 mFound = false; in nextIteration()
74 if (mFound) in visitAggregate()
150 mFound = true; in visitAggregate()
/external/angle/src/compiler/translator/tree_util/
DNodeSearch.h21 NodeSearchTraverser() : TIntermTraverser(true, false, false), mFound(false) {} in NodeSearchTraverser()
23 bool found() const { return mFound; } in found()
33 bool mFound;
44 mFound = true; in visitBranch()
51 return !mFound; in visitBranch()
/external/angle/src/tests/compiler_tests/
DRemovePow_test.cpp75 mFound = true; in visitBinary()
77 return !mFound; in visitBinary()
112 mFound = IsPowWorkaround(node, nullptr); in visitUnary()
113 return !mFound; in visitUnary()
127 mFound = IsPowWorkaround(base, nullptr); in visitUnary()
128 return !mFound; in visitUnary()
/external/angle/src/tests/test_utils/
DConstantFoldingTest.h34 mFound(false) in ConstantFinder()
41 mFound(false) in ConstantFinder()
45 : TIntermTraverser(true, false, false), mFaultTolerance(T()), mFound(false) in ConstantFinder()
65 mFound = found; in visitConstantUnion()
70 bool found() const { return mFound; } in found()
131 bool mFound; variable