Home | History | Annotate | Download | only in wm

Lines Matching defs:out

204             XmlSerializer out = new FastXmlSerializer();
205 out.setOutput(stream, StandardCharsets.UTF_8.name());
206 out.startDocument(null, true);
207 out.startTag(null, "display-settings");
210 out.startTag(null, "display");
211 out.attribute(null, "name", entry.name);
213 out.attribute(null, "overscanLeft", Integer.toString(entry.overscanLeft));
216 out.attribute(null, "overscanTop", Integer.toString(entry.overscanTop));
219 out.attribute(null, "overscanRight", Integer.toString(entry.overscanRight));
222 out.attribute(null, "overscanBottom", Integer.toString(entry.overscanBottom));
224 out.endTag(null, "display");
227 out.endTag(null, "display-settings");
228 out.endDocument();