Searched defs:_writer (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DWriterOutputBuffer.java46 private Writer _writer; field in class:WriterOutputBuffer
55 _writer = new BufferedWriter(writer, BUFFER_SIZE);
60 _writer.flush();
70 _writer.write(s);
80 _writer.write(s, from, to);
90 _writer.write(ch);
H A DTransletOutputHandlerFactory.java66 private Writer _writer = null; field in class:TransletOutputHandlerFactory
106 _writer = writer;
188 if (_writer != null)
190 result.setWriter(_writer);
/openjdk7/hotspot/src/share/vm/utilities/
H A DdefaultStream.hpp52 _writer = -1;
84 // advisory lock/unlock of _writer field:
86 intx _writer; // thread_id with current rights to output member in class:defaultStream
91 intx writer() { return _writer; }
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DPrinter.java60 protected Writer _writer; field in class:Printer
106 _writer = writer;
138 _docWriter = _writer;
139 _writer = _dtdWriter;
153 if ( _writer == _dtdWriter ) {
156 _writer = _docWriter;
170 _writer.write( _buffer );
193 _writer.write( _buffer );
215 _writer.write( _buffer );
237 _writer
[all...]
H A DBaseMarkupSerializer.java230 private Writer _writer; field in class:BaseMarkupSerializer
297 _writer = null;
309 _writer = writer;
347 if ( _writer == null && _output == null ) {
359 _writer = _encodingInfo.getWriter(_output);
364 _printer = new IndentPrinter( _writer, _format );
367 _printer = new Printer( _writer, _format );
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInputDebugger.java57 /** Field _writer */
58 private Writer _writer = null; field in class:XMLSignatureInputDebugger
191 this._writer = new StringWriter();
194 this._writer.close();
196 return this._writer.toString();
202 this._writer = null;
229 this._writer.write(HTMLPrefix);
236 this._writer.write(HTMLSuffix);
241 this._writer.write(HTMLIncludePrefix);
243 this._writer
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DSAX2StAXWriter.java48 XMLStreamWriter _writer; field in class:SAX2StAXWriter
56 _writer = writer;
60 return _writer;
65 _writer.writeStartDocument();
74 _writer.writeEndDocument();
75 _writer.flush();
86 _writer.writeCharacters(ch, start, length);
99 _writer.writeStartElement(prefix, localName, namespaceURI);
104 _writer.writeNamespace(nsh.prefix, nsh.namespaceName);
110 _writer
[all...]
H A DSAXEventSerializer.java47 private Writer _writer; field in class:SAXEventSerializer
55 _writer = new OutputStreamWriter(s);
63 _writer.write("<sax xmlns=\"http://www.sun.com/xml/sax-events\">\n");
64 _writer.write("<startDocument/>\n");
65 _writer.flush();
74 _writer.write("<endDocument/>\n");
75 _writer.write("</sax>");
76 _writer.flush();
77 _writer.close();
109 _writer
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizerBase.java106 OutputStream _writer = new UnsyncByteArrayOutputStream();//null; field in class:CanonicalizerBase
183 * @param _writer The _writer to set.
185 public void setWriter(OutputStream _writer) { argument
186 this._writer = _writer;
211 this._writer.close();
212 if (this._writer instanceof ByteArrayOutputStream) {
213 byte []result=((ByteArrayOutputStream)this._writer).toByteArray();
215 ((ByteArrayOutputStream)this._writer)
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DheapDumper.cpp1144 DumpWriter* _writer; member in class:SymbolTableDumper
1145 DumpWriter* writer() const { return _writer; }
1147 SymbolTableDumper(DumpWriter* writer) { _writer = writer; }
1167 DumpWriter* _writer; member in class:JNILocalsDumper
1170 DumpWriter* writer() const { return _writer; }
1173 _writer = writer;
1199 DumpWriter* _writer; member in class:JNIGlobalsDumper
1200 DumpWriter* writer() const { return _writer; }
1204 _writer = writer;
1229 DumpWriter* _writer; member in class:MonitorUsedDumper
1247 DumpWriter* _writer; member in class:StickyClassDumper
1279 DumpWriter* _writer; member in class:HeapObjectDumper
[all...]

Completed in 75 milliseconds