Searched refs:_printer (Results 1 - 7 of 7) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DHTMLSerializer.java208 if ( _printer == null )
228 _printer.printText( '>' );
234 _printer.breakLine();
269 _printer.printText( '<' );
271 _printer.printText( rawName.toLowerCase(Locale.ENGLISH) );
273 _printer.printText( rawName );
274 _printer.indent();
281 _printer.printSpace();
287 _printer.printText( name );
288 _printer
[all...]
H A DBaseMarkupSerializer.java217 protected Printer _printer; field in class:BaseMarkupSerializer
368 _printer = new IndentPrinter( _writer, _format );
371 _printer = new Printer( _writer, _format );
417 _printer.flush();
418 if ( _printer.getException() != null )
419 throw _printer.getException();
436 _printer.flush();
437 if ( _printer.getException() != null )
438 throw _printer.getException();
457 _printer
[all...]
H A DXML11Serializer.java201 _printer.printText( "<![CDATA[" );
204 saveIndent = _printer.getNextIndent();
205 _printer.setNextIndent( 0 );
212 _printer.printText("]]]]><![CDATA[>");
227 _printer.printText(ch);
231 _printer.printText("]]>&#x");
232 _printer.printText(Integer.toHexString(ch));
233 _printer.printText(";<![CDATA[");
236 _printer.setNextIndent( saveIndent );
248 saveIndent = _printer
[all...]
H A DXMLSerializer.java237 if (_printer == null) {
255 _printer.printText( '>' );
258 _printer.printText( "]]>" );
266 _printer.breakLine();
296 _printer.printText( '<' );
297 _printer.printText( rawName );
298 _printer.indent();
305 _printer.printSpace();
326 _printer.printText( name );
327 _printer
[all...]
H A DTextSerializer.java178 _printer.flush();
242 _printer.leaveDTD();
/openjdk10/hotspot/src/share/vm/opto/
H A Dcompile.hpp419 IdealGraphPrinter* _printer; member in class:Compile
548 IdealGraphPrinter* printer() { return _printer; }
720 if (_printer && _printer->should_print(1)) {
721 _printer->begin_method();
739 if (_printer && _printer->should_print(level)) {
740 _printer->print_method(CompilerPhaseTypeHelper::to_string(cpt), level);
756 if (_printer && _printer
[all...]
H A Dcompile.cpp654 _printer(IdealGraphPrinter::printer()),
678 if (_printer != NULL) {
679 _printer->set_compile(this);
845 if (_printer && _printer->should_print(1)) {
846 _printer->print_inlining();
977 _printer(NULL),

Completed in 120 milliseconds