Home | History | Annotate | Download | only in Basic

Lines Matching refs:MacroName

39 /// MacroName is "unix", then this will define "__unix", "__unix__", and "unix"
41 static void DefineStd(MacroBuilder &Builder, StringRef MacroName,
43 assert(MacroName[0] != '_' && "Identifier should be in the user's namespace");
48 Builder.defineMacro(MacroName);
51 Builder.defineMacro("__" + MacroName);
54 Builder.defineMacro("__" + MacroName + "__");