Searched defs:indent (Results 1 - 3 of 3) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/response/
H A DTextResponseWriter.java59 String indent = req.getParams().get("indent");
60 if (indent != null && !"".equals(indent) && !"off".equals(indent)) {
75 public void indent() throws IOException { method in class:TextResponseWriter
76 if (doIndent) indent(level);
79 public void indent(int lev) throws IOException { method in class:TextResponseWriter
H A DXMLWriter.java93 String indent = req.getParams().get("indent");
94 if (indent != null) {
95 if ("".equals(indent) || "off".equals(indent)) {
157 // maybe constructed types should always indent first?
219 if (doIndent) indent();
243 if (doIndent) indent();
267 if (doIndent) indent();
288 // indent u
295 public void indent() throws IOException { method in class:XMLWriter
299 public void indent(int lev) throws IOException { method in class:XMLWriter
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DCoreContainer.java789 private void writeProperties(Writer w, Properties props, String indent) throws IOException { argument
791 w.write(indent + "<property");

Completed in 16 milliseconds