HomeSort by relevance Sort by last modified time
    Searched defs:Output (Results 26 - 50 of 219) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/go/darwin-x86/src/log/
log.go 6 // with methods for formatting output. It also has a predefined 'standard'
11 // Every log message is output on a separate line: if the message being
47 // output to an io.Writer. Each logging operation makes a single call to
54 out io.Writer // destination for output
66 // SetOutput sets the output destination for the logger.
139 // Output writes the output for a logging event. The string s contains
145 func (l *Logger) Output(calldepth int, s string) error {
172 // Printf calls l.Output to print to the logger.
175 l.Output(2, fmt.Sprintf(format, v...)
    [all...]
  /prebuilts/go/linux-x86/src/log/
log.go 6 // with methods for formatting output. It also has a predefined 'standard'
11 // Every log message is output on a separate line: if the message being
47 // output to an io.Writer. Each logging operation makes a single call to
54 out io.Writer // destination for output
66 // SetOutput sets the output destination for the logger.
139 // Output writes the output for a logging event. The string s contains
145 func (l *Logger) Output(calldepth int, s string) error {
172 // Printf calls l.Output to print to the logger.
175 l.Output(2, fmt.Sprintf(format, v...)
    [all...]
  /tools/repohooks/
pre-upload.py 53 class Output(object):
63 """Create a new Output object for a specified project.
124 error output if an error occurred, otherwise None
213 proj_dirs = result.output.split()
252 output = Output(project_name, len(hooks))
270 output.commit_start(commit=commit, commit_summary=commit_summary)
273 output.hook_start(name)
278 output.hook_error(name, error)
287 output.finish(
    [all...]
  /external/v8/src/debug/
liveedit.h 199 class Output {
206 virtual ~Output() {}
211 Output* result_writer);
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_utils.py 218 class Output:
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 34 unsigned Output;
  /external/llvm/unittests/Support/
CommandLineTest.cpp 172 const char *const Output[], size_t OutputSize) {
180 EXPECT_STREQ(Output[I], Actual[I]);
188 const char *const Output[] = {
191 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
192 array_lengthof(Output));
198 const char *const Output[] = { "a\\b", "c\\\\d", "e\\f g", "h\"i", "j\\\"k",
200 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
201 array_lengthof(Output));
  /external/skia/src/gpu/
GrOpList.h 108 static void Output(GrOpList* dt, int /* index */) {
137 // 'this' GrOpList relies on the output of the GrOpLists in 'fDependencies'
  /external/skia/tools/
sk_tool_utils.h 164 // This node should've been output after all the nodes on which it depends
177 static void Output(TopoTestNode* node, int outputPos) {
  /external/v8/tools/unittests/
run_perf_test.py 82 Output = namedtuple("Output", "stdout, stderr, timed_out")
119 # Fake output for each test run.
120 test_outputs = [Output(stdout=arg,
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 72 // SectionMap::Output
74 SectionMap::Output::Output(const std::string& pName)
95 SectionMap::Output::Output(const OutputSectDesc& pOutputDesc)
107 bool SectionMap::Output::hasContent() const {
111 SectionMap::Output::const_dot_iterator
112 SectionMap::Output::find_first_explicit_dot() const {
120 SectionMap::Output::dot_iterator SectionMap::Output::find_first_explicit_dot()
244 Output* output = new Output(pOutputSection); local
280 Output* output = new Output(pOutputDesc); local
290 Output* output = new Output(pSection->name()); local
    [all...]
  /prebuilts/go/darwin-x86/src/os/exec/
exec.go 41 // A Cmd cannot be reused after calling its Run, Output or CombinedOutput
77 // Stdout and Stderr specify the process's standard output and error.
88 // new process. It does not include standard input, standard output, or
393 // Stderr holds a subset of the standard error output from the
394 // Cmd.Output method if standard error was not otherwise being
397 // If the error output is long, Stderr may contain only a prefix
398 // and suffix of the output, with the middle replaced with
459 // Output runs the command and returns its standard output.
461 // If c.Stderr was nil, Output populates ExitError.Stderr
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
exec.go 41 // A Cmd cannot be reused after calling its Run, Output or CombinedOutput
77 // Stdout and Stderr specify the process's standard output and error.
88 // new process. It does not include standard input, standard output, or
393 // Stderr holds a subset of the standard error output from the
394 // Cmd.Output method if standard error was not otherwise being
397 // If the error output is long, Stderr may contain only a prefix
398 // and suffix of the output, with the middle replaced with
459 // Output runs the command and returns its standard output.
461 // If c.Stderr was nil, Output populates ExitError.Stderr
    [all...]
  /external/llvm/lib/Support/
YAMLTraits.cpp 396 // Output
399 Output::Output(raw_ostream &yout, void *context, int WrapColumn)
412 Output::~Output() {
415 bool Output::outputting() {
419 void Output::beginMapping() {
424 bool Output::mapTag(StringRef Tag, bool Use) {
435 this->output(" ");
437 this->output(Tag)
672 void Output::output(StringRef s) { function in class:Output
752 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
767 void ScalarTraits<StringRef>::output(const StringRef &Val, void *, function in class:ScalarTraits
778 void ScalarTraits<std::string>::output(const std::string &Val, void *, function in class:ScalarTraits
789 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, function in class:ScalarTraits
806 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, function in class:ScalarTraits
822 void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *, function in class:ScalarTraits
838 void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *, function in class:ScalarTraits
852 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
868 void ScalarTraits<int16_t>::output(const int16_t &Val, void *, function in class:ScalarTraits
883 void ScalarTraits<int32_t>::output(const int32_t &Val, void *, function in class:ScalarTraits
898 void ScalarTraits<int64_t>::output(const int64_t &Val, void *, function in class:ScalarTraits
911 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
924 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
937 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
952 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
967 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
982 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 22 * Generate fancy output.
24 public class Output {
46 throw new RuntimeException("unknown output format");
66 throw new RuntimeException("unknown output format");
78 throw new RuntimeException("unknown output format");
146 * Prints the output in XML format.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
luac.c 26 #define OUTPUT PROGNAME ".out" /* default output file */
31 static char Output[]={ OUTPUT }; /* default output file name */
32 static const char* output=Output; /* actual output file name */ variable
43 fprintf(stderr,"%s: cannot %s %s: %s\n",progname,what,output,strerror(errno));
57 " -o name output to file " LUA_QL("name") " (default is \"%s\")\n
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
OrderedCollectionTest.c 3 the standard input, and writing results to the standard output.
32 // We allow the user to select between stdin+stdout and regular input+output
47 static FILE *Input, *Output;
156 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
189 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
214 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
236 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
261 fprintf (Output, "%s: %d: calloc(): out of memory\n", __FUNCTION__, Value);
270 fprintf (Output, "%s: %d: OrderedCollectionInsert(): out of memory\n",
278 fprintf (Output, "%s: %d: already exists\n", __FUNCTION__,
    [all...]
  /external/flatbuffers/python/flatbuffers/
builder.py 73 Error caused by not calling `Finish` before calling `Output`.
137 def Output(self):
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 229 OutputFunctionCoverageData &Output = OutputFunctions.back();
232 ASSERT_EQ(N, Output.Regions.size());
234 ASSERT_EQ(Input.Regions[I].Count, Output.Regions[I].Count);
235 ASSERT_EQ(Input.Regions[I].FileID, Output.Regions[I].FileID);
236 ASSERT_EQ(Input.Regions[I].startLoc(), Output.Regions[I].startLoc());
237 ASSERT_EQ(Input.Regions[I].endLoc(), Output.Regions[I].endLoc());
238 ASSERT_EQ(Input.Regions[I].Kind, Output.Regions[I].Kind);
255 OutputFunctionCoverageData &Output = OutputFunctions.back();
257 ASSERT_EQ(N, Output.Regions.size());
258 ASSERT_EQ(N, Output.Filenames.size())
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 34 unsigned char Output[RC_REGISTER_MAX_INDEX];
81 dst->Output[i] = a->Output[i] | b->Output[i];
128 return &s->R.Output[index];
radeon_emulate_branches.c 244 unsigned int Output:RC_REGISTER_INDEX_BITS;
253 if (*pfile == RC_FILE_OUTPUT && *pindex == data->Output) {
261 * Output registers cannot be read from and so cannot be dealt with like
264 * We do the simplest thing: If an output registers is written within
285 remap.Output = inst->U.I.DstReg.Index;
297 inst_mov->U.I.DstReg.Index = remap.Output;
  /external/skia/third_party/lua/src/
luac.c 26 #define OUTPUT PROGNAME ".out" /* default output file */
31 static char Output[]={ OUTPUT }; /* default output file name */
32 static const char* output=Output; /* actual output file name */ variable
43 fprintf(stderr,"%s: cannot %s %s: %s\n",progname,what,output,strerror(errno));
57 " -o name output to file " LUA_QL("name") " (default is \"%s\")\n
    [all...]
  /external/syslinux/com32/lua/src/
luac.c 26 #define OUTPUT PROGNAME ".out" /* default output file */
31 static char Output[]={ OUTPUT }; /* default output file name */
32 static const char* output=Output; /* actual output file name */ variable
43 fprintf(stderr,"%s: cannot %s %s: %s\n",progname,what,output,strerror(errno));
57 " -o name output to file " LUA_QL("name") " (default is \"%s\")\n
    [all...]
  /frameworks/av/media/libstagefright/include/
MediaCodecSource.h 152 struct Output {
153 Output();
159 Mutexed<Output> mOutput;
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 27 * \brief descirbe how to map input sections into output sections
62 class Output {
74 explicit Output(const std::string& pName);
75 explicit Output(const OutputSectDesc& pOutputDesc);
140 bool operator()(const Output* LHS, const Output* RHS) const {
145 typedef std::pair<const Output*, const Input*> const_mapping;
146 typedef std::pair<Output*, Input*> mapping;
148 typedef std::vector<Output*> OutputDescList;

Completed in 1286 milliseconds

12 3 4 5 6 7 8 9