HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 101 - 125 of 591) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/include/clang/Frontend/
PCHContainerOperations.h 99 void registerWriter(std::unique_ptr<PCHContainerWriter> Writer) {
100 Writers[Writer->getFormat()] = std::move(Writer);
  /external/smali/util/src/main/java/org/jf/util/
OldWrappedIndentingWriter.java 36 import java.io.Writer;
39 * Writer that wraps another writer and passes width-limited and
66 * @param out non-null; writer to send final output to
71 public OldWrappedIndentingWriter(Writer out, int width, String prefix) {
96 * @param out non-null; writer to send final output to
100 public OldWrappedIndentingWriter(Writer out, int width) {
  /external/llvm/unittests/ProfileData/
InstrProfTest.cpp 45 InstrProfWriter Writer;
48 void SetUp() { Writer.setOutputSparse(false); }
58 void SetUp() { Writer.setOutputSparse(true); }
63 void SetUp() { Writer.setOutputSparse(GetParam()); }
67 auto Profile = Writer.writeBuffer();
74 NoError(Writer.addRecord(std::move(Record)));
75 auto Profile = Writer.writeBuffer();
93 NoError(Writer.addRecord(std::move(Record1)));
94 NoError(Writer.addRecord(std::move(Record2)));
95 auto Profile = Writer.writeBuffer()
    [all...]
  /external/clang/lib/Frontend/
TestModuleFileExtension.cpp 19 TestModuleFileExtension::Writer::~Writer() { }
21 void TestModuleFileExtension::Writer::writeExtensionContents(
100 return std::unique_ptr<ModuleFileExtensionWriter>(new Writer(this));
  /external/jsoncpp/include/json/
writer.h 28 class JSON_API Writer {
30 virtual ~Writer();
43 class JSON_API FastWriter : public Writer {
50 /** \brief Drop the "null" string from the writer's output for nullValues.
59 public: // overridden from Writer
94 class JSON_API StyledWriter : public Writer {
99 public: // overridden from Writer
164 * \note There is no point in deriving from Writer, since write() should not
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Spdy3Test.java 68 // Check writer sends the same bytes.
87 Spdy3.Writer writer = new Spdy3.Writer(new Buffer(), true); local
88 writer.sendDataFrame(expectedStreamId, 0, source, (int) source.size());
92 new Spdy3.Writer(new Buffer(), true).windowUpdate(expectedStreamId, increment);
98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DebugSubsection.h 42 virtual Error commit(BinaryStreamWriter &Writer) const = 0;
SymbolSerializer.h 36 BinaryStreamWriter Writer;
44 if (auto EC = Writer.writeObject(Prefix))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DebugChecksumsSubsection.cpp 95 Error DebugChecksumsSubsection::commit(BinaryStreamWriter &Writer) const {
101 if (auto EC = Writer.writeObject(Header))
103 if (auto EC = Writer.writeArray(makeArrayRef(FC.Checksum)))
105 if (auto EC = Writer.padToAlignment(4))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
NamedStreamMap.cpp 67 Error NamedStreamMap::commit(BinaryStreamWriter &Writer) const {
69 if (auto EC = Writer.writeInteger<uint32_t>(NamesBuffer.size()))
74 if (auto EC = Writer.writeFixedString(Data))
78 if (auto EC = OffsetIndexMap.commit(Writer))
  /frameworks/av/services/audioflinger/
FastCapture.h 42 virtual void setNBLogWriter(NBLog::Writer *logWriter);
  /external/clang/include/clang/Serialization/
ASTWriter.h 1 //===--- ASTWriter.h - AST File Writer --------------------------*- C++ -*-===//
109 /// \brief The bitstream writer used to emit this precompiled header.
470 ModuleFileExtensionWriter &Writer);
497 /// \brief Create a new precompiled header writer that outputs to
694 ASTWriter *Writer;
724 ASTRecordWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
725 : Writer(&Writer), Record(&Record) {}
730 : Writer(Parent.Writer), Record(&Record) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
llvm-readobj.cpp 385 ScopedPrinter &Writer,
391 return createCOFFDumper(Obj, Writer, Result);
393 return createELFDumper(Obj, Writer, Result);
395 return createMachODumper(Obj, Writer, Result);
397 return createWasmDumper(Obj, Writer, Result);
403 static void dumpObject(const ObjectFile *Obj, ScopedPrinter &Writer) {
405 if (std::error_code EC = createDumper(Obj, Writer, Dumper))
409 Writer.startLine() << "\n";
410 Writer.printString("File", Obj->getFileName());
411 Writer.printString("Format", Obj->getFileFormatName())
    [all...]
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 217 // Transfer \a Segment from \a Obj to the output file. This calls into \a Writer
228 const object::MachOObjectFile &Obj, MCObjectWriter &Writer,
256 Writer.writeBytes(
263 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect)));
270 MCAsmLayout &Layout, MachObjectWriter &Writer) {
271 Writer.writeSegmentLoadCommand("__DWARF", NumSections, VMAddr,
286 Writer.writeSection(Layout, *Sec, VMAddr, FileOffset, 0, 0, 0);
324 auto &Writer = static_cast<MachObjectWriter &>(MCAsm.getWriter());
344 bool Is64Bit = Writer.is64Bit();
425 Writer.writeHeader(MachO::MH_DSYM, NumLoadCommands, LoadCommandSize, false)
    [all...]
  /art/libelffile/dwarf/
debug_abbrev_writer.h 28 #include "dwarf/writer.h"
33 // Writer for the .debug_abbrev.
40 class DebugAbbrevWriter final : private Writer<Vector> {
45 : Writer<Vector>(buffer),
  /build/kati/
query.go 22 func showDeps(w io.Writer, n *DepNode, indent int, seen map[string]int) {
43 func showNode(w io.Writer, n *DepNode) {
67 func handleNodeQuery(w io.Writer, q string, nodes []*DepNode) {
77 func Query(w io.Writer, q string, g *DepGraph) {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 21 import java.io.Writer;
23 public class Support_StringWriter extends Writer {
29 * <code>lock</code> used to synchronize access to this Writer.
40 * the <code>lock</code> used to synchronize access to this Writer.
52 * Close this Writer. This is the concrete implementation required. This
62 * Flush this Writer. This is the concrete implementation required. This
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/
KeycodeMapToXml.java 5 import java.io.Writer;
26 /** Writes the given key code map in XML format to the provided writer. */
27 public static void writeToXml(KeycodeMap keycodeMap, Platform platform, Writer writer) {
28 XmlWriter xmlWriter = XmlWriter.newXmlWriter(writer);
  /external/guava/guava-tests/test/com/google/common/io/
TestCharSink.java 24 import java.io.Writer;
54 public Writer openStream() throws IOException {
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/
Main.java 16 import java.io.Writer;
26 private static final PrintWriter NUL = new PrintWriter(new Writer() {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLDocument.java 16 import java.io.Writer;
37 * Creates a new HTML document based on the given writer.
39 * @param writer
40 * writer for content output
44 * in case of problems with the writer
46 public HTMLDocument(final Writer writer, final String encoding)
48 super(ROOT, PUBID, SYSTEM, encoding, false, writer);
70 final HTMLElement element = new HTMLElement(writer, name);
80 * in case of problems with the writer
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
DirectorySourceFileLocatorTest.java 24 import java.io.Writer;
64 final Writer writer = new OutputStreamWriter( local
66 writer.write("Source");
67 writer.close();
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecordBuilder.h 65 llvm::support::endian::Writer<llvm::support::endianness::little> Writer;
  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/
HpackRoundTripTest.java 45 private Hpack.Writer hpackWriter = new Hpack.Writer(bytesOut);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
InputOutputExceptionTest.java 20 import java.io.Writer;
64 private static class BrokenWriter extends Writer {

Completed in 1007 milliseconds

1 2 3 45 6 7 8 91011>>