HomeSort by relevance Sort by last modified time
    Searched refs:HELP (Results 1 - 25 of 58) sorted by null

1 2 3

  /ndk/tests/
check-release.sh 35 HELP=
43 --help|-h|-?)
44 HELP=true
53 panic "Unknown option '$opt'. See --help for list of valid ones."
59 panic "Only one parameter (ndk directory) is supported. See --help."
65 if [ "$HELP" ]; then
73 echo " --help|-h|-? Print this message."
97 panic "Please specify an NDK installation directory, or use --package=<file> option. See --help."
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 63 qw(-buildfile -debug -emacs -f -find -help -listener -logfile
88 open( HELP, "$antCmd -projecthelp -f '$buildFile'|" ) || return();
90 while( <HELP> ) {
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
HelpCommandHandlerTest.java 39 final String RESPONSE_DATA = "help for ABC...";
46 final Command COMMAND1 = new Command(CommandNames.HELP, EMPTY);
47 final Command COMMAND2 = new Command(CommandNames.HELP, array("abc"));
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
HelpCommandHandlerTest.java 39 final String RESPONSE_DATA = "help for ABC...";
46 final Command COMMAND1 = new Command(CommandNames.HELP, EMPTY);
47 final Command COMMAND2 = new Command(CommandNames.HELP, array("abc"));
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Main.java 26 private static final String HELP;
30 HELP = readIntoString(Main.class.getResourceAsStream("help.txt"));
50 MainUtil.runMain(new Main(), args, "help");
53 public void help() { method in class:Main
54 System.err.print(HELP);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
CommandNames.java 35 public static final String HELP = "HELP";
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
HelpCommandHandlerTest.groovy 37 assertSessionReply(ReplyCodes.HELP_OK, ['help', '_abc'])
43 assertSessionReply(ReplyCodes.HELP_OK, ['help', 'abcdef'])
49 assertSessionReply(ReplyCodes.HELP_OK, ['help', 'default'])
57 assertSessionReply(ReplyCodes.HELP_OK, ['help.noHelpTextDefined', 'unrecognized'])
69 return new Command(CommandNames.HELP, [])
  /frameworks/compile/libbcc/tests/debuginfo/
build_test_apk.sh 19 HELP=no
66 --help|-h|-\?)
67 HELP=yes
109 echo "ERROR: Unknown option '$opt', use --help for list of valid ones."
123 if [ "$HELP" = "yes" ] ; then
139 echo " --help|-h|-? Print this help"
  /external/skia/tools/skpdiff/
generate_pmetric_tables.py 16 HELP = '// To regenerate SkPMetricUtil_generated.h, simply run ./generate_pmetric_tables.py'
133 print(HELP, file=stream)
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
CommandNames.java 35 public static final String HELP = "HELP";
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 6 # type perl symshift.pl -help to get help
68 "help" => \$HELP
72 ## Help
75 $help = <<EOHELP
79 $0 -help
81 print this help
108 die $help if $HELP;
    [all...]
genlingware.pl 8 # type perl genlingware.pl -help to get help
76 "help" => \$HELP
80 ## Help
83 $help = <<EOHELP
88 $0 -help
90 print this help
104 die $help if $HELP;
    [all...]
  /ndk/tests/standalone/
run.sh 51 HELP=
65 --help|-h|-?)
66 HELP=true
87 panic "Unknown option '$opt'. See --help for list of valid ones."
95 if [ "$HELP" ]; then
130 echo " --help|-h|-? Print this message."
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtDrawingStyle.java 119 * The style definition corresponding to {@link DrawingStyle#HELP}
121 HELP(new RGB(0xFF, 0xFF, 0xFF), 255, new RGB(0x00, 0x00, 0x00), 128, 1, SWT.LINE_SOLID),
279 case HELP:
280 return HELP;
SelectionOverlay.java 129 gcWrapper.useStyle(DrawingStyle.HELP);
136 // Compute the location to display the help. This is done in
  /external/google-breakpad/android/
run-checks.sh 52 HELP=
68 --help|-h|-?) HELP=TRUE;;
69 --help-all) HELP_ALL=true;;
77 -*) panic "Invalid option '$opt', see --help for details.";;
78 *) panic "This script doesn't take any parameters. See --help for details."
83 if [ "$HELP" -o "$HELP_ALL" ]; then
122 Finally, use --verbose to increase the verbosity level, this will help
151 --help|-h|-? Display this message.
152 --help-all Display extended help
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/
StubFtpServer.java 111 setCommandHandler(CommandNames.HELP, new HelpCommandHandler());
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 99 // Modify HELP CommandHandler to return a predefined help message
100 final String HELP = "help message";
101 HelpCommandHandler helpCommandHandler = (HelpCommandHandler) stubFtpServer.getCommandHandler(CommandNames.HELP);
102 helpCommandHandler.setHelpMessage(HELP);
106 // HELP
107 String help = ftpClient.listHelp(); local
108 assertTrue("Wrong response", help.indexOf(HELP) != -1);
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 114 * Test help (HELP)
117 // Modify HELP CommandHandler to return a predefined help message
118 final String HELP = "help message";
119 HelpCommandHandler helpCommandHandler = (HelpCommandHandler) stubFtpServer.getCommandHandler(CommandNames.HELP);
120 helpCommandHandler.setHelpMessage(HELP);
124 // HELP
125 String help = ftpClient.listHelp(); local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
FakeFtpServer.java 125 * The <code>helpText</code> property specifies a <i>Map</i> of help text replies sent by the
126 * <code>HELP</code> command. The keys in that <i>Map</i> correspond to the command names passed as
127 * parameters to the <code>HELP</code> command. An entry with the key of an empty string ("") indicates the
128 * text used as the default help text when no command name parameter is specified for the <code>HELP</code> command.
183 setCommandHandler(CommandNames.HELP, new HelpCommandHandler());
244 * Return the help text for a command or the default help text if no command name is specified
246 * @param name - the command name; may be empty or null to indicate a request for the default help text
247 * @return the help text for the named command or the default help text if no name is supplied
    [all...]
  /external/icu/icu4c/source/tools/gensprep/
gensprep.c 80 HELP,
108 "\t-h or -? or --help print this usage text\n"
164 if(argc<0 || options[HELP].doesOccur || options[HELP_QUESTION_MARK].doesOccur) {
182 /* print the help message */
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java 94 // this.stream.print("<a href=\"help.html\"><img hspace=\"10\" border=\"0\" src=\""+Utils.LIGHT+"\" title=\"Some tips on fingerprints\"/></a>\n");
97 this.stream.print("<img hspace=\"10\" border=\"0\" src=\""+Utils.LIGHT+"\"><a href=\""+Utils.HELP+"\">Help on fingerprints</a>\n");
Utils.java 77 public final static String HELP = "doc/help.html";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_argparse.py 439 failures = ['--bar', '-fbar', '-b B', 'B', '-f', '--bar B', '-baz', '-h', '--help', '+h', '::help', '/help']
451 """When ``-`` not in prefix_chars, default operators created for help
3038 help=' oddly \\n' variable in class:TestHelpReformatting
3492 help='x %(prog)s %(default)s %(type)s %%'), variable in class:TestHelpVariableExpansion
3494 help='y %(prog)s %(default)s %(const)s'), variable in class:TestHelpVariableExpansion
3496 help='foo %(prog)s %(default)s %(choices)s'), variable in class:TestHelpVariableExpansion
3498 help='bar %(prog)s %(default)s %(dest)s'), variable in class:TestHelpVariableExpansion
3558 help = usage variable in class:TestHelpVariableExpansionNoArguments
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_argparse.py 439 failures = ['--bar', '-fbar', '-b B', 'B', '-f', '--bar B', '-baz', '-h', '--help', '+h', '::help', '/help']
451 """When ``-`` not in prefix_chars, default operators created for help
3038 help=' oddly \\n' variable in class:TestHelpReformatting
3492 help='x %(prog)s %(default)s %(type)s %%'), variable in class:TestHelpVariableExpansion
3494 help='y %(prog)s %(default)s %(const)s'), variable in class:TestHelpVariableExpansion
3496 help='foo %(prog)s %(default)s %(choices)s'), variable in class:TestHelpVariableExpansion
3498 help='bar %(prog)s %(default)s %(dest)s'), variable in class:TestHelpVariableExpansion
3558 help = usage variable in class:TestHelpVariableExpansionNoArguments
    [all...]

Completed in 1558 milliseconds

1 2 3