Home
last modified time | relevance | path

Searched refs:help_text (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
Dmulticommandtool.py51 …def __init__(self, help_text, argument_names=None, options=None, long_help=None, requires_local_co… argument
52 self.help_text = help_text
125help_text = self.name_with_arguments().ljust(len(self.name_with_arguments()) + 3) + self.help_text
127 help_text += "%s\n\n" % self.long_help
128 help_text += self.option_parser.format_option_help(IndentedHelpFormatter())
129 return help_text
144 help_text = None variable in AbstractDeclarativeCommand
148 …Command.__init__(self, self.help_text, self.argument_names, options=options, long_help=self.long_h…
173 help_text = "Display information about this program or its subcommands" variable in HelpCommand
193 …and: " %s %s\n" % (command.name.ljust(longest_name_length), command.help_text), relevant_comma…
/external/chromium_org/tools/gn/
Derr.h45 const std::string& help_text = std::string());
50 const std::string& help_text = std::string());
55 const std::string& help_text = std::string());
62 const std::string& help_text() const { return help_text_; } in help_text() function
Dinput_conversion.cc32 std::string help_text = in MakeParseErr() local
38 help_text.append(input); in MakeParseErr()
40 help_text.append("\nThe exact error was:"); in MakeParseErr()
42 Err result(origin, "Script result wasn't a valid value.", help_text); in MakeParseErr()
45 nested.help_text())); in MakeParseErr()
Derr.cc120 const std::string& help_text) in Err() argument
123 help_text_(help_text) { in Err()
134 const std::string& help_text) in Err() argument
137 help_text_(help_text) { in Err()
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.h113 const string& help_text);
126 const string& help_text);
275 string help_text; member
Dcommand_line_interface.cc577 const string& help_text) { in RegisterGenerator() argument
581 info.help_text = help_text; in RegisterGenerator()
588 const string& help_text) { in RegisterGenerator() argument
593 info.help_text = help_text; in RegisterGenerator()
1174 << iter->second.help_text << endl; in PrintHelpText()
/external/grub/docs/
Dhelp2man164 my ($help_text, $version_text) = map {
230 if ($help_text =~ s/^Usage:( +(\S+))(.*)((?:\n(?: {6}\1| *or: +\S).*)*)//m)
265 $_ = "$help_text\n\n$version_text";
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.h113 const string& help_text);
250 string help_text; member
Dcommand_line_interface.cc557 const string& help_text) { in RegisterGenerator() argument
560 info.help_text = help_text; in RegisterGenerator()
1093 << iter->second.help_text << endl; in PrintHelpText()
/external/chromium_org/chrome/browser/ui/gtk/
Dsad_tab_gtk.cc146 base::string16 help_text( in SadTabGtk() local
149 std::string help_prefix_text(UTF16ToUTF8(help_text.substr(0, offset))); in SadTabGtk()
150 std::string help_suffix_text(UTF16ToUTF8(help_text.substr(offset))); in SadTabGtk()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
Dqueries.py47 help_text = "Print the newest crash log for the given process" variable in CrashLog
63 help_text = 'Print the expected result for the given test(s) on the given port(s)' variable in PrintExpectations
155 help_text = 'Prints the baseline locations for given test(s) on the given port(s)' variable in PrintBaselines
Dprettydiff.py35 help_text = "Shows the pretty diff in the default browser" variable in PrettyDiff
Drebaseline.py109help_text = "Copy existing baselines down one level in the baseline order to ensure new baselines … variable in CopyExistingBaselinesInternal
181help_text = "Rebaseline a single test from a buildbot. Only intended for use by other webkit-patch… variable in RebaselineTest
229help_text = "Reshuffles the baselines for the given tests to use as litte space on disk as possibl… variable in OptimizeBaselines
258 help_text = "Analyzes the baselines for the given tests and prints results that are identical." variable in AnalyzeBaselines
482help_text = "Rebaseline based off JSON passed to stdin. Intended to only be called from other scri… variable in RebaselineJson
496 help_text = "Rebaselines the tests indicated in TestExpectations." variable in RebaselineExpectations
544help_text = "Rebaseline tests with results from the build bots. Shows the list of failing tests on… variable in Rebaseline
593help_text = "Rebaselines any NeedsRebaseline lines in TestExpectations that have cycled through al… variable in AutoRebaseline
852 help_text = "Calls webkit-patch auto-rebaseline in a loop." variable in RebaselineOMatic
Dfindusers.py34 help_text = "Find users matching substring" variable in FindUsers
Dflakytests.py36 help_text = "Generate FlakyTests file from the flakiness dashboard" variable in FlakyTests
Dadduserstogroups.py34 help_text = "Add users matching subtring to specified groups" variable in AddUsersToGroups
Dgardenomatic.py32 help_text = "Command for gardening the WebKit tree." variable in GardenOMatic
Dcommitannouncer.py40 help_text = "Start an IRC bot for announcing new git commits." variable in CommitAnnouncerCommand
Drebaselineserver.py52 help_text = __doc__ variable in RebaselineServer
/external/chromium_org/chrome/browser/ui/views/
Dsad_tab_view.cc135 base::string16 help_text( in SadTabView() local
138 views::Label* help_prefix = CreateLabel(help_text.substr(0, offset)); in SadTabView()
139 views::Label* help_suffix = CreateLabel(help_text.substr(offset)); in SadTabView()