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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/core/java/android/app/
LoaderManager.java 185 * @param writer A PrintWriter to which the dump is to be set.
188 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
506 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
507 writer.print(prefix); writer.print("mId="); writer.print(mId);
508 writer.print(" mArgs="); writer.println(mArgs);
509 writer.print(prefix); writer.print("mCallbacks="); writer.println(mCallbacks)
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
LoaderManager.java 166 * @param writer A PrintWriter to which the dump is to be set.
169 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
450 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
451 writer.print(prefix); writer.print("mId="); writer.print(mId);
452 writer.print(" mArgs="); writer.println(mArgs);
453 writer.print(prefix); writer.print("mCallbacks="); writer.println(mCallbacks)
    [all...]
  /external/chromium_org/tools/gn/
ninja_writer.cc 25 NinjaWriter writer(build_settings, builder);
29 if (!writer.WriteToolchains(&all_settings, &default_targets))
31 return writer.WriteRootBuildfiles(all_settings, default_targets);
39 NinjaWriter writer(build_settings, builder);
41 return writer.WriteToolchains(all_settings, &default_targets);
  /external/guava/guava-gwt/src/com/google/common/collect/
Multimap_CustomFieldSerializerBase.java 69 SerializationStreamWriter writer, Multimap<?, ?> instance)
71 writer.writeInt(instance.asMap().size());
74 writer.writeObject(entry.getKey());
75 writer.writeInt(entry.getValue().size());
77 writer.writeObject(value);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
LabelMethodItem.java 73 public boolean writeTo(IndentingWriter writer) throws IOException {
74 writer.write(':');
75 writer.write(labelPrefix);
77 writer.printUnsignedLongAsHex(labelSequence);
79 writer.printUnsignedLongAsHex(this.getLabelAddress());
  /external/chromium_org/net/tools/quic/
quic_dispatcher.cc 69 QuicBlockedWriterInterface* writer) {
71 write_blocked_list_.insert(make_pair(writer, true));
76 writer_->WritePacket(buffer, buf_len, self_address, peer_address, writer);
78 write_blocked_list_.insert(make_pair(writer, true));
151 void QuicDispatcher::UseWriter(QuicPacketWriter* writer) {
152 writer_.reset(writer);
159 // Give each writer one attempt to write.
165 QuicBlockedWriterInterface* writer = write_blocked_list_.begin()->first; local
167 bool can_write_more = writer->OnCanWrite();
174 // The socket is not blocked but the writer has ceded work. Add it to th
    [all...]
  /cts/tools/cts-java-scanner-doclet/src/com/android/cts/javascannerdoclet/
CtsJavaScannerDoclet.java 72 PrintWriter writer = new PrintWriter(System.out); local
78 writer.append("suite:").println(clazz.containingPackage().name());
79 writer.append("case:").println(clazz.name());
100 writer.append("test:");
102 writer.append(method.name()).println(":" + timeout);
104 writer.println(method.name());
110 writer.close();
  /dalvik/dexgen/src/com/android/dexgen/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) {
  /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 38 dbus::MessageWriter writer(&method_call);
39 writer.AppendObjectPath(agent_path);
40 writer.AppendString(capability);
59 dbus::MessageWriter writer(&method_call);
60 writer.AppendObjectPath(agent_path);
81 dbus::MessageWriter writer(&method_call);
82 writer.AppendObjectPath(agent_path);
  /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/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...]
  /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...]
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/
TempFile.js 73 * @param {!FileWriter} writer
76 function didCreateWriter(writer)
83 this._writer = writer;
84 writer.onwrite = null;
85 writer.onerror = null;
94 if (writer.length) {
95 writer.onwrite = didTruncate.bind(this);
96 writer.onerror = onTruncateError.bind(this);
97 writer.truncate(0);
99 this._writer = writer;
    [all...]

Completed in 745 milliseconds

1 2 3 4 5 6 7 891011>>