Home
last modified time | relevance | path

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

/system/tools/hidl/
DConstantExpression.cpp33 #define OPEQ(__y__) (std::string(mOp) == std::string(__y__)) macro
36 #define OP_IS_BIN_ARITHMETIC (OPEQ("+") || OPEQ("-") || OPEQ("*") || OPEQ("/") || OPEQ("%"))
37 #define OP_IS_BIN_BITFLIP (OPEQ("|") || OPEQ("^") || OPEQ("&"))
38 #define OP_IS_BIN_COMP (OPEQ("<") || OPEQ(">") || OPEQ("<=") || OPEQ(">=") || OPEQ("==") ||
39 #define OP_IS_BIN_SHIFT (OPEQ(">>") || OPEQ("<<"))
40 #define OP_IS_BIN_LOGICAL (OPEQ("||") || OPEQ("&&"))
304 newOp = OPEQ("<<") ? std::string(">>") : std::string("<<"); in evaluate()