HomeSort by: relevance | last modified time | path
    Searched defs:IntConstExprASTNode (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/elftosb/dist/elftosb2/
ElftosbAST.cpp 203 #pragma mark = IntConstExprASTNode =
205 IntConstExprASTNode::IntConstExprASTNode(const IntConstExprASTNode & other)
210 void IntConstExprASTNode::printTree(int indent) const
252 return new IntConstExprASTNode(value, size);
338 return new IntConstExprASTNode(value);
363 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(m_expr.get());
367 return new IntConstExprASTNode((uint32_t)value, intConst->getSize())
    [all...]
ElftosbAST.h 254 class IntConstExprASTNode : public ExprASTNode
257 IntConstExprASTNode(uint32_t value, int_size_t size=kWordSize)
262 IntConstExprASTNode(const IntConstExprASTNode & other);
264 virtual std::string nodeName() const { return "IntConstExprASTNode"; }
266 virtual ASTNode * clone() const { return new IntConstExprASTNode(*this); }

Completed in 17 milliseconds