Lines Matching refs:CondMet
4386 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
4387 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
4409 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
4410 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
4440 TheCondState.CondMet = ExpectEqual == (Str1.trim() == Str2.trim()); in parseDirectiveIfc()
4441 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfc()
4487 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfeqs()
4488 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfeqs()
4511 TheCondState.CondMet = (Sym && !Sym->isUndefined()); in parseDirectiveIfdef()
4513 TheCondState.CondMet = (!Sym || Sym->isUndefined()); in parseDirectiveIfdef()
4514 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfdef()
4532 if (LastIgnoreState || TheCondState.CondMet) { in parseDirectiveElseIf()
4544 TheCondState.CondMet = ExprValue; in parseDirectiveElseIf()
4545 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveElseIf()
4567 if (LastIgnoreState || TheCondState.CondMet) in parseDirectiveElse()