Lines Matching refs:ExprValue
6142 int64_t ExprValue; in parseDirectiveIf() local
6143 if (parseAbsoluteExpression(ExprValue) || parseEOL()) in parseDirectiveIf()
6152 ExprValue = ExprValue == 0; in parseDirectiveIf()
6156 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
6279 int64_t ExprValue; in parseDirectiveElseIf() local
6280 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
6292 ExprValue = ExprValue == 0; in parseDirectiveElseIf()
6296 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
6629 int64_t ExprValue; in parseDirectiveErrorIfe() local
6630 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveErrorIfe()
6641 if ((ExprValue == 0) == ExpectZero) in parseDirectiveErrorIfe()