/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);
|
/frameworks/av/services/audioflinger/ |
FastCapture.h | 42 virtual void setLog(NBLog::Writer *logWriter);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
WriterTest.java | 19 import java.io.Writer; 26 * java.io.Writer#append(char) 30 MockWriter writer = new MockWriter(20); local 31 writer.append(testChar); 32 assertEquals(String.valueOf(testChar), String.valueOf(writer 34 writer.close(); 38 * java.io.Writer#append(CharSequence) 42 MockWriter writer = new MockWriter(20); local 43 writer.append(testString); 44 assertEquals(testString, String.valueOf(writer.getContents())) 54 MockWriter writer = new MockWriter(20); local [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/example/simplewriter/ |
simplewriter.cpp | 1 #include "rapidjson/writer.h" 10 Writer<StringBuffer> writer(s); 12 writer.StartObject(); 13 writer.String("hello"); 14 writer.String("world"); 15 writer.String("t"); 16 writer.Bool(true); 17 writer.String("f"); 18 writer.Bool(false) [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/gcprog/ |
gcprog.go | 33 // A Writer is an encoder for GC programs. 35 // The typical use of a Writer is to call Init, maybe call Debug, 38 type Writer struct { 43 debug io.Writer 49 func (w *Writer) Init(writeByte func(byte)) { 53 // Debug causes the writer to print a debugging trace to out 56 func (w *Writer) Debug(out io.Writer) { 61 func (w *Writer) BitIndex() int64 { 66 func (w *Writer) byte(x byte) [all...] |
/prebuilts/go/darwin-x86/test/ |
typeswitch3.go | 32 _, _ = r.(io.Writer) 35 case io.Writer:
|
/prebuilts/go/linux-x86/src/cmd/internal/gcprog/ |
gcprog.go | 33 // A Writer is an encoder for GC programs. 35 // The typical use of a Writer is to call Init, maybe call Debug, 38 type Writer struct { 43 debug io.Writer 49 func (w *Writer) Init(writeByte func(byte)) { 53 // Debug causes the writer to print a debugging trace to out 56 func (w *Writer) Debug(out io.Writer) { 61 func (w *Writer) BitIndex() int64 { 66 func (w *Writer) byte(x byte) [all...] |
/prebuilts/go/linux-x86/test/ |
typeswitch3.go | 32 _, _ = r.(io.Writer) 35 case io.Writer:
|
/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/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...] |
/external/v8/src/ |
gdb-jit.cc | 41 class Writer BASE_EMBEDDED { 43 explicit Writer(DebugObject* debug_object) 50 ~Writer() { 61 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } 76 Writer* w_; 179 virtual void WriteBody(Writer::Slot<THeader> header, Writer* writer) { 180 uintptr_t start = writer->position(); 181 if (WriteBodyInternal(writer)) { [all...] |
/art/compiler/debug/dwarf/ |
debug_abbrev_writer.h | 27 #include "debug/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/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.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/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
RawResourceLoaderTest.java | 15 import java.io.Writer; 44 Writer writer = new StringWriter(); local 50 writer.write(buffer, 0, n); 55 return writer.toString();
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
dump.java | 40 import java.io.Writer; 45 Writer writer = null; local 48 writer = new BufferedWriter(new FileWriter(dumpFileName)); 57 annotator.writeAnnotations(writer); 62 if (writer != null) { 64 writer.close();
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
InputOutputExceptionTest.java | 20 import java.io.Writer; 64 private static class BrokenWriter extends Writer {
|
/libcore/support/src/test/java/tests/support/ |
Support_ASimpleWriter.java | 4 import java.io.Writer; 12 public class Support_ASimpleWriter extends Writer {
|