Lines Matching refs:CondMet
4019 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
4020 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
4042 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
4043 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
4073 TheCondState.CondMet = ExpectEqual == (Str1.trim() == Str2.trim()); in parseDirectiveIfc()
4074 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfc()
4120 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfeqs()
4121 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfeqs()
4144 TheCondState.CondMet = (Sym && !Sym->isUndefined()); in parseDirectiveIfdef()
4146 TheCondState.CondMet = (!Sym || Sym->isUndefined()); in parseDirectiveIfdef()
4147 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfdef()
4165 if (LastIgnoreState || TheCondState.CondMet) { in parseDirectiveElseIf()
4177 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
4178 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveElseIf()
4200 if (LastIgnoreState || TheCondState.CondMet) in parseDirectiveElse()