Lines Matching refs:CondMet
5181 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
5182 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
5202 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
5203 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
5229 TheCondState.CondMet = ExpectEqual == (Str1.trim() == Str2.trim()); in parseDirectiveIfc()
5230 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfc()
5268 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfeqs()
5269 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfeqs()
5291 TheCondState.CondMet = (Sym && !Sym->isUndefined(false)); in parseDirectiveIfdef()
5293 TheCondState.CondMet = (!Sym || Sym->isUndefined(false)); in parseDirectiveIfdef()
5294 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfdef()
5312 if (LastIgnoreState || TheCondState.CondMet) { in parseDirectiveElseIf()
5323 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
5324 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveElseIf()
5344 if (LastIgnoreState || TheCondState.CondMet) in parseDirectiveElse()