Lines Matching refs:ExprValue
4898 int64_t ExprValue; in parseDirectiveIf() local
4899 if (parseAbsoluteExpression(ExprValue) || in parseDirectiveIf()
4911 ExprValue = ExprValue == 0; in parseDirectiveIf()
4914 ExprValue = ExprValue >= 0; in parseDirectiveIf()
4917 ExprValue = ExprValue > 0; in parseDirectiveIf()
4920 ExprValue = ExprValue <= 0; in parseDirectiveIf()
4923 ExprValue = ExprValue < 0; in parseDirectiveIf()
4927 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
5064 int64_t ExprValue; in parseDirectiveElseIf() local
5065 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
5072 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()