/external/chromium_org/net/quic/crypto/ |
crypto_framer.cc | 113 QuicDataWriter writer(len); 114 if (!writer.WriteUInt32(message.tag())) { 118 if (!writer.WriteUInt16(num_entries)) { 122 if (!writer.WriteUInt16(0)) { 141 if (!WritePadTag(&writer, pad_length, &end_offset)) { 146 if (!writer.WriteUInt32(it->first)) { 151 if (!writer.WriteUInt32(end_offset)) { 158 if (!WritePadTag(&writer, pad_length, &end_offset)) { 168 if (!writer.WriteRepeatedByte('-', pad_length)) { 174 if (!writer.WriteBytes(it->second.data(), it->second.length())) [all...] |
/external/proguard/src/proguard/io/ |
DataEntryCopier.java | 119 DataEntryWriter writer = new DirectoryWriter(new File(output), local 128 DataEntryWriter zipWriter = new JarWriter(writer); 132 writer = zipWriter; 137 writer = new FilteredDataEntryWriter(new DataEntryParentFilter( 141 writer); 145 DataEntryWriter warWriter = new JarWriter(writer); 149 writer = warWriter; 154 writer = new FilteredDataEntryWriter(new DataEntryParentFilter( 158 writer); 163 DataEntryWriter jarWriter = new JarWriter(writer); [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToXMLStream.java | 142 final java.io.Writer writer = m_writer; local 143 writer.write("<?xml version=\""); 144 writer.write(version); 145 writer.write("\" encoding=\""); 146 writer.write(encoding); 147 writer.write('\"'); 148 writer.write(standalone); 149 writer.write("?>"); 163 writer.write(m_lineSep, 0, m_lineSepLen) 282 final java.io.Writer writer = m_writer; local 357 final java.io.Writer writer = m_writer; local 390 final java.io.Writer writer = m_writer; local [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMMachObjectWriter.cpp | 1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===// 30 void RecordARMScatteredRelocation(MachObjectWriter *Writer, 38 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, 45 bool requiresExternRelocation(MachObjectWriter *Writer, 57 void RecordRelocation(MachObjectWriter *Writer, 147 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, 155 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind()); 167 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); 170 Writer->getSectionAddress(A_SD->getFragment()->getParent()); 183 Value2 = Writer->getSymbolAddress(B_SD, Layout) [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
vtzone.cpp | 876 * Minumum implementations of stream writer/reader, writing/reading 879 * equivalent to the ICU4J implementation, which utilizes java.io.Writer/ [all...] |
/external/icu4c/i18n/ |
vtzone.cpp | 875 * Minumum implementations of stream writer/reader, writing/reading 878 * equivalent to the ICU4J implementation, which utilizes java.io.Writer/ [all...] |
/libcore/luni/src/main/java/java/io/ |
PrintWriter.java | 25 * Wraps either an existing {@link OutputStream} or an existing {@link Writer} 29 * this writer. 31 public class PrintWriter extends Writer { 33 * The writer to print data to. 35 protected Writer out; 50 * stream. By default, the new print writer does not automatically flush its 64 * stream. The parameter {@code autoFlush} determines if the print writer 82 * writer. By default, the new print writer does not automatically flush its 83 * contents to the target writer when a newline is encountered [all...] |
/external/chromium_org/tools/gn/ |
ninja_target_writer.cc | 60 // Call out to the correct sub-type of writer. 62 NinjaCopyTargetWriter writer(target, toolchain, file); 63 writer.Run(); 65 NinjaScriptTargetWriter writer(target, toolchain, file); 66 writer.Run(); 68 NinjaGroupTargetWriter writer(target, toolchain, file); 69 writer.Run(); 74 NinjaBinaryTargetWriter writer(target, toolchain, file); 75 writer.Run();
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
PostInstructionRegisterInfoMethodItem.java | 59 public boolean writeTo(IndentingWriter writer) throws IOException { 74 return writeRegisterInfo(writer, registers); 86 private boolean writeRegisterInfo(IndentingWriter writer, BitSet registers) throws IOException { 94 writer.write('#'); 99 RegisterFormatter.writeTo(writer, encodedMethod.codeItem, registerNum); 100 writer.write('='); 103 writer.write("null"); 105 registerType.writeTo(writer); 107 writer.write(';');
|
SyntheticAccessCommentMethodItem.java | 50 public boolean writeTo(IndentingWriter writer) throws IOException { 51 writer.write('#'); 53 writer.write("calls: "); 55 writer.write("getter for: "); 57 writer.write("setter for: "); 59 ReferenceFormatter.writeReference(writer, accessedMember.accessedMember);
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldWriterTest.java | 20 import java.io.Writer; 27 Writer tobj = new Support_ASimpleWriter(2); 41 Writer tobj = new Support_ASimpleWriter(20); 54 Writer tobj = new Support_ASimpleWriter(21); 68 tobj.append(testString, 20, 21); // Just fill the writer to its limit! 79 Writer tobj = new Support_ASimpleWriter(21); 101 Writer tobj = new Support_ASimpleWriter(21); 108 tobj.write("z".toCharArray()); // Just fill the writer to its limit! 118 Writer tobj = new Support_ASimpleWriter(2); 131 Writer tobj = new Support_ASimpleWriter(21) [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
TwoColumnOutput.java | 23 import java.io.Writer; 31 /** {@code non-null;} underlying writer for final output */ 32 private final Writer out; 43 /** {@code non-null;} left column writer */ 46 /** {@code non-null;} right column writer */ 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 132 * Gets the writer to use to write to the left column. 134 * @return {@code non-null;} the left column writer 136 public Writer getLeft() [all...] |
/dalvik/dx/src/com/android/dx/util/ |
TwoColumnOutput.java | 23 import java.io.Writer; 31 /** {@code non-null;} underlying writer for final output */ 32 private final Writer out; 43 /** {@code non-null;} left column writer */ 46 /** {@code non-null;} right column writer */ 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 132 * Gets the writer to use to write to the left column. 134 * @return {@code non-null;} the left column writer 136 public Writer getLeft() [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
TwoColumnOutput.java | 23 import java.io.Writer; 31 /** {@code non-null;} underlying writer for final output */ 32 private final Writer out; 43 /** {@code non-null;} left column writer */ 46 /** {@code non-null;} right column writer */ 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 132 * Gets the writer to use to write to the left column. 134 * @return {@code non-null;} the left column writer 136 public Writer getLeft() [all...] |
/frameworks/support/v4/java/android/support/v4/content/ |
AsyncTaskLoader.java | 267 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { 268 super.dump(prefix, fd, writer, args); 270 writer.print(prefix); writer.print("mTask="); writer.print(mTask); 271 writer.print(" waiting="); writer.println(mTask.waiting); 274 writer.print(prefix); writer.print("mCancellingTask="); writer.print(mCancellingTask) [all...] |
/external/chromium_org/dbus/ |
test_service.cc | 97 MessageWriter writer(&signal); 98 writer.AppendString(message); 104 MessageWriter writer(&signal); 105 writer.AppendString(message); 278 MessageWriter writer(response.get()); 279 writer.AppendString(text_message); 317 MessageWriter writer(response.get()); 319 AddPropertiesToWriter(&writer); 343 MessageWriter writer(response.get()); 345 writer.AppendVariantOfString("TestService") [all...] |
/external/icu4c/samples/udata/ |
readme.txt | 9 writer.c C source for Writer application, will generate data file to be read by Reader. 10 reader.c C source for Reader application, will read file created by Writer 28 writer 30 IMPORTANT: On some systems, the reader and writer executables may not be in the same directory. If this is the case, this will likely cause a problem with reader looking for the .dat file in the wrong directory). 55 writer
|
writer.vcxproj | 82 <TypeLibraryName>.\x86\Debug/writer.tlb</TypeLibraryName>
93 <PrecompiledHeaderOutputFile>.\x86\Debug/writer.pch</PrecompiledHeaderOutputFile>
108 <OutputFile>.\x86\Debug/writer.exe</OutputFile>
112 <ProgramDatabaseFile>.\x86\Debug/writer.pdb</ProgramDatabaseFile>
122 <TypeLibraryName>.\x64\Debug/writer.tlb</TypeLibraryName>
133 <PrecompiledHeaderOutputFile>.\x64\Debug/writer.pch</PrecompiledHeaderOutputFile>
148 <OutputFile>.\x64\Debug/writer.exe</OutputFile>
152 <ProgramDatabaseFile>.\x64\Debug/writer.pdb</ProgramDatabaseFile>
162 <TypeLibraryName>.\x86\Release/writer.tlb</TypeLibraryName>
174 <PrecompiledHeaderOutputFile>.\x86\Release/writer.pch</PrecompiledHeaderOutputFile> [all...] |
/frameworks/base/core/jni/ |
android_backup_BackupDataOutput.cpp | 49 BackupDataWriter* writer = (BackupDataWriter*)w; local 55 err = writer->WriteEntityHeader(String8(keyUTF), dataSize); 66 BackupDataWriter* writer = (BackupDataWriter*)w; local 78 err = writer->WriteEntityData(dataBytes, size); 89 BackupDataWriter* writer = (BackupDataWriter*)w; local 94 writer->SetKeyPrefix(keyPrefix);
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
FileRotatorTest.java | 31 import com.android.internal.util.FileRotator.Writer; 81 rotate1.combineActive(reader, writer("foo"), currentTime); 97 rotate.combineActive(reader, writer("foo"), currentTime); 105 rotate.combineActive(reader, writer("bar"), currentTime); 118 rotate.combineActive(reader, writer("foo"), currentTime); 125 rotate.combineActive(reader, writer("bar"), currentTime); 137 rotate.combineActive(reader, writer("baz"), currentTime); 150 rotate.combineActive(reader, writer("foo"), currentTime); 157 rotate.combineActive(reader, writer("bar"), currentTime); 180 rotate.combineActive(reader, writer("foo"), currentTime) 384 private static Writer writer(final String value) { method in class:FileRotatorTest [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
NullWriter.java | 19 import java.io.Writer;
22 * This {@link Writer} writes all data to the famous <b>/dev/null</b>.
24 * This <code>Writer</code> has no destination (file/socket etc.) and all
29 public class NullWriter extends Writer {
86 /** @see java.io.Writer#flush() */
91 /** @see java.io.Writer#close() */
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
TwoColumnOutput.java | 35 /** non-null; underlying writer for final output */ 36 private final Writer out; 47 /** non-null; left column writer */ 50 /** non-null; right column writer */ 87 * @param out non-null; writer to send final output to 92 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 136 * Gets the writer to use to write to the left column. 138 * @return non-null; the left column writer 140 public Writer getLeft() { 145 * Gets the writer to use to write to the right column [all...] |
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/ |
operation_linux.cc | 41 scoped_ptr<image_writer_utils::ImageWriter> writer( 46 if (!writer->Open(storage_path)) { 62 base::Passed(&writer), 68 scoped_ptr<image_writer_utils::ImageWriter> writer, 71 WriteCleanUp(reader.Pass(), writer.Pass()); 80 if (writer->Write(buffer, len) == len) { 94 base::Passed(&writer), 97 WriteCleanUp(reader.Pass(), writer.Pass()); 102 if (WriteCleanUp(reader.Pass(), writer.Pass())) { 110 WriteCleanUp(reader.Pass(), writer.Pass()) [all...] |
/external/proguard/src/proguard/ |
OutputWriter.java | 146 // Construct the writer that can write jars, wars, ears, zips, and 148 DataEntryWriter writer = local 153 // The writer will be used to write possibly obfuscated class files. 155 new ClassRewriter(programClassPool, writer); 157 // The writer will also be used to write resource files. 159 new DataEntryCopier(writer); 163 // Wrap the resource writer with a filter and a data entry rewriter, 170 new ManifestRewriter(programClassPool, writer), 171 new DataEntryRewriter(programClassPool, writer)), 175 // Wrap the resource writer with a filter and a data entry renamer [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterChanSatRepresentation.java | 166 public void serializeRepresentation(JsonWriter writer) throws IOException { 167 writer.beginObject(); 169 writer.name(ARGS); 170 writer.beginArray(); 171 writer.value(getValue(MODE_MASTER)); 172 writer.value(getValue(MODE_RED)); 173 writer.value(getValue(MODE_YELLOW)); 174 writer.value(getValue(MODE_GREEN)); 175 writer.value(getValue(MODE_CYAN)); 176 writer.value(getValue(MODE_BLUE)) [all...] |