Lines Matching refs:IntLiteral
240 count = ((IntLiteral&) *size).fValue; in convertVarDeclarations()
442 int64_t v = ((IntLiteral&) *caseValue).fValue; in convertSwitch()
541 std::unique_ptr<IntLiteral>(new IntLiteral(fContext, Position(), fInvocations)), in applyInvocationIDWorkaround()
566 std::unique_ptr<IntLiteral>(new IntLiteral(fContext, Position(), 0)), in applyInvocationIDWorkaround()
756 count = ((IntLiteral&) *converted).fValue; in convertInterfaceBlock()
820 return std::unique_ptr<Expression>(new IntLiteral(fContext, expr.fPosition, in convertExpression()
1102 int64_t leftVal = ((IntLiteral&) left).fValue; in constantFold()
1103 int64_t rightVal = ((IntLiteral&) right).fValue; in constantFold()
1475 int64_t value = ((IntLiteral&) *args[0]).fValue; in convertNumberConstructor()
1480 return std::unique_ptr<Expression>(new IntLiteral(fContext, in convertNumberConstructor()
1482 ((IntLiteral&) *args[0]).fValue, in convertNumberConstructor()
1486 std::unique_ptr<IntLiteral> zero(new IntLiteral(fContext, position, 0)); in convertNumberConstructor()
1487 std::unique_ptr<IntLiteral> one(new IntLiteral(fContext, position, 1)); in convertNumberConstructor()
1612 return std::unique_ptr<Expression>(new IntLiteral(fContext, base->fPosition, in convertPrefixExpression()
1613 -((IntLiteral&) *base).fValue)); in convertPrefixExpression()