Home
last modified time | relevance | path

Searched refs:MetaVarName (Results 1 – 6 of 6) sorted by relevance

/external/llvm/unittests/Option/
DOpts.td8 def B : Joined<["-"], "B">, HelpText<"The B option">, MetaVarName<"B">, Flags<[OptFlag2]>;
9 def C : Separate<["-"], "C">, HelpText<"The C option">, MetaVarName<"C">, Flags<[OptFlag1]>;
10 def SLASH_C : Separate<["/", "-"], "C">, HelpText<"The C option">, MetaVarName<"C">, Flags<[OptFlag…
11 def D : CommaJoined<["-"], "D">, HelpText<"The D option">, MetaVarName<"D">;
13 def F : JoinedOrSeparate<["-"], "F">, HelpText<"The F option">, MetaVarName<"F">;
14 def G : JoinedAndSeparate<["-"], "G">, HelpText<"The G option">, MetaVarName<"G">;
/external/clang/include/clang/Driver/
DCLCompatOptions.td65 MetaVarName<"<macro[=value]>">, Alias<D>;
98 HelpText<"Add directory to include search path">, MetaVarName<"<dir>">,
126 MetaVarName<"<macro>">, Alias<U>;
199 MetaVarName<"<file or directory>">;
206 MetaVarName<"<file or directory>">;
209 MetaVarName<"<file>">;
212 MetaVarName<"<file or directory>">;
219 MetaVarName<"<dir>">;
223 HelpText<"Forward options to the linker">, MetaVarName<"<options>">;
234 MetaVarName<"<file or directory>">;
[all …]
DCC1Options.td311 MetaVarName<"<filename>">,
320 def ftabstop : Separate<["-"], "ftabstop">, MetaVarName<"<N>">,
322 def ferror_limit : Separate<["-"], "ferror-limit">, MetaVarName<"<N>">,
324 def fmacro_backtrace_limit : Separate<["-"], "fmacro-backtrace-limit">, MetaVarName<"<N>">,
326 def ftemplate_backtrace_limit : Separate<["-"], "ftemplate-backtrace-limit">, MetaVarName<"<N>">,
328 def fconstexpr_backtrace_limit : Separate<["-"], "fconstexpr-backtrace-limit">, MetaVarName<"<N>">,
330 def fspell_checking_limit : Separate<["-"], "fspell-checking-limit">, MetaVarName<"<N>">,
332 def fmessage_length : Separate<["-"], "fmessage-length">, MetaVarName<"<N>">,
353 MetaVarName<"<ast file>">,
358 MetaVarName<"<file>:<line>:<column>">,
[all …]
DOptions.td161 MetaVarName<"<gcc-path>">;
266 MetaVarName<"<file>">;
305 MetaVarName<"<remark>">, HelpText<"Enable the specified remark">;
316 MetaVarName<"<arg>">;
324 MetaVarName<"<arg>">;
332 MetaVarName<"<arg>">;
336 MetaVarName<"<warning>">, HelpText<"Enable the specified warning">;
338 HelpText<"Pass <arg> to the static analyzer">, MetaVarName<"<arg>">;
341 HelpText<"Pass <arg> to the assembler">, MetaVarName<"<arg>">;
343 HelpText<"Pass <arg> to the clang compiler">, MetaVarName<"<arg>">,
[all …]
/external/llvm/lib/Option/
DOptTable.cpp301 if (const char *MetaVarName = Opts.getOptionMetaVar(Id)) { in getOptionHelpName() local
304 Name += MetaVarName; in getOptionHelpName()
323 if (const char *MetaVarName = Opts.getOptionMetaVar(Id)) in getOptionHelpName() local
324 Name += MetaVarName; in getOptionHelpName()
/external/llvm/include/llvm/Option/
DOptParser.td94 string MetaVarName = ?;
128 class MetaVarName<string name> { string MetaVarName = name; }