Home | History | Annotate | Download | only in Basic

Lines Matching refs:MacroName

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