Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h33 UNARY_MINUS = 1, enumerator
134 Operator& Operator::create<Operator::UNARY_MINUS>();
DUnaryOp.h49 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval(const Module&,
/frameworks/compile/mclinker/lib/Script/
DOperator.cpp82 Operator& Operator::create<Operator::UNARY_MINUS>() { in create()
83 static UnaryOp<Operator::UNARY_MINUS> op; in create()
DUnaryOp.cpp35 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval( in eval()
DScriptParser.yy192 %right UNARY_PLUS UNARY_MINUS '!' '~'
642 | '-' exp %prec UNARY_MINUS
645 &Operator::create<Operator::UNARY_MINUS>());