HomeSort by relevance Sort by last modified time
    Searched defs:Help (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/toolchain-utils/crosperf/
help.py 2 """Module to print help message."""
13 class Help(object):
14 """The help class."""
  /test/framework/harnesses/host_controller/command_processor/
command_exit.py 43 def Help(self):
44 """Prints help message for exit command."""
command_config.py 143 help="Update build info")
147 help="session ID only required for 'stop' update command")
152 help="Interval (seconds) to repeat build update.")
157 help="Whether it's for prod")
161 help="Branch to grab the artifact from.")
165 help="a comma-separate list of build target product(s).")
169 help="Partner Android Build account_id to use.")
174 help='Method for fetching')
222 def Help(self):
223 base_command_processor.BaseCommandProcessor.Help(self
    [all...]
command_list.py 57 "--host", type=int, help="The index of the host.")
61 help="The type of the shown objects.")
79 def Help(self):
80 base_command_processor.BaseCommandProcessor.Help(self)
base_command_processor.py 76 '''Internal function that will call subclass' Help function.'''
77 self.Help()
79 def Help(self):
80 '''Help method to print help informations.'''
  /external/python/cpython2/Tools/nuget/
build.bat 13 if "%~1" EQU "-h" goto Help
56 :Help
  /external/python/cpython3/Tools/nuget/
build.bat 13 if "%~1" EQU "-h" goto Help
48 :Help
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
command_utils.h 34 Help,
  /packages/inputmethods/LatinIME/native/dicttoolkit/tests/utils/
command_utils_test.cpp 32 EXPECT_EQ(CommandUtils::getCommandType("help"), CommandType::Help);
  /device/linaro/bootloader/edk2/DuetPkg/
PostBuild.bat 32 if /I "%1"=="-h" goto Help
40 if "%TARGET_ARCH%"=="" goto Help
41 if "%TARGET%"=="" goto Help
42 if "%TOOL_CHAIN_TAG%"=="" goto Help
81 :Help
CreateBootDisk.bat 24 if "%1"=="" goto Help
25 if "%2"=="" goto Help
26 if "%3"=="" goto Help
43 goto Help
140 goto Help
142 :Help
  /external/python/cpython3/Tools/msi/
build.bat 14 if "%~1" EQU "-h" goto Help
71 :Help
testrelease.bat 14 if "%1" EQU "-h" goto Help
105 :Help
113 echo -h Display this help information
uploadrelease.bat 16 if "%1" EQU "-h" goto Help
65 :Help
75 echo -h Display this help information
buildrelease.bat 44 if "%1" EQU "-h" goto Help
204 :Help
222 echo -h Display this help information
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Help.java 26 * Handles app help.
28 public class Help {
33 public Help(Context context, Config config) {
46 inflater.inflate(R.menu.help, menu);
  /prebuilts/go/darwin-x86/src/cmd/go/internal/help/
help.go 5 // Package help implements the ``go help'' command.
6 package help package
22 // Help implements the 'help' command.
23 func Help(args []string) {
26 // not exit 2: succeeded at 'go help'.
30 fmt.Fprintf(os.Stderr, "usage: go help command\n\nToo many arguments given.\n")
31 os.Exit(2) // failed at 'go help'
36 // 'go help documentation' generates doc.go
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/help/
help.go 5 // Package help implements the ``go help'' command.
6 package help package
22 // Help implements the 'help' command.
23 func Help(args []string) {
26 // not exit 2: succeeded at 'go help'.
30 fmt.Fprintf(os.Stderr, "usage: go help command\n\nToo many arguments given.\n")
31 os.Exit(2) // failed at 'go help'
36 // 'go help documentation' generates doc.go
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
EblAddCommand.h 42 CHAR8 *Help;
  /packages/apps/Dialer/java/com/android/dialer/commandline/impl/
Help.java 34 public class Help implements Command {
45 return "help";
51 Help(@ApplicationContext Context context) {
  /external/llvm/lib/MC/
SubtargetFeature.cpp 93 /// Display help for feature choices.
95 static void Help(ArrayRef<SubtargetFeatureKV> CPUTable,
240 // Check if help is needed
241 if (CPU == "help")
242 Help(CPUTable, FeatureTable);
267 // Check for help
268 if (Feature == "+help")
269 Help(CPUTable, FeatureTable);
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 93 // Check the help text.
94 std::string Help;
95 raw_string_ostream RSO(Help);
97 EXPECT_NE(std::string::npos, Help.find("-A"));
  /external/swiftshader/third_party/LLVM/lib/MC/
SubtargetFeature.cpp 146 /// Display help for feature choices.
148 static void Help(const SubtargetFeatureKV *CPUTable, size_t CPUTableSize,
281 // Check if help is needed
282 if (CPU == "help")
283 Help(CPUTable, CPUTableSize, FeatureTable, FeatureTableSize);
310 // Check for help
311 if (Feature == "+help")
312 Help(CPUTable, CPUTableSize, FeatureTable, FeatureTableSize);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrCompiler.cpp 97 if ((stricmp(Argv[Index], "-h") == 0) || (stricmp(Argv[Index], "--help") == 0)) {
576 CONST CHAR8 *Help[] = {
584 " -h, --help prints this help",
607 for (Index = 0; Help[Index] != NULL; Index++) {
608 fprintf (stdout, "%s\n", Help[Index]);
618 CONST CHAR8 *Help[] = {
622 for (Index = 0; Help[Index] != NULL; Index++) {
623 fprintf (stdout, "%s\n", Help[Index]);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Common/
EdkIIGlueDefinitionChangesBase.h 60 STRING_REF Help; // The string Token for the context-help

Completed in 463 milliseconds

1 2 3 4