Home | History | Annotate | Download | only in utils

Lines Matching defs:pw

56   public DefaultErrorHandler(PrintWriter pw)
58 m_pw = pw;
64 public DefaultErrorHandler(PrintStream pw)
66 m_pw = new PrintWriter(pw, true);
119 PrintWriter pw = getErrorWriter();
121 printLocation(pw, exception);
122 pw.println("Parser warning: " + exception.getMessage());
200 PrintWriter pw = getErrorWriter();
202 printLocation(pw, exception);
203 pw.println(exception.getMessage());
236 PrintWriter pw = getErrorWriter();
238 printLocation(pw, exception);
239 pw.println(exception.getMessage());
271 PrintWriter pw = getErrorWriter();
273 printLocation(pw, exception);
274 pw.println(exception.getMessage());
310 public static void printLocation(PrintStream pw, TransformerException exception)
312 printLocation(new PrintWriter(pw), exception);
315 public static void printLocation(java.io.PrintStream pw, org.xml.sax.SAXParseException exception)
317 printLocation(new PrintWriter(pw), exception);
320 public static void printLocation(PrintWriter pw, Throwable exception)
357 pw.print(id + "; " +XMLMessages.createXMLMessage("line", null) + locator.getLineNumber()
361 pw.print("("+XMLMessages.createXMLMessage(XMLErrorResources.ER_LOCATION_UNKNOWN, null)+")");