Lines Matching refs:ExprValue
3853 int64_t ExprValue; in parseDirectiveIf() local
3854 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveIf()
3869 ExprValue = ExprValue == 0; in parseDirectiveIf()
3872 ExprValue = ExprValue >= 0; in parseDirectiveIf()
3875 ExprValue = ExprValue > 0; in parseDirectiveIf()
3878 ExprValue = ExprValue <= 0; in parseDirectiveIf()
3881 ExprValue = ExprValue < 0; in parseDirectiveIf()
3885 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
4035 int64_t ExprValue; in parseDirectiveElseIf() local
4036 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
4043 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()