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

1 2 3 4 5 6 7

  /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/test/
Makefile.tests 22 # output from gccas and gccld.
31 .PRECIOUS: Output/%.bc Output/%.ll
32 .PRECIOUS: Output/%.tbc Output/%.tll
33 .PRECIOUS: Output/.dir
34 .PRECIOUS: Output/%.llvm.bc
35 .PRECIOUS: Output/%.llvm
48 $(RM) -rf Output/
50 # Compile from X.c to Output/X.l
    [all...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
  /dalvik/dexgen/src/com/android/dexgen/util/
AnnotatedOutput.java 20 * Interface for a binary output destination that may be augmented
24 extends Output {
42 * Add an annotation for the subsequent output. Any previously
44 * annotation marks all subsequent output until another annotation
53 * output. Any previously open annotation will be closed by this
55 * previous calls to this method, the new call "consumes" output
56 * after all the output covered by the previous calls.
58 * @param amt {@code >= 0;} the amount of output for this annotation to
65 * End the most recent annotation. Subsequent output will be unannotated,
71 * Get the maximum width of the annotated output. This is advisory
    [all...]
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/
AnnotatedOutput.java 20 * Interface for a binary output destination that may be augmented
24 extends Output {
42 * Add an annotation for the subsequent output. Any previously
44 * annotation marks all subsequent output until another annotation
53 * output. Any previously open annotation will be closed by this
55 * previous calls to this method, the new call "consumes" output
56 * after all the output covered by the previous calls.
58 * @param amt {@code >= 0;} the amount of output for this annotation to
65 * End the most recent annotation. Subsequent output will be unannotated,
71 * Get the maximum width of the annotated output. This is advisory
    [all...]
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/dexmaker/src/dx/java/com/android/dx/util/
AnnotatedOutput.java 20 * Interface for a binary output destination that may be augmented
24 extends Output {
42 * Add an annotation for the subsequent output. Any previously
44 * annotation marks all subsequent output until another annotation
53 * output. Any previously open annotation will be closed by this
55 * previous calls to this method, the new call "consumes" output
56 * after all the output covered by the previous calls.
58 * @param amt {@code >= 0;} the amount of output for this annotation to
65 * End the most recent annotation. Subsequent output will be unannotated,
71 * Get the maximum width of the annotated output. This is advisory
    [all...]
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) {
AnnotationSourcer.java 29 private final Output mOutput;
32 public AnnotationSourcer(Output output) {
33 this(output, false /*isArray*/);
36 public AnnotationSourcer(Output output, boolean isArray) {
38 mOutput = output;
  /external/clang/lib/Driver/
Tools.h 47 const InputInfo &Output,
71 const InputInfo &Output,
90 const InputInfo &Output,
104 const InputInfo &Output,
189 const InputInfo &Output,
206 const InputInfo &Output,
239 const InputInfo &Output,
257 const InputInfo &Output,
270 const InputInfo &Output,
285 const InputInfo &Output,
    [all...]
Arg.cpp 81 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
83 render(Args, Output);
88 Output.push_back(getValue(i));
91 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
95 Output.push_back(getValue(i));
106 Output.push_back(Args.MakeArgString(OS.str()));
111 Output.push_back(Args.GetOrMakeJoinedArgString(
114 Output.push_back(getValue(i));
118 Output.push_back(Args.MakeArgString(getSpelling()));
120 Output.push_back(getValue(i))
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
codetablewriter_interface.h 7 // series of Add, Copy, and Run instructions and produces an output file in the
20 // {{Add|Copy|Run}* Output}*
22 // Output() will produce an encoding using the given series of Add, Copy,
25 // implementations may be used to produce other output formats, or as test
41 // Finishes encoding and appends the encoded delta window to the output
42 // string. The output string is not null-terminated and may contain embedded
44 virtual void Output(OutputStringInterface* out) = 0;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AnnotatedOutput.java 28 * Interface for a binary output destination that may be augmented
32 extends Output {
50 * Add an annotation for the subsequent output. Any previously
52 * annotation marks all subsequent output until another annotation
61 * output. Any previously open annotation will be closed by this
63 * previous calls to this method, the new call "consumes" output
64 * after all the output covered by the previous calls.
66 * @param amt &gt;= 0; the amount of output for this annotation to
73 * End the most recent annotation. Subsequent output will be unannotated,
79 * Get the maximum width of the annotated output. This is advisory
    [all...]
DebugInfoBuilder.java 190 void emit(DexFile dexFile, Output out, List<Item> referencedItems);
193 private void emitEndSequence(Output out) {
197 private void emitAdvancePC(Output out, int address) {
207 private void emitAdvanceLine(Output out, int lineDelta) {
212 private void emitStartLocal(Output out, int registerNum) {
219 private void emitStartLocalExtended(Output out, int registerNum) {
227 private void emitEndLocal(Output out, int registerNum) {
232 private void emitRestartLocal(Output out, int registerNum) {
237 private void emitSetPrologueEnd(Output out) {
241 private void emitSetEpilogueBegin(Output out)
    [all...]
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.
  /frameworks/compile/mclinker/include/mcld/Target/
ELFMCLinker.h 24 class Output;
  /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/llvm/lib/Option/
Arg.cpp 80 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
82 render(Args, Output);
87 Output.push_back(getValue(i));
90 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
94 Output.push_back(getValue(i));
105 Output.push_back(Args.MakeArgString(OS.str()));
110 Output.push_back(Args.GetOrMakeJoinedArgString(
113 Output.push_back(getValue(i));
117 Output.push_back(Args.MakeArgString(getSpelling()));
119 Output.push_back(getValue(i))
    [all...]
  /external/open-vcdiff/src/
jsonwriter_test.cc 53 coder_.Output(&output_string_);
62 coder_.Output(&output_string_);
71 coder_.Output(&output_string_);
80 coder_.Output(&output_string_);
89 coder_.Output(&output_string_);
100 coder_.Output(&output_string_);
109 coder_.Output(&output_string_);
114 coder_.Output(&output_string_);
123 coder_.Output(&output_string_);
132 coder_.Output(&output_string2)
    [all...]
codetablewriter_interface.h 19 // series of Add, Copy, and Run instructions and produces an output file in the
34 // {{Add|Copy|Run}* Output}*
36 // Output() will produce an encoding using the given series of Add, Copy,
39 // implementations may be used to produce other output formats, or as test
52 // Writes the header to the output string.
65 // Adds a checksum to the output.
68 // Appends the encoded delta window to the output
69 // string. The output string is not null-terminated and may contain embedded
71 virtual void Output(OutputStringInterface* out) = 0;
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
FieldSourcerTest.java 48 FieldSourcer fs = new FieldSourcer(new Output(mWriter),
63 FieldSourcer fs = new FieldSourcer(new Output(mWriter),
ClassSourcerTest.java 51 ClassSourcer jw = new ClassSourcer(new Output(sw));
81 ClassSourcer jw = new ClassSourcer(new Output(sw));
109 ClassSourcer jw = new ClassSourcer(new Output(sw));
  /external/clang/include/clang/AST/
ASTDiagnostic.h 45 SmallVectorImpl<char> &Output,

Completed in 1894 milliseconds

1 2 3 4 5 6 7