Searched refs:UnaryOpNode (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp37 static llvm::Optional<UnaryOpNode::OpType>
40 return UnaryOpNode::Deref;
67 stack.push_back(MakeNode<UnaryOpNode>(alloc, *op_type, *operand));
134 bool Visit(UnaryOpNode &unary, Node *&) override {
164 void Visit(UnaryOpNode &unary, Node *&) override;
229 void DWARFCodegen::Visit(UnaryOpNode &unary, Node *&) {
233 case UnaryOpNode::Deref:
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DPostfixExpression.h132 class UnaryOpNode : public Node { class in namespace:lldb_private::postfix
138 UnaryOpNode(OpType op_type, Node &operand) function in class:lldb_private::postfix::UnaryOpNode
172 virtual ResultT Visit(UnaryOpNode &unary, Node *&ref) = 0;
189 return Visit(llvm::cast<UnaryOpNode>(*node), node);

Completed in 58 milliseconds