Lines Matching refs:ExprValue
6158 int64_t ExprValue; in parseDirectiveIf() local
6159 if (parseAbsoluteExpression(ExprValue) || parseEOL()) in parseDirectiveIf()
6168 ExprValue = ExprValue == 0; in parseDirectiveIf()
6172 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
6295 int64_t ExprValue; in parseDirectiveElseIf() local
6296 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveElseIf()
6308 ExprValue = ExprValue == 0; in parseDirectiveElseIf()
6312 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
6645 int64_t ExprValue; in parseDirectiveErrorIfe() local
6646 if (parseAbsoluteExpression(ExprValue)) in parseDirectiveErrorIfe()
6657 if ((ExprValue == 0) == ExpectZero) in parseDirectiveErrorIfe()