Home
last modified time | relevance | path

Searched refs:HelpText (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-dlltool/
DOptions.td3 def m: JoinedOrSeparate<["-"], "m">, HelpText<"Set target machine">;
6 def l: JoinedOrSeparate<["-"], "l">, HelpText<"Generate an import lib">;
9 def D: JoinedOrSeparate<["-"], "D">, HelpText<"Specify the input DLL Name">;
12 def d: JoinedOrSeparate<["-"], "d">, HelpText<"Input .def File">;
15 def k: Flag<["-"], "k">, HelpText<"Kill @n Symbol from export">;
22 def S: JoinedOrSeparate<["-"], "S">, HelpText<"Assembler">;
25 def f: JoinedOrSeparate<["-"], "f">, HelpText<"Assembler Flags">;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/
DOptTable.cpp233 if (!In.Prefixes || (!In.HelpText && !In.GroupID)) in findByPrefix()
240 if (In.HelpText) in findByPrefix()
241 S += In.HelpText; in findByPrefix()
483 StringRef HelpText; member
511 OS.indent(Pad + 1) << OptionHelp[i].HelpText << '\n'; in PrintHelpOptionList()
562 const char *HelpText = getOptionHelpText(Id); in PrintHelp() local
563 if (!HelpText && ShowAllAliases) { in PrintHelp()
566 HelpText = getOptionHelpText(Alias.getID()); in PrintHelp()
569 if (HelpText) { in PrintHelp()
572 GroupedOptionHelp[HelpGroup].push_back({OptName, HelpText}); in PrintHelp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-lib/
DOptions.td10 Joined<["/", "-", "/?", "-?"], name#":">, HelpText<help>;
15 def lst : F<"list">, HelpText<"List contents of .lib file on stdout">;
19 HelpText<"Make .lib point to .obj files instead of copying their contents">;
/third_party/grpc/examples/csharp/Xds/GreeterServer/
DProgram.cs49 [Option("port", Default = 50051, HelpText = "The port to listen on.")]
52 …[Option("hostname", Required = false, HelpText = "The name clients will see in responses. If not s…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/
DOptTable.h46 const char *HelpText; member
114 return getInfo(id).HelpText; in getOptionHelpText()
DOptParser.td78 string HelpText = ?;
92 string HelpText = ?;
128 class HelpText<string text> { string HelpText = text; }
/third_party/grpc/examples/csharp/Xds/GreeterClient/
DProgram.cs26 [Option("server", Default = "localhost:50051", HelpText = "The address of the server")]
/third_party/python/Lib/idlelib/
Dhelp.py168 class HelpText(Text): class
214 self.text = text = HelpText(self, filename)
/third_party/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc2259 TEST_F(CommandLineInterfaceTest, HelpText) { in TEST_F() argument