Searched refs:CondMet (Results 1 – 4 of 4) sorted by relevance
32 bool CondMet; variable35 AsmCond() : TheCond(NoCond), CondMet(false), Ignore(false) {} in AsmCond()
2199 TheCondState.CondMet = ExprValue; in ParseDirectiveIf()2200 TheCondState.Ignore = !TheCondState.CondMet; in ParseDirectiveIf()2222 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined()); in ParseDirectiveIfdef()2224 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined()); in ParseDirectiveIfdef()2225 TheCondState.Ignore = !TheCondState.CondMet; in ParseDirectiveIfdef()2243 if (LastIgnoreState || TheCondState.CondMet) { in ParseDirectiveElseIf()2256 TheCondState.CondMet = ExprValue; in ParseDirectiveElseIf()2257 TheCondState.Ignore = !TheCondState.CondMet; in ParseDirectiveElseIf()2279 if (LastIgnoreState || TheCondState.CondMet) in ParseDirectiveElse()
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()[all …]