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

1 2 3 4 5 6 7 891011>>

  /external/deqp/execserver/
xsProtocol.cpp 160 MessageWriter writer(type, buf);
173 MessageWriter writer(type, buf);
174 writer.put(version);
187 MessageWriter writer(type, buf);
188 writer.put(test.c_str());
204 MessageWriter writer(type, buf);
205 writer.put(name.c_str());
206 writer.put(params.c_str());
207 writer.put(workDir.c_str());
208 writer.put(caseList.c_str())
    [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/fonttools/Lib/fontTools/ttLib/tables/
_p_o_s_t.py 194 def toXML(self, writer, ttFont):
198 writer.simpletag(name, value=value)
199 writer.newline()
201 writer.begintag("psNames")
202 writer.newline()
203 writer.comment("This file uses unique glyph names based on the information\n"
209 writer.newline()
212 writer.simpletag("psName", name=name, psName=psName)
213 writer.newline()
214 writer.endtag("psNames"
    [all...]
O_S_2f_2.py 26 def toXML(self, writer, ttFont):
29 writer.simpletag(name, value=getattr(self, name))
30 writer.newline()
143 def toXML(self, writer, ttFont):
156 writer.begintag("panose")
157 writer.newline()
158 value.toXML(writer, ttFont)
159 writer.endtag("panose")
163 writer.simpletag(name, value=num2binary(value))
165 writer.simpletag(name, value=num2binary(value, 16)
    [all...]
  /external/icu/icu4c/source/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...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
UnresolvedOdexInstructionMethodItem.java 44 public boolean writeTo(IndentingWriter writer) throws IOException {
45 writeThrowTo(writer);
49 private void writeThrowTo(IndentingWriter writer) throws IOException {
50 writer.write("#Replaced unresolvable odex instruction with a throw\n");
51 writer.write("throw ");
52 writeRegister(writer, instruction.objectRegisterNum);
  /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);
  /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() */
  /hardware/intel/common/libva/va/
va_enc.h 47 /** \brief Abstract representation of a bitstream writer. */
73 /** \brief An invalid bitstream writer handle was supplied. */
87 /** \brief Bitstream writer attribute types. */
105 /** \brief Bitstream writer attribute value. */
114 * \brief Allocates a new bitstream writer.
116 * Allocates a new bitstream writer. By default, libva allocates and
130 * \brief Destroys a bitstream writer.
132 * @param[in] bs the bitstream writer to destroy
143 * @param[in] bs the bitstream writer
157 * @param[in] bs the bitstream writer
    [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...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToStream.java 27 import java.io.Writer;
241 final java.io.Writer writer = m_writer; local
242 if (null != writer)
246 if (writer instanceof WriterToUTF8Buffered)
249 ((WriterToUTF8Buffered) writer).flush();
251 ((WriterToUTF8Buffered) writer).flushBuffer();
253 if (writer instanceof WriterToASCI)
256 writer.flush();
261 // Not a great thing if the writer was created
307 final java.io.Writer writer = m_writer; local
365 final java.io.Writer writer = m_writer; local
816 final java.io.Writer writer = m_writer; local
856 final java.io.Writer writer = m_writer; local
1007 final java.io.Writer writer = m_writer; local
1115 final java.io.Writer writer = m_writer; local
1460 final Writer writer = m_writer; local
1943 final java.io.Writer writer = m_writer; local
2012 final java.io.Writer writer = m_writer; local
2216 final java.io.Writer writer = m_writer; local
2419 final java.io.Writer writer = m_writer; local
2493 final java.io.Writer writer = m_writer; local
3154 java.io.Writer writer = local
3551 final java.io.Writer writer = m_writer; local
    [all...]
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
doc_writer_unittest.py 22 '''A mock dictionary passed to a writer as the dictionary of
33 # Create a writer for the tests.
34 self.writer = doc_writer.GetWriter(
41 self.writer.messages = {
64 self.writer.Init()
68 for key in self.writer._STYLE.keys():
69 self.writer._STYLE[key] = 'style_%s;' % key
71 self.writer._STYLE['key1'] = 'style1;'
72 self.writer._STYLE['key2'] = 'style2;'
81 self.writer.BeginTemplate(
    [all...]
  /external/chromium_org/sync/syncable/
write_transaction_info.h 18 WriterTag writer,
30 WriterTag writer; member in struct:syncer::syncable::WriteTransactionInfo
  /external/chromium_org/tools/gn/
config_values_extractors.h 74 template<typename T, class Writer>
78 const Writer& writer,
82 writer(v[i], out);
88 template<typename T, class Writer>
92 const Writer& writer,
95 ConfigValuesToStream(iter.cur(), getter, writer, out);
  /external/junit/src/junit/framework/
TestFailure.java 47 PrintWriter writer= new PrintWriter(stringWriter); local
48 thrownException().printStackTrace(writer);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
PictureParameterSet.java 190 CAVLCWriter writer = new CAVLCWriter(out); local
192 writer.writeUE(pic_parameter_set_id, "PPS: pic_parameter_set_id");
193 writer.writeUE(seq_parameter_set_id, "PPS: seq_parameter_set_id");
194 writer.writeBool(entropy_coding_mode_flag,
196 writer.writeBool(pic_order_present_flag, "PPS: pic_order_present_flag");
197 writer.writeUE(num_slice_groups_minus1, "PPS: num_slice_groups_minus1");
199 writer.writeUE(slice_group_map_type, "PPS: slice_group_map_type");
205 writer.writeUE(run_length_minus1[iGroup], "PPS: ");
209 writer.writeUE(top_left[iGroup], "PPS: ");
210 writer.writeUE(bottom_right[iGroup], "PPS: ")
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PostInstructionRegisterInfoMethodItem.java 58 public boolean writeTo(IndentingWriter writer) throws IOException {
73 return writeRegisterInfo(writer, registers);
85 private boolean writeRegisterInfo(IndentingWriter writer, BitSet registers) throws IOException {
91 writer.write('#');
95 registerFormatter.writeTo(writer, registerNum);
96 writer.write('=');
97 registerType.writeTo(writer);
98 writer.write(';');
  /external/chromium_org/dbus/
message_unittest.cc 21 MessageWriter writer(message.get());
22 writer.AppendByte(123); // The input is 123.
44 MessageWriter writer(message.get());
47 writer.AppendByte(0);
48 writer.AppendBool(true);
49 writer.AppendInt16(2);
50 writer.AppendUint16(3);
51 writer.AppendInt32(4);
52 writer.AppendUint32(5);
53 writer.AppendInt64(6)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump_unittest.cc 79 RtpDumpWriter writer(&stream);
84 ASSERT_TRUE(RtpTestUtility::WriteTestPackets(1, false, kTestSsrc, &writer));
120 RtpDumpWriter writer(&stream);
122 RtpTestUtility::GetTestPacketCount(), false, kTestSsrc, &writer));
158 RtpDumpWriter writer(&stream);
160 RtpTestUtility::GetTestPacketCount(), true, kTestSsrc, &writer));
180 RtpDumpWriter writer(&stream);
181 writer.set_packet_filter(PF_RTPHEADER);
186 RtpTestUtility::GetTestPacketCount(), false, kTestSsrc, &writer));
188 RtpTestUtility::GetTestPacketCount(), true, kTestSsrc, &writer));
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_extension.cc 243 void PrintCountAndSize(MallocExtensionWriter* writer,
252 writer->append(buf, strlen(buf));
255 void PrintHeader(MallocExtensionWriter* writer,
266 writer->append(kTitle, strlen(kTitle));
267 PrintCountAndSize(writer, total_count, total_size);
268 writer->append(" ", 1);
269 writer->append(label, strlen(label));
270 writer->append("\n", 1);
273 void PrintStackEntry(MallocExtensionWriter* writer, void** entry) {
274 PrintCountAndSize(writer, Count(entry), Size(entry))
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.java 23 import java.io.Writer;
53 // the writer that writes to the output stream
54 private Writer writer; field in class:StreamHandler
56 // the flag indicating whether the writer has been initialized
66 this.writer = null;
92 this.writer = null;
119 // initialize the writer
123 this.writer = new OutputStreamWriter(this.os);
126 this.writer = new OutputStreamWriter(this.os, getEncoding())
    [all...]
  /external/chromium_org/third_party/skia/tests/
AndroidPaintTest.cpp 11 SkWriteBuffer writer; local
12 src.flatten(writer);
14 const size_t size = writer.bytesWritten();
16 writer.writeToMemory(bytes.get());
  /external/chromium_org/tools/telemetry/third_party/png/
README.chromium 1 Name: Pure Python PNG Reader/Writer

Completed in 1629 milliseconds

1 2 3 4 5 6 7 891011>>