Lines Matching refs:ExprValue
6143 int64_t ExprValue; in parseDirectiveIf() local
6144 if (parseAbsoluteExpression(ExprValue) || parseEOL()) in parseDirectiveIf()
6153 ExprValue = ExprValue == 0; in parseDirectiveIf()
6157 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
6280 int64_t ExprValue; in parseDirectiveElseIf() local
6281 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
6293 ExprValue = ExprValue == 0; in parseDirectiveElseIf()
6297 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
6630 int64_t ExprValue; in parseDirectiveErrorIfe() local
6631 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveErrorIfe()
6642 if ((ExprValue == 0) == ExpectZero) in parseDirectiveErrorIfe()