/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...] |
/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/clang/include/clang/Basic/ |
MacroBuilder.h | 25 MacroBuilder(llvm::raw_ostream &Output) : Out(Output) {}
|
/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 | 28 private final Output mOutput; 31 public AnnotationSourcer(Output output) { 32 this(output, false /*isArray*/); 35 public AnnotationSourcer(Output output, boolean isArray) { 36 mOutput = output;
|
FieldSourcer.java | 30 private final Output mOutput; 36 public FieldSourcer(Output output, int access, String name, String desc, String signature) { 37 mOutput = output;
|
/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;
|
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/clang/lib/Driver/ |
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...] |
Tools.h | 35 const InputInfo &Output, 52 const InputInfo &Output, 69 const InputInfo &Output, 83 const InputInfo &Output, 206 const InputInfo &Output, 217 const InputInfo &Output, 231 const InputInfo &Output, 247 const InputInfo &Output, 260 const InputInfo &Output, 274 const InputInfo &Output, [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),
|
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);
|
/external/llvm/test/lib/ |
llvm2cpp.exp | 16 #Make Output Directory if it does not exist already 24 file mkdir Output 29 set generated [file join Output $filename.cpp] 30 set executable [file join Output $filename.exe] 31 set output [file join Output $filename.gen] 32 set assembly [file join Output $filename.asm] 34 set bytecode [file join Output $filename.bc] 82 set retval [ catch { exec -keepnewline $executable > $output } msg ] 90 exec -keepnewline diff $assembly $output } msg [all...] |
/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);
|
/external/clang/include/clang/AST/ |
ASTDiagnostic.h | 45 llvm::SmallVectorImpl<char> &Output,
|
/external/clang/include/clang/Driver/ |
Tool.h | 60 /// writing to \arg Output and with \arg Inputs. 64 /// \param LinkingOutput - If this output will eventually feed the 65 /// linker, then this is the final output name of the linked image. 67 const InputInfo &Output,
|
Arg.h | 102 void render(const ArgList &Args, ArgStringList &Output) const; 108 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
|
/system/media/mca/filterfw/native/core/ |
statistics.h | 60 float Output() const { return value_; }
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.merit | 14 ATTRIBUTE Acct-Output-Packets 48 integer
|