OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:binaryNode
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/translator/
FlagStd140Structs.cpp
12
bool FlagStd140Structs::visitBinary(Visit visit, TIntermBinary *
binaryNode
)
14
if (
binaryNode
->getRight()->getBasicType() == EbtStruct)
16
switch (
binaryNode
->getOp())
20
if (isInStd140InterfaceBlock(
binaryNode
->getLeft()))
22
mFlaggedNodes.push_back(
binaryNode
);
31
if (
binaryNode
->getOp() == EOpIndexDirectStruct)
49
TIntermBinary *
binaryNode
= node->getAsBinaryNode();
51
if (
binaryNode
)
53
return isInStd140InterfaceBlock(
binaryNode
->getLeft());
FlagStd140Structs.h
24
virtual bool visitBinary(Visit visit, TIntermBinary *
binaryNode
);
VariableInfo.h
30
virtual bool visitBinary(Visit visit, TIntermBinary *
binaryNode
);
VariableInfo.cpp
399
bool CollectVariables::visitBinary(Visit, TIntermBinary *
binaryNode
)
401
if (
binaryNode
->getOp() == EOpIndexDirectInterfaceBlock)
404
TIntermTyped *blockNode =
binaryNode
->getLeft()->getAsTyped();
407
TIntermConstantUnion *constantUnion =
binaryNode
->getRight()->getAsConstantUnion();
ParseContext.cpp
271
TIntermBinary*
binaryNode
= node->getAsBinaryNode();
273
if (
binaryNode
) {
276
switch(
binaryNode
->getOp()) {
281
return lValueErrorCheck(line, op,
binaryNode
->getLeft());
283
errorReturn = lValueErrorCheck(line, op,
binaryNode
->getLeft());
287
TIntermTyped* rightNode =
binaryNode
->getRight();
341
if (message == 0 &&
binaryNode
== 0 && symNode == 0) {
[
all
...]
Completed in 38 milliseconds