HomeSort by relevance Sort by last modified time
    Searched full:help (Results 1 - 25 of 9541) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencv3/doc/pattern_tools/
README.txt 2 python gen_pattern.py --help
  /external/valgrind/none/tests/
cmdline1.vgtest 1 vgopts: --help --tool=none
cmdline2.vgtest 1 vgopts: --help-debug --tool=none
cmdline3.stderr.exp 2 valgrind: Use --help for more information.
cmdline4.stderr.exp 2 valgrind: Use --help for more information or consult the user manual.
  /external/icu/icu4c/source/samples/uresb/
root.txt 27 udata { "ROOT udata help topic" }
28 resourcebundles { "ROOT resource bundle help topic" }
29 collation { "ROOT collation help topic" }
30 breakit { "ROOT break iterator help topic" }
31 translit { "ROOT transliteration help topic" }
32 unicode { "ROOT unicode help topic" }
33 format { "ROOT format help topic" }
sr.txt 29 udata { "This is udata help topic" }
30 resourcebundles { "This is resource bundle help topic" }
31 collation { "This is collation help topic" }
32 breakit { "This is break iterator help topic" }
33 translit { "This is transliteration help topic" }
34 unicode { "This is unicode help topic" }
35 format { "This is format help topic" }
en.txt 28 udata { "This is udata help topic" }
29 resourcebundles { "This is resource bundle help topic" }
30 collation { "This is collation help topic" }
31 breakit { "This is break iterator help topic" }
32 translit { "This is transliteration help topic" }
33 unicode { "This is unicode help topic" }
34 format { "This is format help topic" }
  /external/clang/test/Driver/
immediate-options.c 1 // RUN: %clang --help | FileCheck %s -check-prefix=HELP
2 // HELP: isystem
3 // HELP-NOT: ast-dump
4 // HELP-NOT: driver-mode
6 // RUN: %clang --help-hidden | FileCheck %s -check-prefix=HELP-HIDDEN
7 // HELP-HIDDEN: driver-mode
  /external/eigen/
signature_of_eigen3_matrix_library 1 This file is just there as a signature to help identify directories containing Eigen3. When writing a script looking for Eigen3, just look for this file. This is especially useful to help disambiguate with Eigen2...
  /external/valgrind/gdbserver_tests/
mchelp.stderrB.exp 1 sending command help to pid ....
2 sending command help debug to pid ....
  /frameworks/base/libs/hwui/tests/macrobench/
how_to_run.txt 5 Pass --help to get help
  /external/curl/tests/data/
test928 5 HELP
14 214 HELO EHLO RCPT DATA RSET MAIL VRFY EXPN QUIT HELP
25 SMTP HELP
37 HELP
test1027 4 --help
20 curl --help
23 --help
25 # Search for these two sentinel lines in the help output; if they are found,
26 # then chances are good the entire help is there.
  /frameworks/base/core/java/android/net/
package.html 3 Classes that help with network access, beyond the normal java.net.* APIs.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
  /external/opencv3/samples/python2/
opencv_version.py 14 elif ("--help" == param):
16 print "\t--help\n\t\tprint this help"
  /external/toybox/toys/other/
help.c 0 /* help.c - Show help for toybox commands
7 USE_HELP(NEWTOY(help, ""USE_HELP_EXTRAS("ah"), TOYFLAG_BIN))
9 config HELP
10 bool "help"
13 help
14 usage: help [command]
20 bool "help -ah"
23 depends on HELP
24 help
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
help_provider.py 15 """Module defining help types and providers for gsutil commands."""
37 """Interface for providing help."""
42 # Name of command or auxiliary help info for which this help applies.
44 # List of help name aliases.
46 # Type of help.
48 # One line summary of this help.
50 # The full help text.
52 # Help text for subcommands of the command's help being specified
    [all...]
  /external/zlib/src/old/
README 3 (Volunteers are encouraged to help clean this up. Thanks.)
  /external/iproute2/man/man8/
tipc.8 36 .BR "\-h" , " --help"
37 Show help about last given command. For example
38 .B tipc bearer --help
39 will show bearer help and
40 .B tipc --help
41 will show general help. The position of the option in the string is irrelevant.
73 If no arguments are given a command typically shows its help text. The explicit
74 help option
77 .B --help
78 can occur anywhere among the arguments and will show help for the last vali
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
help.py 15 """Implementation of gsutil help command."""
36 gsutil help [command or topic]
47 gsutil help
50 help is available.
54 gsutil help command or topic
56 will provide help about the specified command or topic.
60 gsutil help command sub-command
62 will provide help about the specified sub-command. For example, running:
64 gsutil help acl set
66 will provide help about the "set" subcommand of the "acl" command
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
HelpCommandHandler.java 27 * CommandHandler for the HELP command. Handler logic:
30 * help text configured for that command (or empty if none)</li>
31 * <li>Otherwise, reply with 214 along with the configured default help text that has been configured
35 * The help text is configured within the {@link org.mockftpserver.fake.FakeFtpServer}.
47 String help = getServerConfiguration().getHelpText(key); local
48 if (help == null) {
49 sendReply(session, ReplyCodes.HELP_OK, "help.noHelpTextDefined", list(key));
51 sendReply(session, ReplyCodes.HELP_OK, "help", list(help));
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_help.py 22 """Unit tests for help command."""
30 """Help command unit test suite."""
33 stdout = self.RunCommand('help', return_stdout=True)
37 stdout = self.RunCommand('help', ['web', 'set'], return_stdout=True)
42 stdout = self.RunCommand('help', ['web', 'asdf'], return_stdout=True)
43 self.assertIn('help about one of the subcommands', stdout)
46 stdout = self.RunCommand('help', ['ls', 'asdf'], return_stdout=True)
50 stdout = self.RunCommand('help', ['ls'], return_stdout=True)
54 stdout = self.RunCommand('ls', ['--help'], return_stdout=True)
58 stdout = self.RunCommand('web', ['set', '--help'], return_stdout=True
    [all...]
  /external/clang/test/Index/
recover-bad-code-rdar_7487294.c 9 help
12 // CHECK: 9:3: error: use of undeclared identifier 'help'
13 // CHECK: help

Completed in 1171 milliseconds

1 2 3 4 5 6 7 8 91011>>