HomeSort by relevance Sort by last modified time
    Searched full:writer (Results 201 - 225 of 1982) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /external/chromium_org/chromeos/dbus/
bluetooth_agent_manager_client.cc 47 dbus::MessageWriter writer(&method_call);
48 writer.AppendObjectPath(agent_path);
49 writer.AppendString(capability);
68 dbus::MessageWriter writer(&method_call);
69 writer.AppendObjectPath(agent_path);
90 dbus::MessageWriter writer(&method_call);
91 writer.AppendObjectPath(agent_path);
permission_broker_client.cc 35 dbus::MessageWriter writer(&method_call);
36 writer.AppendString(path);
37 writer.AppendInt32(interface_id);
49 dbus::MessageWriter writer(&method_call);
50 writer.AppendUint16(vendor_id);
51 writer.AppendUint16(product_id);
52 writer.AppendInt32(interface_id);
shill_service_client.cc 92 dbus::MessageWriter writer(&method_call);
93 writer.AppendString(name);
94 ShillClientHelper::AppendValueDataAsVariant(&writer, value);
106 dbus::MessageWriter writer(&method_call);
107 ShillClientHelper::AppendServicePropertiesDictionary(&writer, properties);
119 dbus::MessageWriter writer(&method_call);
120 writer.AppendString(name);
133 dbus::MessageWriter writer(&method_call);
134 writer.AppendArrayOfStrings(names);
177 dbus::MessageWriter writer(&method_call)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 713 def output_comment(writer):
714 writer.newline("// Type originally was named '%s'.\n" % json_name)
721 def output_comment(writer):
727 class Writer:
760 return Writer(self.output, self.indent + additional_indent)
765 return Writer(new_output, self.indent + additional_indent)
808 def write_doc(writer):
810 writer.newline("/* ")
811 writer.append(json_type["description"])
812 writer.append(" */\n"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.cpp 45 ASSERT(writer());
53 writer()->write(position(), data);
54 writer()->waitForOperationToComplete();
67 ASSERT(writer());
74 ASSERT(writer());
81 writer()->truncate(offset);
82 writer()->waitForOperationToComplete();
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /external/kernel-headers/original/linux/
seqlock.h 4 * Reader/writer consistent mechanism without starving writers. This type of
7 * block but they may have to retry if a writer is in
11 * for data that contains pointers, because any writer could
21 * On non-SMP the spin locks disappear but the writer still needs
82 /* Start of read calculation -- fetch last complete writer token */
92 * then writer had already started when section was entered
94 * then writer changed data while in section
  /external/proguard/src/proguard/io/
ManifestRewriter.java 49 Writer writer)
53 new SplitLineWriter(writer));
162 * This Writer writes manifest files, splitting any long lines.
169 public SplitLineWriter(Writer writer)
171 super(writer);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
IndentingWriter.java 29 import java.io.Writer;
32 * Writer that wraps another writer and passes width-limited and
59 * @param out non-null; writer to send final output to
64 public IndentingWriter(Writer out, int width, String prefix) {
89 * @param out non-null; writer to send final output to
93 public IndentingWriter(Writer out, int width) {
  /frameworks/base/core/java/com/android/internal/util/
IndentingPrintWriter.java 20 import java.io.Writer;
47 public IndentingPrintWriter(Writer writer, String singleIndent) {
48 this(writer, singleIndent, -1);
51 public IndentingPrintWriter(Writer writer, String singleIndent, int wrapLength) {
52 super(writer);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMultipart.java 87 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024); local
90 writer.write(mPreamble + "\r\n");
95 writer.write("--" + mBoundary + "\r\n");
96 writer.flush();
98 writer.write("\r\n");
101 writer.write("--" + mBoundary + "--\r\n");
102 writer.flush();
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===//
28 bool RecordScatteredRelocation(MachObjectWriter *Writer,
36 void RecordTLVPRelocation(MachObjectWriter *Writer,
44 void RecordX86Relocation(MachObjectWriter *Writer,
51 void RecordX86_64Relocation(MachObjectWriter *Writer,
64 void RecordRelocation(MachObjectWriter *Writer,
68 if (Writer->is64Bit())
69 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
72 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
101 void X86MachObjectWriter::RecordX86_64Relocation(MachObjectWriter *Writer,
    [all...]
  /external/opencv/cv/src/
cvcontourtree.cpp 94 CvSeqWriter writer; local
123 cvStartWriteSeq( seq_flags, hearder_size, sizeof( _CvTrianAttr ), storage, &writer );
137 /* start_writer = writer; */
145 CV_WRITE_SEQ_ELEM( tree_one, writer );
146 tree_root = (_CvTrianAttr *) (writer.ptr - writer.seq->elem_size);
256 CV_WRITE_SEQ_ELEM( tree_one, writer );
257 cur_adr = (_CvTrianAttr *) (writer.ptr - writer.seq->elem_size);
268 tree_end = (_CvTrianAttr *) writer.ptr
697 CvSeqWriter writer; local
    [all...]
  /external/chromium_org/webkit/renderer/fileapi/
webfilewriter_base_unittest.cc 136 WebKit::WebFileWriter* writer() { function in class:fileapi::FileWriterTest
196 writer()->write(kBasicFileWrite_Offset, kBlobUrl);
218 writer()->truncate(kBasicFileTruncate_Offset);
238 writer()->write(kErrorFileWrite_Offset, kBlobUrl);
259 writer()->truncate(kErrorFileTruncate_Offset);
280 writer()->write(kMultiFileWrite_Offset, kBlobUrl);
303 writer()->write(kCancelFileWriteBeforeCompletion_Offset, kBlobUrl);
327 writer()->write(kCancelFileWriteAfterCompletion_Offset, kBlobUrl);
350 writer()->truncate(kCancelFileTruncate_Offset);
370 writer()->truncate(kCancelFailedTruncate_Offset)
    [all...]
  /frameworks/av/media/libnbaio/
NBLog.cpp 74 NBLog::Writer::Writer()
79 NBLog::Writer::Writer(size_t size, void *shared)
84 NBLog::Writer::Writer(size_t size, const sp<IMemory>& iMemory)
90 void NBLog::Writer::log(const char *string)
102 void NBLog::Writer::logf(const char *fmt, ...)
109 Writer::logvf(fmt, ap); // the Writer:: is needed to avoid virtual dispatch for LockedWrite
    [all...]
  /external/chromium_org/chromeos/dbus/ibus/
ibus_engine_service.cc 155 dbus::MessageWriter writer(&signal);
156 AppendIBusPropertyList(property_list, &writer);
167 dbus::MessageWriter writer(&signal);
168 AppendIBusText(ibus_text, &writer);
169 writer.AppendUint32(cursor_pos);
170 writer.AppendBool(is_visible);
171 writer.AppendUint32(static_cast<uint32>(mode));
180 dbus::MessageWriter writer(&signal);
181 AppendIBusText(ibus_text, &writer);
182 writer.AppendBool(is_visible)
    [all...]
ibus_object_unittest.cc 20 dbus::MessageWriter writer(message.get());
34 IBusObjectWriter ibus_object_writer(kSampleTypeName1, "suibauv", &writer);
111 dbus::MessageWriter writer(message.get());
112 IBusObjectWriter ibus_object_writer(kSampleTypeName, "", &writer);
132 dbus::MessageWriter writer(message.get());
133 IBusObjectWriter ibus_object_writer(kSampleTypeName, "v", &writer);
164 dbus::MessageWriter writer(message.get());
165 IBusObjectWriter ibus_object_writer(kSampleTypeName, "v", &writer);
201 dbus::MessageWriter writer(response.get());
202 IBusObjectWriter ibus_object_writer(kSampleTypeName, "v", &writer);
    [all...]
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 358 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
359 super.dump(prefix, fd, writer, args);
361 writer.print(prefix); writer.print("mTask="); writer.print(mTask);
362 writer.print(" waiting="); writer.println(mTask.waiting);
365 writer.print(prefix); writer.print("mCancellingTask="); writer.print(mCancellingTask)
    [all...]
  /libcore/luni/src/main/java/java/io/
CharArrayWriter.java 23 * A specialized {@link Writer} for class for writing content to an (internal)
24 * char array. As bytes are written to this writer, the char array may be
30 public class CharArrayWriter extends Writer {
45 * {@code lock} to synchronize access to this writer.
55 * as the {@code lock} to synchronize access to this writer.
71 * Closes this writer. The implementation in {@code CharArrayWriter} does nothing.
91 * Flushes this writer. The implementation in {@code CharArrayWriter} does nothing.
99 * Resets this writer. The current write position is reset to the beginning
101 * writer is set to 0.
110 * Returns the size of this writer, that is the number of characters i
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
FileWriterWithEncoding.java 24 import java.io.Writer;
32 * Writer of files that allows the encoding to be set.
50 public class FileWriterWithEncoding extends Writer {
51 // Cannot extend ProxyWriter, as requires writer to be
54 /** The writer to decorate. */
55 private final Writer out;
212 * Initialise the wrapped file writer.
213 * Ensure that a cleanup occurs if the writer creation fails.
218 * @return the initialised writer
222 private static Writer initWriter(File file, Object encoding, boolean append) throws IOException {
231 Writer writer = null; local
    [all...]
LockableFileWriter.java 25 import java.io.Writer;
50 public class LockableFileWriter extends Writer {
51 // Cannot extend ProxyWriter, as requires writer to be
57 /** The writer to decorate. */
58 private final Writer out;
182 // init wrapped writer
221 * Initialise the wrapped file writer.
222 * Ensure that a cleanup occurs if the writer creation fails.
227 * @return The initialised writer
230 private Writer initWriter(File file, String encoding, boolean append) throws IOException {
233 Writer writer = null; local
    [all...]
  /external/qemu/telephony/
gsm.c 808 bwriter_init( BWriter writer, bytes_t dst, int start )
812 writer->dst = dst + (start >> 3);
813 writer->pad = 0;
814 writer->bits = shift;
815 writer->offset = start;
818 writer->pad = writer->dst[0] & ~(0xFF << shift);
823 bwriter_add7( BWriter writer, unsigned value )
825 writer->pad |= (unsigned)(value << writer->bits)
853 BWriterRec writer[1]; local
930 BWriterRec writer[1]; local
    [all...]
  /frameworks/av/include/media/nbaio/
NBLog.h 32 class Writer;
54 friend class Writer;
84 // FIXME Timeline was intended to wrap Writer and Reader, but isn't actually used yet.
99 friend class Writer;
110 // Writer is thread-safe with respect to Reader, but not with respect to multiple threads
111 // calling Writer methods. If you need multi-thread safety for writing, use LockedWriter.
112 class Writer : public RefBase {
114 Writer(); // dummy nop implementation without shared memory
118 Writer(size_t size, void *shared);
119 Writer(size_t size, const sp<IMemory>& iMemory)
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/runner/
AndroidJUnitRunner.java 199 PrintStream writer = new PrintStream(byteArrayOutputStream); local
204 addListeners(listeners, testRunner, writer);
206 TestRequest testRequest = buildRequest(getArguments(), writer);
213 writer.println(String.format(
216 t.printStackTrace(writer);
220 reportRunEnded(listeners, writer, results);
221 writer.close();
231 PrintStream writer) {
233 addListener(listeners, testRunner, new SuiteAssignmentPrinter(writer));
235 addListener(listeners, testRunner, new TextListener(writer));
    [all...]

Completed in 1533 milliseconds

1 2 3 4 5 6 7 891011>>