Home
last modified time | relevance | path

Searched refs:LOGICAL_OR (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h53 LOGICAL_OR = 21, enumerator
197 Operator& Operator::create<Operator::LOGICAL_OR>();
DBinaryOp.h98 IntOperand* BinaryOp<Operator::LOGICAL_OR>::eval(const Module&,
/frameworks/compile/mclinker/lib/Script/
DOperator.cpp263 Operator& Operator::create<Operator::LOGICAL_OR>() { in create()
264 static BinaryOp<Operator::LOGICAL_OR> op; in create()
DScriptParser.yy182 %left LOGICAL_OR
762 | exp LOGICAL_OR exp
765 &Operator::create<Operator::LOGICAL_OR>());
DBinaryOp.cpp167 IntOperand* BinaryOp<Operator::LOGICAL_OR>::eval( in eval()
DScriptScanner.ll175 <LDSCRIPT,EXPRESSION>"||" { return token::LOGICAL_OR; }