Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Symbol/
DPostfixExpression.cpp22 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/
DPostfixExpressionTest.cpp21 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/
DPostfixExpression.h51 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()