Searched refs:UnaryOp (Results 1 – 6 of 6) sorted by relevance
/frameworks/compile/mclinker/include/mcld/Script/ |
D | UnaryOp.h | 28 class UnaryOp : public Operator { 32 UnaryOp() : Operator(Operator::UNARY, TYPE), m_pOperand(NULL) {} in UnaryOp() function 35 ~UnaryOp() {} in ~UnaryOp() 46 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval(const Module&, 49 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval(const Module&, 52 IntOperand* UnaryOp<Operator::LOGICAL_NOT>::eval(const Module&, 55 IntOperand* UnaryOp<Operator::BITWISE_NOT>::eval(const Module&, 59 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module&, 62 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module&, 65 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module&, [all …]
|
/frameworks/compile/mclinker/lib/Script/ |
D | UnaryOp.cpp | 26 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval( in eval() 35 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval( in eval() 44 IntOperand* UnaryOp<Operator::LOGICAL_NOT>::eval( in eval() 53 IntOperand* UnaryOp<Operator::BITWISE_NOT>::eval( in eval() 62 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module& pModule, in eval() 70 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module& pModule, in eval() 92 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module& pModule, in eval() 114 IntOperand* UnaryOp<Operator::DATA_SEGMENT_END>::eval( in eval() 123 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module& pModule, in eval() 131 IntOperand* UnaryOp<Operator::LENGTH>::eval(const Module& pModule, in eval() [all …]
|
D | Operator.cpp | 77 static UnaryOp<Operator::UNARY_PLUS> op; in create() 83 static UnaryOp<Operator::UNARY_MINUS> op; in create() 89 static UnaryOp<Operator::LOGICAL_NOT> op; in create() 95 static UnaryOp<Operator::BITWISE_NOT> op; in create() 101 static UnaryOp<Operator::ABSOLUTE> op; in create() 107 static UnaryOp<Operator::ADDR> op; in create() 113 static UnaryOp<Operator::ALIGNOF> op; in create() 119 static UnaryOp<Operator::DATA_SEGMENT_END> op; in create() 125 static UnaryOp<Operator::DEFINED> op; in create() 131 static UnaryOp<Operator::LENGTH> op; in create() [all …]
|
D | CMakeLists.txt | 37 UnaryOp.cpp
|
D | Android.mk | 33 UnaryOp.cpp \
|
/frameworks/data-binding/compilerCommon/ |
D | BindingExpression.g4 | 56 | op=('+'|'-') expression # UnaryOp 57 | op=('~'|'!') expression # UnaryOp
|