Lines Matching defs:NameLoc

593   /// \param NameLoc Instantiation location.
595 const MCAsmMacro *M, SMLoc NameLoc,
601 /// \param NameLoc Invocation location.
602 bool handleMacroInvocation(const MCAsmMacro *M, SMLoc NameLoc);
867 StringRef Name, SMLoc NameLoc);
880 SMLoc NameLoc);
934 DirectiveKind DirKind, SMLoc NameLoc);
990 bool parseDirectiveMacro(StringRef Name, SMLoc NameLoc);
993 StringRef Name, SMLoc NameLoc);
995 bool parseDirectiveEnds(StringRef Name, SMLoc NameLoc);
3210 bool MasmParser::handleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc,
3247 NameLoc, CurBuffer, getTok().getLoc(), TheCondStack.size()};
3273 bool MasmParser::handleMacroInvocation(const MCAsmMacro *M, SMLoc NameLoc) {
3275 return Error(NameLoc, "cannot invoke macro procedure as function");
3279 handleMacroEntry(M, NameLoc, AsmToken::RParen))
3388 DirectiveKind DirKind, SMLoc NameLoc) {
3391 return Error(NameLoc, "cannot redefine a built-in symbol");
3421 if (Warning(NameLoc, "redefining '" + Name +
3462 if (Warning(NameLoc, "redefining '" + Name +
3490 if (Warning(NameLoc, "redefining '" + Name +
3773 StringRef Name, SMLoc NameLoc) {
3983 SMLoc NameLoc) {
4507 SMLoc NameLoc) {
4568 bool MasmParser::parseDirectiveEnds(StringRef Name, SMLoc NameLoc) {
4570 return Error(NameLoc, "ENDS directive without matching STRUC/STRUCT/UNION");
4572 return Error(NameLoc, "unexpected name in nested ENDS directive");
4574 return Error(NameLoc, "mismatched name in ENDS directive; expected '" +
5755 bool MasmParser::parseDirectiveMacro(StringRef Name, SMLoc NameLoc) {
5845 return Error(NameLoc, "no matching 'endm' in definition");
5878 return Error(NameLoc, "macro '" + Name + "' is already defined");
5941 SMLoc NameLoc;
5942 if (parseTokenLoc(NameLoc) ||
5943 check(parseIdentifier(Name), NameLoc,
5950 return Error(NameLoc, "macro '" + Name + "' is not defined");
5965 SMLoc NameLoc = getTok().getLoc();
5967 return Error(NameLoc, "expected name");