Lines Matching refs:ExprValue
5180 int64_t ExprValue; in parseDirectiveIf() local
5181 if (parseAbsoluteExpression(ExprValue) || parseEOL()) in parseDirectiveIf()
5191 ExprValue = ExprValue == 0; in parseDirectiveIf()
5194 ExprValue = ExprValue >= 0; in parseDirectiveIf()
5197 ExprValue = ExprValue > 0; in parseDirectiveIf()
5200 ExprValue = ExprValue <= 0; in parseDirectiveIf()
5203 ExprValue = ExprValue < 0; in parseDirectiveIf()
5207 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
5342 int64_t ExprValue; in parseDirectiveElseIf() local
5343 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
5349 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()