Lines Matching defs:ExpectEqual

1014   // "ifidn", "ifdif", "ifidni", or "ifdifi", depending on ExpectEqual and
1016 bool parseDirectiveIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
1027 // ExpectEqual and CaseInsensitive.
1028 bool parseDirectiveElseIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
1062 // ".erridn", ".errdif", ".erridni", or ".errdifi", depending on ExpectEqual
1064 bool parseDirectiveErrorIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
2154 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/false,
2157 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/false,
2160 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/true,
2163 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/true,
2177 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/false,
2180 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/false,
2183 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/true,
2186 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/true,
2478 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/false,
2481 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/false,
2484 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/true,
2487 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/true,
6189 bool MasmParser::parseDirectiveIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
6194 if (ExpectEqual)
6200 if (ExpectEqual)
6208 if (ExpectEqual)
6217 ExpectEqual == (StringRef(String1).equals_insensitive(String2));
6219 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6386 bool MasmParser::parseDirectiveElseIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
6404 if (ExpectEqual)
6411 if (ExpectEqual)
6420 if (ExpectEqual)
6428 ExpectEqual == (StringRef(String1).equals_insensitive(String2));
6430 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6562 bool MasmParser::parseDirectiveErrorIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
6574 if (ExpectEqual)
6580 if (ExpectEqual)
6589 if (ExpectEqual)
6595 if (ExpectEqual)
6608 ExpectEqual == (StringRef(String1).equals_insensitive(String2));
6610 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6614 ExpectEqual == StringRef(String1).equals_insensitive(String2)) ||
6615 (ExpectEqual == (String1 == String2)))