Lines Matching defs:ExpectEqual

1012   // "ifidn", "ifdif", "ifidni", or "ifdifi", depending on ExpectEqual and
1014 bool parseDirectiveIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
1025 // ExpectEqual and CaseInsensitive.
1026 bool parseDirectiveElseIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
1060 // ".erridn", ".errdif", ".erridni", or ".errdifi", depending on ExpectEqual
1062 bool parseDirectiveErrorIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
2153 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/false,
2156 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/false,
2159 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/true,
2162 return parseDirectiveIfidn(IDLoc, /*ExpectEqual=*/true,
2176 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/false,
2179 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/false,
2182 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/true,
2185 return parseDirectiveElseIfidn(IDLoc, /*ExpectEqual=*/true,
2477 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/false,
2480 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/false,
2483 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/true,
2486 return parseDirectiveErrorIfidn(IDLoc, /*ExpectEqual=*/true,
6188 bool MasmParser::parseDirectiveIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
6193 if (ExpectEqual)
6199 if (ExpectEqual)
6207 if (ExpectEqual)
6216 ExpectEqual == (StringRef(String1).equals_insensitive(String2));
6218 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6385 bool MasmParser::parseDirectiveElseIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
6403 if (ExpectEqual)
6410 if (ExpectEqual)
6419 if (ExpectEqual)
6427 ExpectEqual == (StringRef(String1).equals_insensitive(String2));
6429 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6561 bool MasmParser::parseDirectiveErrorIfidn(SMLoc DirectiveLoc, bool ExpectEqual,
6573 if (ExpectEqual)
6579 if (ExpectEqual)
6588 if (ExpectEqual)
6594 if (ExpectEqual)
6607 ExpectEqual == (StringRef(String1).equals_insensitive(String2));
6609 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6613 ExpectEqual == StringRef(String1).equals_insensitive(String2)) ||
6614 (ExpectEqual == (String1 == String2)))