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

12 3 4 5 6 7

  /external/clang/include/clang/AST/
ASTDiagnostic.h 45 SmallVectorImpl<char> &Output,
  /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.
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
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;
FieldSourcer.java 31 private final Output mOutput;
37 public FieldSourcer(Output output, int access, String name, String desc, String signature) {
39 mOutput = output;
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
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));
MethodSourcerTest.java 33 private Output mOutput;
38 mOutput = new Output(mWriter);
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.cpp 68 void X86GNULDBackend::doPreLayout(const Output& pOutput,
73 if(pOutput.type() == Output::DynObj && (NULL == m_pGOT))
77 void X86GNULDBackend::doPostLayout(const Output& pOutput,
82 if(pOutput.type() == Output::DynObj || pOutput.type() == Output::Exec)
83 emitProgramHdrs(pLinker.getLDInfo().output());
104 void X86GNULDBackend::createX86GOT(MCLinker& pLinker, const Output& pOutput)
140 const Output& pOutput)
158 const Output& pOutput)
170 ELFFileFormat* X86GNULDBackend::getOutputFormat(const Output& pOutput) cons
    [all...]
X86PLT.h 18 class Output;
45 const Output& pOutput);
  /external/oprofile/libutil++/tests/
file_manip_tests.cpp 22 template <typename Input, typename Output>
25 Output output; member in struct:input_output
29 template <typename Input, typename Output, typename Result>
31 Output const & output, Result const & result)
33 if (result != output) {
36 << "expect:\n\"" << output << "\"\n"
42 template <typename Input, typename Output, typename Result>
44 Input input2, Output const & output, Result const & result
    [all...]
  /external/v8/src/
liveedit.h 159 class Output {
166 virtual ~Output() {}
171 Output* result_writer);
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInfo.h 37 * output() - the output file
62 Output& output() function in class:mcld::MCLDInfo
65 const Output& output() const function in class:mcld::MCLDInfo
122 Output* m_pOutput;
  /external/clang/include/clang/Driver/
Tool.h 59 /// writing to \arg Output and with \arg Inputs.
63 /// \param LinkingOutput - If this output will eventually feed the
64 /// linker, then this is the final output name of the linked image.
66 const InputInfo &Output,
Arg.h 102 void render(const ArgList &Args, ArgStringList &Output) const;
108 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
  /frameworks/base/media/mca/filterfw/native/core/
statistics.h 60 float Output() const { return value_; }
  /frameworks/compile/mclinker/include/mcld/LD/
ELFObjectWriter.h 37 llvm::error_code writeObject(Output& pOutput)
  /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/ppp/pppd/plugins/radius/etc/
dictionary.merit 14 ATTRIBUTE Acct-Output-Packets 48 integer
  /external/chromium/sdch/open-vcdiff/src/
encodetable_test.cc 157 // Destination for VCDiffCodeTableWriter::Output()
195 // Output() without Init() is harmless, but will produce no output.
197 standard_writer.Output(&output_string);
203 standard_writer.Output(&output_string);
210 interleaved_writer.Output(&output_string);
215 exercise_writer.Output(&output_string);
224 standard_writer.Output(&output_string);
243 exercise_writer.Output(&output_string);
262 standard_writer.Output(&output_string)
    [all...]
  /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...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 120 void ARMGNULDBackend::doPreLayout(const Output& pOutput,
125 if(pOutput.type() == Output::DynObj && (NULL == m_pGOT)) {
130 void ARMGNULDBackend::doPostLayout(const Output& pOutput,
135 if(pOutput.type() == Output::DynObj || pOutput.type() == Output::Exec)
136 emitProgramHdrs(pLinker.getLDInfo().output());
153 if (pOutput.type() == Output::DynObj)
180 bool ARMGNULDBackend::isPIC(const MCLDInfo& pLDInfo, const Output& pOutput) const
182 return (pOutput.type() == Output::DynObj);
185 void ARMGNULDBackend::createARMGOT(MCLinker& pLinker, const Output& pOutput
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 217 GNULDBackend::sizeNamePools(const Output& pOutput,
247 case Output::DynObj:
250 case Output::Exec:
253 case Output::Object:
261 case Output::DynObj:
262 case Output::Exec: {
303 case Output::Object: {
314 if (Output::DynObj == pOutput.type() || Output::Exec == pOutput.type()) {
327 void GNULDBackend::emitRegNamePools(Output& pOutput
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFWriter.cpp 32 Output& pOutput) const
52 case Output::Object:
55 case Output::DynObj:
58 case Output::Exec:
62 llvm::errs() << "unspported output file type: " << pOutput.type() << ".\n";
83 Output& pOutput) const
103 case Output::Object:
106 case Output::DynObj:
109 case Output::Exec:
113 llvm::errs() << "unspported output file type: " << pOutput.type() << ".\n"
    [all...]
  /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.
  /frameworks/base/media/libdrm/mobile1/
Android.mk 8 # Output: libdrm1.so
58 # Output: libdrm1_jni.so

Completed in 782 milliseconds

12 3 4 5 6 7