Home
last modified time | relevance | path

Searched refs:ps (Results 1 – 6 of 6) sorted by relevance

/art/tools/ahat/src/
DHtmlDoc.java27 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 …]
DHelpHandler.java38 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()
DAhatHttpHandler.java41 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()
DStaticHandler.java44 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle() local
45 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle()
DBitmapHandler.java55 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/
DPerformanceTest.java45 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()