Searched refs:BinaryOpNode (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/lldb/source/Symbol/ |
D | PostfixExpression.cpp | 22 static llvm::Optional<BinaryOpNode::OpType> 28 return BinaryOpNode::Align; in GetBinaryOpType() 30 return BinaryOpNode::Minus; in GetBinaryOpType() 32 return BinaryOpNode::Plus; in GetBinaryOpType() 57 stack.push_back(MakeNode<BinaryOpNode>(alloc, *op_type, *left, *right)); in ParseOneExpression() 116 bool Visit(BinaryOpNode &binary, Node *&) override { in Visit() 148 void Visit(BinaryOpNode &binary, Node *&) override; 179 void DWARFCodegen::Visit(BinaryOpNode &binary, Node *&) { in Visit() 184 case BinaryOpNode::Plus: in Visit() 189 case BinaryOpNode::Minus: in Visit() [all …]
|
/external/llvm-project/lldb/unittests/Symbol/ |
D | PostfixExpressionTest.cpp | 21 static std::string ToString(BinaryOpNode::OpType type) { in ToString() 23 case BinaryOpNode::Align: in ToString() 25 case BinaryOpNode::Minus: in ToString() 27 case BinaryOpNode::Plus: in ToString() 43 std::string Visit(BinaryOpNode &binary, Node *&) override { in Visit()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | PostfixExpression.h | 51 class BinaryOpNode : public Node { 59 BinaryOpNode(OpType op_type, Node &left, Node &right) in BinaryOpNode() function 167 virtual ResultT Visit(BinaryOpNode &binary, Node *&ref) = 0; 179 return Visit(llvm::cast<BinaryOpNode>(*node), node); in Dispatch()
|