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

1 2 3

  /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 {
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 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;
AccessSourcer.java 30 private final Output mOutput;
82 public AccessSourcer(Output output) {
83 mOutput = output;
ClassSourcer.java 32 private final Output mOutput;
36 public ClassSourcer(Output output) {
37 mOutput = output;
MethodSourcer.java 33 private final Output mOutput;
43 public MethodSourcer(Output output, String className, int access, String name,
45 mOutput = output;
78 // output return type (constructor have no return type)
89 // output name
92 // output arguments. The signature overrides desc, if present
114 // output throwable exceptions
  /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...]
encodetable.h 36 // {{Add|Copy|Run}* [AddChecksum] Output}*
38 // When Output has been called in this sequence, a complete target window
41 // case Output will do nothing.) The output will not be available for use
42 // until after each call to Output().
102 // Finishes encoding and appends the encoded delta window to the output
103 // string. The output string is not null-terminated and may contain embedded
105 virtual void Output(OutputStringInterface* out);
152 // Appends the size value to the output string as a variable-length integer.
168 // instructions. Depending on whether interleaved output is use
    [all...]
vcdiffengine.cc 137 // the results into the output string "diff".
148 coder->Output(diff);
  /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);
AccessSourcerTest.java 37 mSourcer = new AccessSourcer(new Output(mWriter));
  /external/ppp/pppd/plugins/radius/etc/
dictionary.merit 14 ATTRIBUTE Acct-Output-Packets 48 integer
dictionary 78 ATTRIBUTE Acct-Output-Octets 43 integer
83 ATTRIBUTE Acct-Output-Packets 48 integer
249 VALUE Octets-Direction Output 2
  /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/base/media/libdrm/mobile1/
Android.mk 8 # Output: libdrm1.so
58 # Output: libdrm1_jni.so
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 21 import com.android.mkstubs.sourcer.Output;
95 ClassVisitor javaWriter = new ClassSourcer(new Output(fw));
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_systhread.c 115 thread->handle=(struct Task *)CreateNewProcTags(NP_Output,Output(),
  /external/chromium/googleurl/src/
url_canon_internal.h 92 // Appends the given string to the output, escaping characters that do not
96 CanonOutput* output);
99 CanonOutput* output);
143 // Write a single character, escaped, to the output. This always escapes: it
149 CanonOutputT<OUTCHAR>* output) {
150 output->push_back('%');
151 output->push_back(kHexCharLookup[ch >> 4]);
152 output->push_back(kHexCharLookup[ch & 0xf]);
174 // character that should be appended, with the given output method. Wrappers
176 template<class Output, void Appender(unsigned char, Output*)
179 Appender(static_cast<unsigned char>(char_value), output); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/
AVCDecoder.cpp 239 AVCFrameIO Output;
240 Output.YCbCr[0] = Output.YCbCr[1] = Output.YCbCr[2] = NULL;
241 AVCDec_Status status = PVAVCDecGetOutput(mHandle, &index, &Release, &Output);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 53 Output.generate(dexData, mOutputFormat);
136 * Copy all data from input stream to output file.

Completed in 986 milliseconds

1 2 3