/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlSerializer.java | 51 private boolean[] indent = new boolean[4]; field in class:KXmlSerializer 62 if (indent.length <= depth) { 64 System.arraycopy(indent, 0, hlp, 0, depth); 65 indent = hlp; 67 indent[depth] = indent[depth - 1]; 178 "http://xmlpull.org/v1/doc/features.html#indent-output" 181 ? indent[depth] 258 if ("http://xmlpull.org/v1/doc/features.html#indent-output" 260 indent[depth] = value [all...] |
/external/libvpx/libvpx/build/make/ |
gen_msvs_proj.sh | 71 indent="" 73 indent="${indent}${indent1}" 76 indent="${indent%${indent1}}" 84 echo "${indent}${opt%%=*}=\"${optval}\"" 92 echo "${indent}<${tag}" 95 echo "${indent}>" 97 echo "${indent}<${tag}>" 105 echo "${indent}</${tag}> [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFDebugInfoEntry.cpp | 25 unsigned indent) const { 37 OS.indent(indent) << tagString; 39 OS.indent(indent) << format("DW_TAG_Unknown_%x", getTag()); 45 dumpAttribute(OS, u, &offset, AttrSpec.Attr, AttrSpec.Form, indent); 51 child->dump(OS, u, recurseDepth-1, indent+2); 60 OS.indent(indent) << "NULL\n"; 69 unsigned indent) const [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/ |
gen_msvs_proj.sh | 71 indent="" 73 indent="${indent}${indent1}" 76 indent="${indent%${indent1}}" 84 echo "${indent}${opt%%=*}=\"${optval}\"" 92 echo "${indent}<${tag}" 95 echo "${indent}>" 97 echo "${indent}<${tag}>" 105 echo "${indent}</${tag}> [all...] |
/external/icu/icu4c/source/samples/cal/ |
cal.c | 69 static void indent(int32_t count, FILE *f); 376 /* Indent a certain number of spaces */ 378 indent(int32_t count, function 459 indent(pad / 2, stdout); 485 /* Indent the correct number of spaces for the first week */ 492 indent(lens[i] + 1, stdout); 501 /* Calculate the justification and indent */ 503 indent(pad, stdout); 585 indent(pad / 2, stdout); 602 indent(pad / 2, stdout) [all...] |
/external/chromium_org/dbus/ |
message.cc | 93 std::string Message::ToStringInternal(const std::string& indent, 104 output += indent + "byte " + base::StringPrintf("%d", value) + "\n"; 111 output += indent + "bool " + (value ? "true" : "false") + "\n"; 118 output += indent + "int16 " + base::StringPrintf("%d", value) + "\n"; 125 output += indent + "uint16 " + base::StringPrintf("%d", value) + "\n"; 132 output += indent + "int32 " + base::StringPrintf("%d", value) + "\n"; 139 output += indent + "uint32 " + base::StringPrintf("%u", value) + "\n"; 146 output += (indent + "int64 " + 154 output += (indent + "uint64 " + 162 output += indent + "double " + base::StringPrintf("%f", value) + "\n" [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTreeAsText.cpp | 429 void write(TextStream& ts, const RenderObject& o, int indent, RenderAsTextBehavior behavior) 432 write(ts, *toRenderSVGShape(&o), indent); 436 writeSVGGradientStop(ts, *toRenderSVGGradientStop(&o), indent); 440 writeSVGResourceContainer(ts, o, indent); 444 writeSVGContainer(ts, o, indent); 448 write(ts, *toRenderSVGRoot(&o), indent); 452 writeSVGText(ts, *toRenderSVGText(&o), indent); 456 writeSVGInlineText(ts, *toRenderSVGInlineText(&o), indent); 460 writeSVGImage(ts, *toRenderSVGImage(&o), indent); 464 writeIndent(ts, indent); [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
XSLOutputAttributes.java | 31 * <xsl:output method="xml" omit-xml-declaration="no" indent="yes"/> 42 * indent 83 * @return the number of spaces to indent for each indentation level. 151 * Sets the value coming from the xsl:output indent stylesheet 153 * @param indent true if the output document should be indented to visually 156 public void setIndent(boolean indent); 192 * <li> "{http://xml.apache.org/xalan}indent-amount" 215 * <li> "{http://xml.apache.org/xalan}indent-amount" 230 * <li> "{http://xml.apache.org/xalan}indent-amount"
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
IssuingDistributionPoint.java | 258 String indent = " "; local 260 buf.append(indent); 264 buf.append(indent); 265 buf.append(indent);
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_print_visitor.h | 47 void indent(void);
|
/external/chromium_org/third_party/simplejson/ |
tool.py | 34 json.dump(obj, outfile, sort_keys=True, indent=' ', use_decimal=True)
|
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
doc_writer.py | 237 def _PythonObjectToPlist(self, obj, indent=''): 243 return [ '%s<%s/>' % (indent, 'true' if obj else 'false') ] 245 return [ '%s<integer>%s</integer>' % (indent, obj) ] 247 return [ '%s<string>%s</string>' % (indent, obj) ] 249 result = [ '%s<array>' % indent ] 251 result += self._PythonObjectToPlist(item, indent + ' ') 252 result.append('%s</array>' % indent) 255 result = [ '%s<dict>' % indent ] 257 result.append('%s<key>%s</key>' % (indent + ' ', key)) 258 result += self._PythonObjectToPlist(obj[key], indent + ' ' [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
inspector_memory.py | 45 json.dumps(res, indent=2))
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
ChainedData.java | 196 public void toString(StringBuilder out, int indent) { 198 d.toString(out, indent); 203 public void write(Appendable out, int indent) throws IOException { 205 d.write(out, indent);
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
SyntaxTreeDumper.java | 41 private int indent; field in class:SyntaxTreeDumper 57 indent++; 62 indent--; 121 for (int i = 0; i < indent; i++) {
|
/external/libexif/libexif/ |
exif-entry.h | 170 * \param[in] indent how many levels deep to indent the data 172 void exif_entry_dump (ExifEntry *entry, unsigned int indent);
|
/external/ltrace/ |
options.h | 39 int indent; /* -n: indent trace output according to program flow */ member in struct:options_t
|
/external/mesa3d/src/glsl/ |
ir_print_visitor.h | 47 void indent(void);
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/ |
AnnotationEncodedValueAdaptor.java | 52 writer.indent(4);
|
ArrayEncodedValueAdaptor.java | 48 writer.indent(4);
|
/frameworks/base/tools/aapt/ |
IndentPrinter.h | 13 void indent(int amount = 1) { function in class:IndentPrinter
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
FormatSpec.java | 345 final StringBuilder indent = new StringBuilder(); local 347 indent.append("H:"); 350 indent.append(" "); 355 s.append(indent);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/ |
test_fail.py | 101 self.assertRaises(TypeError, self.dumps, data, indent=True)
|
test_separators.py | 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
tool.py | 35 indent=4, separators=(',', ': '))
|