Searched refs:ps (Results 1 – 6 of 6) sorted by relevance
/art/tools/ahat/src/ |
D | HtmlDoc.java | 27 private PrintStream ps; field in HtmlDoc 35 public HtmlDoc(PrintStream ps, DocString title, URI style) { in HtmlDoc() argument 36 this.ps = ps; in HtmlDoc() 38 ps.println("<!DOCTYPE html>"); in HtmlDoc() 39 ps.println("<html>"); in HtmlDoc() 40 ps.println("<head>"); in HtmlDoc() 41 ps.format("<title>%s</title>\n", title.html()); in HtmlDoc() 42 ps.format("<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\">\n", in HtmlDoc() 44 ps.println("</head>"); in HtmlDoc() 45 ps.println("<body>"); in HtmlDoc() [all …]
|
D | HelpHandler.java | 38 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle() local 39 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle() 44 ps.println("No help available."); in handle() 46 ByteStreams.copy(is, ps); in handle() 50 ps.close(); in handle()
|
D | AhatHttpHandler.java | 41 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle() local 43 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle() 54 ps.close(); in handle()
|
D | StaticHandler.java | 44 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle() local 45 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle()
|
D | BitmapHandler.java | 55 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle() local 56 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle()
|
/art/tools/ahat/test/ |
D | PerformanceTest.java | 45 PrintStream ps = new PrintStream(new NullOutputStream()); in bigArray() local 46 HtmlDoc doc = new HtmlDoc(ps, DocString.text("bigArray test"), DocString.uri("style.css")); in bigArray()
|