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.td59 MetaVarName<"<macro[=value]>">, Alias<D>;
77 HelpText<"Add directory to include search path">, MetaVarName<"<dir>">,
82 MetaVarName<"<n>">, Alias<O>;
106 MetaVarName<"<macro>">, Alias<U>;
150 MetaVarName<"<file or directory>">;
157 MetaVarName<"<file or directory>">;
160 MetaVarName<"<file>">;
163 MetaVarName<"<file or directory>">;
167 HelpText<"Forward options to the linker">, MetaVarName<"<options>">;
178 HelpText<"Specify a C source file">, MetaVarName<"<filename>">;
[all …]
DCC1Options.td254 MetaVarName<"<filename>">,
263 def ftabstop : Separate<["-"], "ftabstop">, MetaVarName<"<N>">,
265 def ferror_limit : Separate<["-"], "ferror-limit">, MetaVarName<"<N>">,
267 def fmacro_backtrace_limit : Separate<["-"], "fmacro-backtrace-limit">, MetaVarName<"<N>">,
269 def ftemplate_backtrace_limit : Separate<["-"], "ftemplate-backtrace-limit">, MetaVarName<"<N>">,
271 def fconstexpr_backtrace_limit : Separate<["-"], "fconstexpr-backtrace-limit">, MetaVarName<"<N>">,
273 def fmessage_length : Separate<["-"], "fmessage-length">, MetaVarName<"<N>">,
290 MetaVarName<"<ast file>">,
293 MetaVarName<"<file>:<line>:<column>">,
296 MetaVarName<"<from>;<to>">,
[all …]
DOptions.td132 MetaVarName<"<gcc-path>">;
235 MetaVarName<"<file>">;
281 MetaVarName<"<arg>">;
288 MetaVarName<"<arg>">;
295 MetaVarName<"<arg>">;
299 MetaVarName<"<warning>">, HelpText<"Enable the specified warning">;
301 HelpText<"Pass <arg> to the static analyzer">, MetaVarName<"<arg>">;
304 HelpText<"Pass <arg> to the assembler">, MetaVarName<"<arg>">;
306 HelpText<"Pass <arg> to the clang compiler">, MetaVarName<"<arg>">,
309 HelpText<"Pass <arg> to the linker">, MetaVarName<"<arg>">;
[all …]
/external/llvm/include/llvm/Option/
DOptParser.td90 string MetaVarName = ?;
124 class MetaVarName<string name> { string MetaVarName = name; }
/external/llvm/lib/Option/
DOptTable.cpp314 if (const char *MetaVarName = Opts.getOptionMetaVar(Id)) in getOptionHelpName() local
315 Name += MetaVarName; in getOptionHelpName()