HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 326 - 350 of 1308) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_optimize.c 73 reader_data->Writer->U.I.PreSub.Opcode,
76 &reader_data->Writer->U.I.PreSub.SrcReg[0],
77 &reader_data->Writer->U.I.PreSub.SrcReg[1])) {
91 if(reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_TEMPORARY &&
92 reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_INPUT &&
136 rc_for_all_reads_src(reader_data->Writer,
458 reader_data->Writer->U.I.DstReg.WriteMask,
460 &reader_data->Writer->U.I.SrcReg[0],
461 &reader_data->Writer->U.I.SrcReg[1])) {
682 struct rc_dst_register * Writer;
838 struct rc_variable * writer = var; local
    [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...]
  /art/compiler/debug/dwarf/
headers.h 28 #include "debug/dwarf/writer.h"
48 Writer<> writer(buffer);
49 size_t cie_header_start_ = writer.data()->size();
50 writer.PushUint32(0); // Length placeholder.
51 writer.PushUint32((format == DW_EH_FRAME_FORMAT) ? 0 : 0xFFFFFFFF); // CIE id.
52 writer.PushUint8(1); // Version.
53 writer.PushString("zR");
54 writer.PushUleb128(DebugFrameOpCodeWriter<Vector>::kCodeAlignmentFactor);
55 writer.PushSleb128(DebugFrameOpCodeWriter<Vector>::kDataAlignmentFactor)
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaPlayerStressTest.java 35 import java.io.Writer;
67 private void writeTestOutput(String filename, Writer output) throws Exception{
79 private void writeTestSummary(Writer output) throws Exception{
166 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true));
  /external/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /external/llvm/lib/ProfileData/
SampleProfWriter.cpp 203 /// \brief Create a sample profile file writer based on the specified format.
207 /// \param Writer The writer to instantiate according to the specified format.
211 /// \returns an error code indicating the status of the created writer.
226 /// \brief Create a sample profile stream writer based on the specified format.
230 /// \param Writer The writer to instantiate according to the specified format.
234 /// \returns an error code indicating the status of the created writer.
239 std::unique_ptr<SampleProfileWriter> Writer;
242 Writer.reset(new SampleProfileWriterBinary(OS))
    [all...]
  /frameworks/av/services/audioflinger/
FastMixer.h 49 virtual void setNBLogWriter(NBLog::Writer *logWriter);
  /libcore/ojluni/src/main/java/java/io/
OutputStreamWriter.java 51 * Writer out
77 public class OutputStreamWriter extends Writer {
PipedWriter.java 36 public class PipedWriter extends Writer {
44 /* This flag records the open status of this particular writer. It
51 * Creates a piped writer connected to the specified piped
63 * Creates a piped writer that is not yet connected to a
74 * Connects this piped writer to a receiver. If this object
79 * <code>src</code> is an unconnected piped writer, they may
112 * Implements the <code>write</code> method of <code>Writer</code>.
PrintWriter.java 56 public class PrintWriter extends Writer {
64 protected Writer out;
99 public PrintWriter (Writer out) {
111 public PrintWriter(Writer out,
165 * The name of the file to use as the destination of this writer.
204 * The name of the file to use as the destination of this writer.
244 * The file to use as the destination of this writer. If the file
275 * The file to use as the destination of this writer. If the file
394 * which also implement the write() methods of Writer
439 * Writer class because it must suppress I/O exceptions
    [all...]
StringWriter.java 41 public class StringWriter extends Writer {
46 * Create a new string writer using the default initial string-buffer
55 * Create a new string writer using the specified initial string-buffer
116 * Appends the specified character sequence to this writer.
133 * appended to this writer.
135 * @return This writer
148 * Appends a subsequence of the specified character sequence to this writer.
170 * @return This writer
186 * Appends the specified character to this writer.
197 * @return This writer
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
namespacetest.cpp 26 #include "rapidjson/writer.h"
48 typedef RAPIDJSON_NAMESPACE::Writer<StringBuffer> WriterType;
52 WriterType writer(buffer);
55 reader.Parse(s, writer);
59 EXPECT_TRUE(writer.IsComplete());
66 writer.Reset(buffer);
67 doc.Accept(writer);
69 EXPECT_TRUE(writer.IsComplete());
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
ModuleFileExtension.h 61 /// custom writer that can then be accessed via a custom reader when
85 /// Create a new module file extension writer, which will be
89 createExtensionWriter(ASTWriter &Writer) = 0;
115 /// Retrieve the module file extension with which this writer is
  /prebuilts/go/darwin-x86/src/hash/
hash.go 12 // Write (via the embedded io.Writer interface) adds more data to the running hash.
14 io.Writer
  /prebuilts/go/darwin-x86/src/runtime/trace/
trace.go 8 // changes of heap size, processor start/stop, etc and writes them to an io.Writer
22 func Start(w io.Writer) error {
  /prebuilts/go/linux-x86/src/hash/
hash.go 12 // Write (via the embedded io.Writer interface) adds more data to the running hash.
14 io.Writer
  /prebuilts/go/linux-x86/src/runtime/trace/
trace.go 8 // changes of heap size, processor start/stop, etc and writes them to an io.Writer
22 func Start(w io.Writer) error {
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 307 StackMapTable.Writer writer = new StackMapTable.Writer(32); local
312 writer.sameFrame(0);
322 toStackMapBody(writer, bb, diffL, offsetDelta, prev);
330 return writer.toStackMapTable(cpool);
346 private void toStackMapBody(StackMapTable.Writer writer, TypedBlock bb,
354 writer.sameFrame(offsetDelta);
358 writer.chopFrame(offsetDelta, -diffL)
469 StackMap.Writer writer = new StackMap.Writer(); local
    [all...]

Completed in 488 milliseconds

<<11121314151617181920>>