Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/compiler/translator/
DFlagStd140Structs.cpp12 bool FlagStd140Structs::visitBinary(Visit visit, TIntermBinary *binaryNode) in visitBinary() argument
14 if (binaryNode->getRight()->getBasicType() == EbtStruct) in visitBinary()
16 switch (binaryNode->getOp()) in visitBinary()
20 if (isInStd140InterfaceBlock(binaryNode->getLeft())) in visitBinary()
22 mFlaggedNodes.push_back(binaryNode); in visitBinary()
31 if (binaryNode->getOp() == EOpIndexDirectStruct) in visitBinary()
49 TIntermBinary *binaryNode = node->getAsBinaryNode(); in isInStd140InterfaceBlock() local
51 if (binaryNode) in isInStd140InterfaceBlock()
53 return isInStd140InterfaceBlock(binaryNode->getLeft()); in isInStd140InterfaceBlock()
DVariableInfo.cpp399 bool CollectVariables::visitBinary(Visit, TIntermBinary *binaryNode) in visitBinary() argument
401 if (binaryNode->getOp() == EOpIndexDirectInterfaceBlock) in visitBinary()
404 TIntermTyped *blockNode = binaryNode->getLeft()->getAsTyped(); in visitBinary()
407 TIntermConstantUnion *constantUnion = binaryNode->getRight()->getAsConstantUnion(); in visitBinary()
DFlagStd140Structs.h24 virtual bool visitBinary(Visit visit, TIntermBinary *binaryNode);
DVariableInfo.h30 virtual bool visitBinary(Visit visit, TIntermBinary *binaryNode);
DParseContext.cpp271 TIntermBinary* binaryNode = node->getAsBinaryNode(); in lValueErrorCheck() local
273 if (binaryNode) { in lValueErrorCheck()
276 switch(binaryNode->getOp()) { in lValueErrorCheck()
281 return lValueErrorCheck(line, op, binaryNode->getLeft()); in lValueErrorCheck()
283 errorReturn = lValueErrorCheck(line, op, binaryNode->getLeft()); in lValueErrorCheck()
287 TIntermTyped* rightNode = binaryNode->getRight(); in lValueErrorCheck()
341 if (message == 0 && binaryNode == 0 && symNode == 0) { in lValueErrorCheck()