Lines Matching refs:ExprValue
6182 int64_t ExprValue; in parseDirectiveIf() local
6183 if (parseAbsoluteExpression(ExprValue) || in parseDirectiveIf()
6194 ExprValue = ExprValue == 0; in parseDirectiveIf()
6198 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
6322 int64_t ExprValue; in parseDirectiveElseIf() local
6323 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
6336 ExprValue = ExprValue == 0; in parseDirectiveElseIf()
6340 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
6677 int64_t ExprValue; in parseDirectiveErrorIfe() local
6678 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveErrorIfe()
6689 if ((ExprValue == 0) == ExpectZero) in parseDirectiveErrorIfe()