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

1 2

  /external/chromium_org/third_party/skia/tools/tests/
run.sh 59 COMMAND="$SKDIFF_BINARY $SKDIFF_ARGS $ACTUAL_OUTPUT_DIR"
60 echo "$COMMAND" >$ACTUAL_OUTPUT_DIR/command_line
61 $COMMAND &>$ACTUAL_OUTPUT_DIR/stdout
116 COMMAND="python bench/check_bench_regressions.py -a 25th -b $PLATFORM -d $RAW_BENCH_DATA_DIR -e $PLATFORM_DIR/expectations.txt -r $REVISION"
117 echo "$COMMAND" >$ACTUAL_OUTPUT_DIR/command_line
119 $COMMAND 2>$ACTUAL_OUTPUT_DIR/stderr
142 COMMAND="python tools/jsondiff.py $ARGS"
143 echo "$COMMAND" >$ACTUAL_OUTPUT_DIR/command_line
144 $COMMAND &>$ACTUAL_OUTPUT_DIR/stdout
204 COMMAND="python tools/test_all.py
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
gtest_env_var_test.py 43 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_env_var_test_')
67 args = [COMMAND]
gtest_color_test.py 44 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_color_test_')
66 p = gtest_test_utils.Subprocess([COMMAND] + args)
gtest_filter_unittest.py 37 environments and command line flags.
93 # The command line flag for specifying the test filters.
96 # The command line flag for including disabled tests.
99 # Command to run the gtest_filter_unittest_ program.
100 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_filter_unittest_')
111 # The command line flag to tell Google Test to output the list of tests it
117 [COMMAND, LIST_TESTS_FLAG]).output
181 return gtest_test_utils.Subprocess([COMMAND] + (args or []),
188 p = gtest_test_utils.Subprocess([COMMAND] + (args or []), env=environ)
215 def RunWithSharding(total_shards, shard_index, command)
    [all...]
gtest_shuffle_test.py 38 # Command to run the gtest_shuffle_test_ program.
39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_shuffle_test_')
84 return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy).output
92 args: command line flags to pass to gtest_shuffle_test_
  /external/gtest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
gtest_env_var_test.py 43 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_env_var_test_')
67 args = [COMMAND]
gtest_color_test.py 44 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_color_test_')
66 p = gtest_test_utils.Subprocess([COMMAND] + args)
gtest_filter_unittest.py 37 environments and command line flags.
93 # The command line flag for specifying the test filters.
96 # The command line flag for including disabled tests.
99 # Command to run the gtest_filter_unittest_ program.
100 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_filter_unittest_')
111 # The command line flag to tell Google Test to output the list of tests it
117 [COMMAND, LIST_TESTS_FLAG]).output
181 return gtest_test_utils.Subprocess([COMMAND] + (args or []),
188 p = gtest_test_utils.Subprocess([COMMAND] + (args or []), env=environ)
215 def RunWithSharding(total_shards, shard_index, command)
    [all...]
gtest_shuffle_test.py 38 # Command to run the gtest_shuffle_test_ program.
39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_shuffle_test_')
84 return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy).output
92 args: command line flags to pass to gtest_shuffle_test_
  /external/chromium_org/third_party/skia/tools/
coverage.sh 11 COMMAND=$@
20 # Generate a zero-baseline so files not covered by $COMMAND will still show up in the report.
25 out/Coverage/$COMMAND
  /external/chromium_org/third_party/skia/gm/tests/
run.sh 47 # Run a command, and validate that it succeeds (returns 0).
49 COMMAND="$1"
51 echo "assert_passes $COMMAND ..."
52 $COMMAND
54 echo "This command was supposed to pass, but failed: [$COMMAND]"
59 # Run a command, and validate that it fails (returns nonzero).
61 COMMAND="$1"
63 echo "assert_fails $COMMAND ..."
64 $COMMAND
    [all...]
  /external/libmtp/
hotplug.sh.in 105 COMMAND=`which grep 2> /dev/null`
106 if [ "x${COMMAND}" = "x" ];
111 COMMAND=`which awk 2> /dev/null`
112 if [ "x${COMMAND}" = "x" ];
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 198 case 1: state = State.COMMAND; break;
212 case 1: state = State.COMMAND; break;
226 case 1: state = State.COMMAND; break;
240 case 1: state = State.COMMAND; break;
254 case 1: state = State.COMMAND; break;
268 case 1: state = State.COMMAND; break;
283 case 1: state = State.COMMAND; break;
297 case 1: state = State.COMMAND; break;
311 case 1: state = State.COMMAND; break;
325 case 1: state = State.COMMAND; break
    [all...]
  /external/libedit/examples/
fileman.c 55 } COMMAND;
57 COMMAND commands[] = {
75 COMMAND *find_command ();
142 /* Execute a command line. */
147 COMMAND *command; local
150 /* Isolate the command word. */
162 command = find_command (word);
164 if (!command)
166 fprintf (stderr, "%s: No such command for FileMan.\n", word)
    [all...]
  /external/chromium_org/testing/gtest/
CMakeLists.txt 28 if (COMMAND pre_project_set_up_hermetic_build)
45 if (COMMAND set_up_hermetic_build)
  /external/jpeg/
ltmain.sh 76 # Parse our command line options once, thoroughly.
224 # Get the compilation command and the source file.
232 # Accept any command-line options.
304 $echo "$modename: you must specify a compilation command" 1>&2
741 # Finalize command for both is simple: just hardcode it.
    [all...]
  /external/mksh/src/
histrap.c 163 /* Substitute and execute command */
320 ret = command(editor ? editor : TFCEDIT_dollaru, 0);
409 ret = command(cmd, 0);
447 /* the -1 is to avoid the current fc command */
456 /* Return a pointer to the newest command in the history */
467 /* Return a pointer to the oldest command in the history */
607 /* do not save command in history but possibly sync */
629 * save command in history
660 /* remove oldest command */
689 * Each command i
    [all...]
  /external/chromium_org/chrome/installer/mac/
pkg-dmg 195 1 - Print error messages and command invocations.
196 2 - Print everything, including command output.
280 sub command(@);
555 if(command($gConfig{'cmd_mkdir'}, @tempsToMake) != 0) {
570 if(command($gConfig{'cmd_rsync'}, '-aC', '--include', '*.so',
585 if(command($gConfig{'cmd_mkdir'}, '-p', @tempDirsToMake) != 0) {
601 if(command($gConfig{'cmd_rsync'}, '-aC', '--include', '*.so',
610 (command($gConfig{'cmd_SetFile'}, '-a', 'C', $tempRoot) != 0)) {
615 if(command($gConfig{'cmd_chmod'}, '-R', 'a+rX,a-st,u+w,go-w',
647 (command($gConfig{'cmd_hdiutil'}, 'unflatten', $targetImage)) != 0)
723 sub command(@) { subroutine
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_osinst.c 56 ** Then, if the log file is named "vfs.log", the following SQL command:
1116 Tcl_WrongNumArgs(interp, 1, objv, "SUB-COMMAND ...");
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
key_sequence.js 18 * a ChromeVox command.
21 * COMMAND KEYS SPECIFIED IN A KEYMAP:
25 * - Whether or not the ChromeVox modifier key is required with the command.
  /external/chromium_org/sdch/open-vcdiff/
ltmain.sh 256 # fails when set -e is in force, so we need another command to
402 # word splitting, command substitution and and variable
430 # word splitting and command substitution for a subsequent eval.
601 # If this variable is set in any of the actions, the command in it
974 # FAIL_CMD may read-access the current command in variable CMD!
1006 # if one wasn't chosen via the "--tag" command line option.
1008 # command doesn't match the default compiler.
1020 # Blanks in the command may have been stripped by the calling shell,
1038 # The compiler in the base compile command matches
1048 # was found and let the user know that the "--tag" command
    [all...]
  /external/chromium_org/third_party/libxml/src/
ltmain.sh 256 # fails when set -e is in force, so we need another command to
402 # word splitting, command substitution and and variable
430 # word splitting and command substitution for a subsequent eval.
601 # If this variable is set in any of the actions, the command in it
974 # FAIL_CMD may read-access the current command in variable CMD!
1006 # if one wasn't chosen via the "--tag" command line option.
1008 # command doesn't match the default compiler.
1020 # Blanks in the command may have been stripped by the calling shell,
1038 # The compiler in the base compile command matches
1048 # was found and let the user know that the "--tag" command
    [all...]
  /external/chromium_org/third_party/sqlite/src/
ltmain.sh 256 # fails when set -e is in force, so we need another command to
402 # word splitting, command substitution and and variable
430 # word splitting and command substitution for a subsequent eval.
608 # If this variable is set in any of the actions, the command in it
981 # FAIL_CMD may read-access the current command in variable CMD!
1013 # if one wasn't chosen via the "--tag" command line option.
1015 # command doesn't match the default compiler.
1027 # Blanks in the command may have been stripped by the calling shell,
1045 # The compiler in the base compile command matches
1055 # was found and let the user know that the "--tag" command
    [all...]

Completed in 438 milliseconds

1 2