Home
last modified time | relevance | path

Searched refs:falseB (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
Dintermediate.h612 TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB) : in TIntermSelection() argument
613 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection()
614 TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB, const TType& type) : in TIntermSelection() argument
615 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB) in TIntermSelection()
/external/angle/third_party/glslang/src/glslang/Include/
Dintermediate.h1650 TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB) : in TIntermSelection() argument
1651 TIntermTyped(EbtVoid), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection()
1654 … TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB, const TType& type) : in TIntermSelection() argument
1655 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection()
/external/deqp-deps/glslang/glslang/Include/
Dintermediate.h1650 TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB) : in TIntermSelection() argument
1651 TIntermTyped(EbtVoid), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection()
1654 … TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB, const TType& type) : in TIntermSelection() argument
1655 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection()
/external/angle/src/compiler/translator/
DIntermNode.h883 TIntermIfElse(TIntermTyped *cond, TIntermBlock *trueB, TIntermBlock *falseB);
DIntermNode.cpp1392 TIntermIfElse::TIntermIfElse(TIntermTyped *cond, TIntermBlock *trueB, TIntermBlock *falseB) in TIntermIfElse() argument
1393 : TIntermNode(), mCondition(cond), mTrueBlock(trueB), mFalseBlock(falseB) in TIntermIfElse()