/frameworks/compile/mclinker/lib/MC/ |
MCLDOutput.cpp | 15 Output::Output() 19 Output::Output(const sys::fs::Path& pRealPath, 20 Output::Type pType) 24 Output::~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/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...] |
/frameworks/compile/mclinker/include/mcld/MC/ |
MCLDOutput.h | 10 // Output class inherits MCLDFile, which is used to represent a output file. 28 * \brief MCLDOutput provides the information about the output. 32 class Output : public MCLDFile 42 Output(); 43 explicit Output(const sys::fs::Path& pRealPath, 46 ~Output();
|
/frameworks/compile/mclinker/include/mcld/LD/ |
ELFWriter.h | 57 Output& pOutput) const; 62 Output& pOutput) const; 67 const Output& pOutput) const; 70 void emitELF32SectionHeader(Output& pOutput, MCLinker& pLinker) const; 72 void emitELF64SectionHeader(Output& pOutput, MCLinker& pLinker) const; 75 void emitELF32ShStrTab(Output& pOutput, MCLinker& pLinker) const; 77 void emitELF64ShStrTab(Output& pOutput, MCLinker& pLinker) const; 84 const Output& pOutput, 89 const Output& pOutput, 94 const Output& pOutput [all...] |
ObjectWriter.h | 19 class Output; 33 virtual llvm::error_code writeObject(Output& pOutput) = 0;
|
DynObjWriter.h | 35 virtual llvm::error_code writeDynObj(Output& pOutput) = 0;
|
/external/clang/include/clang/Basic/ |
MacroBuilder.h | 25 MacroBuilder(raw_ostream &Output) : Out(Output) {}
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsLDBackend.h | 42 /// initTargetSections - initialize target dependent sections in output 45 /// initTargetSymbols - initialize target dependent symbols in output. 61 const Output& pOutput); 79 void doPreLayout(const Output& pOutput, 84 void doPostLayout(const Output& pOutput, 107 /// @param pOutput - the output file 112 uint64_t emitSectionData(const Output& pOutput, 118 virtual void emitDynNamePools(Output& pOutput, 130 unsigned int getTargetSectionOrder(const Output& pOutput, 147 const Output& pOutput) [all...] |
/frameworks/compile/mclinker/lib/Target/X86/ |
X86LDBackend.h | 92 void doPreLayout(const Output& pOutput, 97 void doPostLayout(const Output& pOutput, 120 /// @param pOutput - the output file 125 uint64_t emitSectionData(const Output& pOutput, 165 const Output& pOutput); 176 unsigned int getTargetSectionOrder(const Output& pOutput, 191 const Output& pOutput) const; 198 const Output& pOutput); 204 const Output& pOutput); 208 const Output& pOutput) const [all...] |
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMLDBackend.h | 23 class Output; 85 /// initTargetSections - initialize target dependent sections in output. 88 /// initTargetSymbols - initialize target dependent symbols in output. 107 const Output& pOutput); 131 void doPreLayout(const Output& pOutput, 136 void doPostLayout(const Output& pOutput, 160 /// @param pOutput - the output file 165 uint64_t emitSectionData(const Output& pOutput, 187 unsigned int getTargetSectionOrder(const Output& pOutput, 207 const Output& pOutput) const [all...] |
/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...] |
/frameworks/compile/mclinker/include/mcld/Target/ |
TargetLDBackend.h | 28 class Output; 71 const Output& pOutput) = 0; 93 virtual void preLayout(const Output& pOutput, 98 virtual void postLayout(const Output& pOutput, 111 /// section start offset in the output file 115 virtual unsigned int getSectionOrder(const Output& pOutput, 122 sizeNamePools(const Output& pOutput,
|
GNULDBackend.h | 164 virtual void sizeNamePools(const Output& pOutput, 169 virtual uint64_t emitSectionData(const Output& pOutput, 175 virtual void emitRegNamePools(Output& pOutput, 181 virtual void emitDynNamePools(Output& pOutput, 195 virtual unsigned int getSectionOrder(const Output& pOutput, 205 getTargetSectionOrder(const Output& pOutput, const LDSection& pSectHdr) const 211 virtual void emitProgramHdrs(Output& pOutput); 228 /// createProgramHdrs - base on output sections to create the program headers 232 void writeELF32ProgramHdrs(Output& pOutput); 235 void writeELF64ProgramHdrs(Output& pOutput) [all...] |
/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/clang/lib/Driver/ |
Tools.h | 36 const InputInfo &Output, 54 const InputInfo &Output, 72 const InputInfo &Output, 86 const InputInfo &Output, 171 const InputInfo &Output, 188 const InputInfo &Output, 251 const InputInfo &Output, 262 const InputInfo &Output, 276 const InputInfo &Output, 293 const InputInfo &Output, [all...] |
Arg.cpp | 79 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const { 81 render(Args, Output); 86 Output.push_back(getValue(Args, i)); 89 void Arg::render(const ArgList &Args, ArgStringList &Output) const { 93 Output.push_back(getValue(Args, i)); 104 Output.push_back(Args.MakeArgString(OS.str())); 109 Output.push_back(Args.GetOrMakeJoinedArgString( 112 Output.push_back(getValue(Args, i)); 116 Output.push_back(getOption().getName().data()); 118 Output.push_back(getValue(Args, 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 >= 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...] |
/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),
|