Searched refs:output (Results 76 - 92 of 92) sorted by relevance

1234

/gem5/ext/googletest/googletest/test/
H A Dgtest_shuffle_test.py79 """Runs the test program and returns its output."""
84 return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy).output
/gem5/src/arch/arm/tracers/
H A Dtarmac_record.cc385 std::ostream &outs = Trace::output();
H A Dtarmac_parser.cc634 ostream &outs = Trace::output();
748 ostream &outs = Trace::output();
774 ostream &outs = Trace::output();
/gem5/src/base/
H A Dremote_gdb.hh309 * @param[out] output set to the decoded XML
313 std::string &output);
H A Dremote_gdb.cc1021 const std::string &annex, std::string &output)
1020 getXferFeaturesRead( const std::string &annex, std::string &output) argument
/gem5/tests/
H A Dtests.py72 parser.add_argument("--output", "-o",
74 help="Test result output file")
80 "fout" : args.output,
152 The test results can be stored in multiple different output
154 about output formatting.""")
171 help="Skip output diffing stage")
215 Reformat the pickled output from one or more test runs. This
216 command is typically used with the output from a single test
220 The 'text' format is a verbose output format that provides
221 information about individual test units and the output fro
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h95 const char kOutputFlag[] = "output";
115 // Returns true iff Google Test should use colors in the output.
175 output_ = GTEST_FLAG(output);
196 GTEST_FLAG(output) = output_;
244 // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output
377 // Returns the output format, or "" for normal printed output.
380 // Returns the absolute path of the requested output file, or the
771 // Initializes the event listener performing XML output as specified by
H A Dgtest-port.cc102 T output = 0; local
103 file >> output; local
104 return output;
893 // Formats a file location for compiler-independent XML output.
932 // Object that captures an output stream (stdout/stderr).
1006 // Name of the temporary file holding the stderr output.
1017 // Starts capturing an output stream (stdout/stderr).
1026 // Stops capturing the output stream and returns the captured string.
1239 // As a special case for the 'output' flag, if GTEST_OUTPUT is not
1249 if (strcmp(flag, "output")
[all...]
H A Dgtest.cc170 // The default output file for XML output.
221 "Whether to use colors in the output. Valid values: yes, no, "
222 "and auto. 'auto' means to use colors if the output is "
239 output,
240 internal::StringFromGTestEnv("output", ""),
242 "by a colon and an output file name or directory. A directory "
245 "If a directory is specified, output files will be created "
254 " should display elapsed time in text output.");
413 // Returns the output forma
3524 std::string output; local
[all...]
/gem5/src/cpu/minor/
H A Dbuffers.hh230 /** forward/backwardDelay specify the delay from input to output in each
242 /** Encapsulate wires on either input or output of the latch.
274 /** An interface to just the output of the buffer */
275 Output output() { return Output(buffer.getWire(-delay)); } function in class:Minor::Latch
294 /** Wire at the output end of the pipeline (for convenience) */
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py543 """Executes a command and returns the output from stdout and the return code.
547 print_output: If True, the output is printed to stdout.
552 Tuple (output, return code)
565 output = "".join(output_array)
567 output = p.stdout.read()
574 return output, p.returncode
584 ErrorExit("No output from %s" % command)
632 the contents of the new file, since the diff output won't contain
734 # Cache output from "svn list -r REVNO dirname".
787 ErrorExit("Can't find URL in output fro
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py543 """Executes a command and returns the output from stdout and the return code.
547 print_output: If True, the output is printed to stdout.
552 Tuple (output, return code)
565 output = "".join(output_array)
567 output = p.stdout.read()
574 return output, p.returncode
584 ErrorExit("No output from %s" % command)
632 the contents of the new file, since the diff output won't contain
734 # Cache output from "svn list -r REVNO dirname".
787 ErrorExit("Can't find URL in output fro
[all...]
/gem5/src/sim/
H A Dprocess.cc105 fds(make_shared<FDArray>(params->input, params->output, params->errout)),
H A Dsyscall_emul.hh676 /// do line or block buffering. We always claim that output fds are
862 * C++ routines to provide output back to userspace.
1544 pp->output.assign("stdout");
2180 pp->output.assign("cout");
/gem5/src/python/m5/
H A Dmain.py89 help="Set the output directory to DIR [Default: %default]")
119 help="Sets the output file for statistics [Default: %default]")
127 help="Dump configuration output file [Default: %default]")
129 help="Create JSON output of the configuration [Default: %default]")
144 help="Sets the flags for debug output (-FLAG disables a flag)")
146 help="Start debug output at TICK")
148 help="End debug output at TICK")
150 help="Sets the output file for debug [Default: %default]")
356 # tell C++ about output directory
418 trace.output(option
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h1400 // Figure out the output size, and make sure all input arrays conform (i.e. are either size 1 or
1525 /* Determine dimensions parameters of output array */
1584 buffer_info output = output_array.request();
1585 multi_array_iterator<NVectorized> input_iter(buffers, output.shape);
1587 for (array_iterator<Return> iter = array_begin<Return>(output), end = array_end<Return>(output);
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h97 // This flag enables using colors in terminal output. Available values are
111 // in addition to its normal textual output.
112 GTEST_DECLARE_string_(output);
310 // Allows streaming basic output manipulators such as endl or flush into
415 // moment its destructor finishes) will be output in XML as attributes of
421 // Test) will be output as attributes of the <testsuites> element.
483 // output as a key/value string pair.
1080 // output. Can be removed from the listeners list to shut down default
1081 // console output. Note that removing this object from the listener list
1088 // Returns the standard listener responsible for the default XML output
[all...]

Completed in 77 milliseconds

1234