Lines Matching refs:Writer
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));
244 Writer.reset(new SampleProfileWriterText(OS));
253 return std::move(Writer);