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

1 2

  /external/v8/src/
liveedit.h 159 class Output {
166 virtual ~Output() {}
171 Output* result_writer);
prettyprinter.h 61 char* output_; // output string buffer
67 const char* Output() const { return output_; }
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 20 * Interface for a sink for binary output. This is similar to
22 * are declared, and multibyte output is defined to be little-endian.
24 public interface Output {
124 * force alignment of the output cursor as given.
  /dalvik/dx/src/com/android/dx/util/
Output.java 20 * Interface for a sink for binary output. This is similar to
22 * are declared, and multibyte output is defined to be little-endian.
24 public interface Output extends ByteOutput {
124 * force alignment of the output cursor as given.
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
28 public class Output {
33 * Creates a new {@link Output} object that wraps the given {@link Writer}.
39 public Output(Writer writer) {
  /external/dexmaker/src/dx/java/com/android/dx/util/
Output.java 20 * Interface for a sink for binary output. This is similar to
22 * are declared, and multibyte output is defined to be little-endian.
24 public interface Output extends ByteOutput {
124 * force alignment of the output cursor as given.
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Output.java 32 * Interface for a sink for binary output. This is similar to
34 * are declared, and multibyte output is defined to be little-endian.
36 public interface Output {
136 * force alignment of the output cursor as given.
  /external/guava/guava-tests/test/com/google/common/io/
CheckCloseSupplier.java 53 abstract static class Output<T> extends CheckCloseSupplier<T>
57 public Output(OutputSupplier<? extends T> delegate) {
  /external/open-vcdiff/src/
jsonwriter.cc 36 void JSONCodeTableWriter::Output(OutputStringInterface* out) {
encodetable.cc 134 // for encoding, here is where they would be appended to *output.
294 // and "End of Delta Encoding" in Output(), below.
312 void VCDiffCodeTableWriter::Output(OutputStringInterface* out) {
324 // append() will be called many times on the output string; make sure
325 // the output string is resized only once at most.
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 64 Output.generateFirstHeader(fileName, mOutputFormat);
66 Output.generateHeader(fileName, mOutputFormat);
69 Output.generate(dexData, mOutputFormat, mJustClasses);
70 Output.generateFooter(mOutputFormat);
159 * Copy all data from input stream to output file.
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.
  /external/chromium/sdch/open-vcdiff/src/
encodetable.cc 266 // and "End of Delta Encoding" in Output(), below.
284 void VCDiffCodeTableWriter::Output(OutputStringInterface* out) {
296 // append() will be called many times on the output string; make sure
297 // the output string is resized only once at most.
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 34 unsigned Output;
  /external/llvm/include/llvm/Support/
OutputBuffer.h 1 //=== OutputBuffer.h - Output Buffer ----------------------------*- C++ -*-===//
10 // Methods to output values to a data buffer.
24 /// Output buffer.
25 std::vector<unsigned char> &Output;
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
35 // align - Emit padding into the file until the current output position is
40 size_t Size = Output.size();
45 Output.resize(Size + Pad);
50 // Out Functions - Output the specified value to the data buffer.
53 Output.push_back(X)
    [all...]
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 192 unsigned Output = phi->getOperand(0).getReg();
199 if (Input != Output) {
201 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
202 MRI.replaceRegWith(Output, Input);
  /frameworks/base/media/mca/filterfw/native/core/
statistics.h 60 float Output() const { return value_; }
  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 311 // Output stream
314 * Creates a new {@link Output} with the given initial capacity.
316 public static Output newOutput(final int initialCapacity) {
317 return new Output(new ByteArrayOutputStream(initialCapacity));
321 * Creates a new {@link Output}.
323 public static Output newOutput() {
331 public static final class Output extends FilterOutputStream {
335 * Constructs a new output with the given initial capacity.
337 private Output(final ByteArrayOutputStream bout) {
343 * Creates a {@code ByteString} instance from this {@code Output}
370 private final CodedOutputStream output; field in class:ByteString.CodedBuilder
    [all...]
  /external/llvm/lib/Support/
YAMLTraits.cpp 354 // Output
357 Output::Output(raw_ostream &yout, void *context)
368 Output::~Output() {
371 bool Output::outputting() {
375 void Output::beginMapping() {
380 void Output::endMapping() {
384 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault,
395 void Output::postflightKey(void *)
535 void Output::output(StringRef s) { function in class:Output
597 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
612 void ScalarTraits<StringRef>::output(const StringRef &Val, void *, function in class:ScalarTraits
623 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, function in class:ScalarTraits
640 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, function in class:ScalarTraits
656 void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *, function in class:ScalarTraits
672 void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *, function in class:ScalarTraits
686 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
702 void ScalarTraits<int16_t>::output(const int16_t &Val, void *, function in class:ScalarTraits
717 void ScalarTraits<int32_t>::output(const int32_t &Val, void *, function in class:ScalarTraits
732 void ScalarTraits<int64_t>::output(const int64_t &Val, void *, function in class:ScalarTraits
745 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
758 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
771 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
786 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
801 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
816 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
call_main.cc 80 void Output(const char * data, int len) {
110 void DebugPrint(char * buf, int * plen, bool output) {
122 LOG(INFO) << (output ? "SEND >>>>>>>>>>>>>>>>" : "RECV <<<<<<<<<<<<<<<<")
138 // Output a tag
232 DEFINE_string(voiceoutput, NULL, "RTP dump file for voice output.");
234 DEFINE_string(videooutput, NULL, "RTP dump file for video output.");
379 pump.client()->SignalLogOutput.connect(&debug_log_, &DebugLog::Output);
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py 35 Run the program, parse the output, and then format that into a man
76 gflags.DEFINE_integer('v', 0, 'verbosity level to use for output')
179 self.output = [] # output from the program. List of lines.
186 """Run it and collect output.
201 # --help output is often routed to stderr, so we combine with stdout.
207 self.output = child_stdout_and_stderr.readlines()
209 if len(self.output) < _MIN_VALID_USAGE_MSG:
212 len(self.output), self.output))
    [all...]
  /external/chromium/testing/gtest/scripts/
pump.py 641 class Output:
656 def RunAtomicCode(env, node, output):
659 result = Output()
678 RunCode(new_env, node.code, output)
680 output.Append(sep)
682 output.Append(node.raw_code.value)
686 RunCode(env.Clone(), node.then_branch, output)
688 RunCode(env.Clone(), node.else_branch, output)
691 output.Append('%s' % (value,))
693 output.Append('$'
    [all...]
  /external/gtest/scripts/
pump.py 641 class Output:
656 def RunAtomicCode(env, node, output):
659 result = Output()
678 RunCode(new_env, node.code, output)
680 output.Append(sep)
682 output.Append(node.raw_code.value)
686 RunCode(env.Clone(), node.then_branch, output)
688 RunCode(env.Clone(), node.else_branch, output)
691 output.Append('%s' % (value,))
693 output.Append('$'
    [all...]
  /external/iproute2/doc/
ip-cref.tex 34 and options, decrypting \verb|ip| output and containing a few examples.
48 general behaviour of the \verb|ip| utility or changing its output. All options
60 --- output more information. If the option
89 --- output each record on a single line, replacing line feeds
91 count records with \verb|wc| or to \verb|grep| the output. The trivial
92 script \verb|rtpr| converts the output back into readable form.
177 prints the error message, as it is output with \verb|perror(3)|,
182 In this case \verb|ip| prints the error message, as it is output
349 \paragraph{Output format:}
725 \paragraph{Output format:
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
pump.py 641 class Output:
656 def RunAtomicCode(env, node, output):
659 result = Output()
678 RunCode(new_env, node.code, output)
680 output.Append(sep)
682 output.Append(node.raw_code.value)
686 RunCode(env.Clone(), node.then_branch, output)
688 RunCode(env.Clone(), node.else_branch, output)
691 output.Append('%s' % (value,))
693 output.Append('$'
    [all...]

Completed in 1062 milliseconds

1 2