Lines Matching refs:ExprValue
4354 int64_t ExprValue; in parseDirectiveIf() local
4355 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveIf()
4370 ExprValue = ExprValue == 0; in parseDirectiveIf()
4373 ExprValue = ExprValue >= 0; in parseDirectiveIf()
4376 ExprValue = ExprValue > 0; in parseDirectiveIf()
4379 ExprValue = ExprValue <= 0; in parseDirectiveIf()
4382 ExprValue = ExprValue < 0; in parseDirectiveIf()
4386 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
4536 int64_t ExprValue; in parseDirectiveElseIf() local
4537 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
4544 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()