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);
3209 bool MasmParser::handleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc,
3246 NameLoc, CurBuffer, getTok().getLoc(), TheCondStack.size()};
3272 bool MasmParser::handleMacroInvocation(const MCAsmMacro *M, SMLoc NameLoc) {
3274 return Error(NameLoc, "cannot invoke macro procedure as function");
3278 handleMacroEntry(M, NameLoc, AsmToken::RParen))
3387 DirectiveKind DirKind, SMLoc NameLoc) {
3390 return Error(NameLoc, "cannot redefine a built-in symbol");
3420 if (Warning(NameLoc, "redefining '" + Name +
3461 if (Warning(NameLoc, "redefining '" + Name +
3489 if (Warning(NameLoc, "redefining '" + Name +
3772 StringRef Name, SMLoc NameLoc) {
3982 SMLoc NameLoc) {
4506 SMLoc NameLoc) {
4567 bool MasmParser::parseDirectiveEnds(StringRef Name, SMLoc NameLoc) {
4569 return Error(NameLoc, "ENDS directive without matching STRUC/STRUCT/UNION");
4571 return Error(NameLoc, "unexpected name in nested ENDS directive");
4573 return Error(NameLoc, "mismatched name in ENDS directive; expected '" +
5754 bool MasmParser::parseDirectiveMacro(StringRef Name, SMLoc NameLoc) {
5844 return Error(NameLoc, "no matching 'endm' in definition");
5877 return Error(NameLoc, "macro '" + Name + "' is already defined");
5940 SMLoc NameLoc;
5941 if (parseTokenLoc(NameLoc) ||
5942 check(parseIdentifier(Name), NameLoc,
5949 return Error(NameLoc, "macro '" + Name + "' is not defined");
5964 SMLoc NameLoc = getTok().getLoc();
5966 return Error(NameLoc, "expected name");