Lines Matching refs:ExprValue
5154 int64_t ExprValue; in parseDirectiveIf() local
5155 if (parseAbsoluteExpression(ExprValue) || parseEOL()) in parseDirectiveIf()
5165 ExprValue = ExprValue == 0; in parseDirectiveIf()
5168 ExprValue = ExprValue >= 0; in parseDirectiveIf()
5171 ExprValue = ExprValue > 0; in parseDirectiveIf()
5174 ExprValue = ExprValue <= 0; in parseDirectiveIf()
5177 ExprValue = ExprValue < 0; in parseDirectiveIf()
5181 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
5316 int64_t ExprValue; in parseDirectiveElseIf() local
5317 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
5323 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()