• Home
  • Raw
  • Download

Lines Matching refs:newResult

1528         ASTNode::ID newResult = this->createNode(t.fOffset, ASTNode::Kind::kBinary,  in expression()  local
1530 getNode(newResult).addChild(result); in expression()
1531 getNode(newResult).addChild(right); in expression()
1532 result = newResult; in expression()
1568 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, in assignmentExpression() local
1570 getNode(newResult).addChild(result); in assignmentExpression()
1571 getNode(newResult).addChild(right); in assignmentExpression()
1572 result = newResult; in assignmentExpression()
1628 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, ASTNode::Kind::kBinary, in logicalOrExpression() local
1630 getNode(newResult).addChild(result); in logicalOrExpression()
1631 getNode(newResult).addChild(right); in logicalOrExpression()
1632 result = newResult; in logicalOrExpression()
1653 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, ASTNode::Kind::kBinary, in logicalXorExpression() local
1655 getNode(newResult).addChild(result); in logicalXorExpression()
1656 getNode(newResult).addChild(right); in logicalXorExpression()
1657 result = newResult; in logicalXorExpression()
1678 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, ASTNode::Kind::kBinary, in logicalAndExpression() local
1680 getNode(newResult).addChild(result); in logicalAndExpression()
1681 getNode(newResult).addChild(right); in logicalAndExpression()
1682 result = newResult; in logicalAndExpression()
1703 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, ASTNode::Kind::kBinary, in bitwiseOrExpression() local
1705 getNode(newResult).addChild(result); in bitwiseOrExpression()
1706 getNode(newResult).addChild(right); in bitwiseOrExpression()
1707 result = newResult; in bitwiseOrExpression()
1728 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, ASTNode::Kind::kBinary, in bitwiseXorExpression() local
1730 getNode(newResult).addChild(result); in bitwiseXorExpression()
1731 getNode(newResult).addChild(right); in bitwiseXorExpression()
1732 result = newResult; in bitwiseXorExpression()
1753 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, ASTNode::Kind::kBinary, in bitwiseAndExpression() local
1755 getNode(newResult).addChild(result); in bitwiseAndExpression()
1756 getNode(newResult).addChild(right); in bitwiseAndExpression()
1757 result = newResult; in bitwiseAndExpression()
1781 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, in equalityExpression() local
1783 getNode(newResult).addChild(result); in equalityExpression()
1784 getNode(newResult).addChild(right); in equalityExpression()
1785 result = newResult; in equalityExpression()
1815 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, in relationalExpression() local
1817 getNode(newResult).addChild(result); in relationalExpression()
1818 getNode(newResult).addChild(right); in relationalExpression()
1819 result = newResult; in relationalExpression()
1847 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, in shiftExpression() local
1849 getNode(newResult).addChild(result); in shiftExpression()
1850 getNode(newResult).addChild(right); in shiftExpression()
1851 result = newResult; in shiftExpression()
1879 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, in additiveExpression() local
1881 getNode(newResult).addChild(result); in additiveExpression()
1882 getNode(newResult).addChild(right); in additiveExpression()
1883 result = newResult; in additiveExpression()
1912 ASTNode::ID newResult = this->createNode(getNode(result).fOffset, in multiplicativeExpression() local
1914 getNode(newResult).addChild(result); in multiplicativeExpression()
1915 getNode(newResult).addChild(right); in multiplicativeExpression()
1916 result = newResult; in multiplicativeExpression()