HomeSort by relevance Sort by last modified time
    Searched refs:indent (Results 76 - 100 of 945) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTreeAsText.h 57 void write(TextStream&, const RenderObject&, int indent = 0, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
65 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const LayoutRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
SourceGraphic.cpp 65 TextStream& SourceGraphic::externalRepresentation(TextStream& ts, int indent) const
67 writeIndent(ts, indent);
FEMerge.cpp 74 TextStream& FEMerge::externalRepresentation(TextStream& ts, int indent) const
76 writeIndent(ts, indent);
83 inputEffect(i)->externalRepresentation(ts, indent + 1);
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
t_bitst.c 65 BIT_STRING_BITNAME *tbl, int indent)
69 BIO_printf(out, "%*s", indent, "");
asn1_locl.h 86 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
91 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
103 int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
107 int indent, ASN1_PCTX *pctx);
  /external/chromium_org/v8/src/
json.js 50 function SerializeArray(value, replacer, stack, indent, gap) {
54 var stepback = indent;
55 indent += gap;
60 indent, gap);
70 var separator = ",\n" + indent;
71 final = "[\n" + indent + partial.join(separator) + "\n" +
80 function SerializeObject(value, replacer, stack, indent, gap) {
84 var stepback = indent;
85 indent += gap;
92 var strP = JSONSerialize(p, value, replacer, stack, indent, gap)
    [all...]
prettyprinter.cc 688 IndentedScope indent(this, s);
695 { IndentedScope indent(this, "FUNC");
708 IndentedScope indent(this, "DECLS");
718 IndentedScope indent(this, "PARAMS");
743 IndentedScope indent(this, block_txt);
767 IndentedScope indent(this, "MODULE");
774 IndentedScope indent(this, "IMPORT");
781 IndentedScope indent(this, "EXPORT ");
787 IndentedScope indent(this, "MODULE LITERAL");
793 IndentedScope indent(this, "MODULE VARIABLE")
    [all...]
  /external/llvm/lib/Analysis/
RegionPrinter.cpp 104 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(&R)
106 O.indent(2 * (depth + 1)) << "label = \"\";\n";
109 O.indent(2 * (depth + 1)) << "style = filled;\n";
110 O.indent(2 * (depth + 1)) << "color = "
114 O.indent(2 * (depth + 1)) << "style = solid;\n";
115 O.indent(2 * (depth + 1)) << "color = "
126 O.indent(2 * (depth + 1)) << "Node"
130 O.indent(2 * depth) << "}\n";
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObjectList.java 137 * @param indent int to set
140 public String debugDump(int indent) {
141 return super.debugDump(indent);
  /external/openssl/crypto/asn1/
t_bitst.c 65 BIT_STRING_BITNAME *tbl, int indent)
69 BIO_printf(out, "%*s", indent, "");
asn1_locl.h 86 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
91 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
103 int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
107 int indent, ASN1_PCTX *pctx);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
ClassDataItem.java 78 out.indent();
81 out.indent();
90 out.indent();
94 out.indent();
103 out.indent();
107 out.indent();
116 out.indent();
120 out.indent();
  /system/media/camera/docs/
metadata-parser-sanity-check 51 tidy -indent -xml -quiet $thisdir/metadata_properties.xml > $tmp_tidy1
52 tidy -indent -xml -quiet $tmp_out > $tmp_tidy2
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementMicrotaskStepDispatcher.h 28 void show(unsigned indent);
CustomElementMicrotaskImportStep.cpp 98 void CustomElementMicrotaskImportStep::show(unsigned indent)
100 fprintf(stderr, "%*sImport(wait=%d sync=%d, url=%s)\n", indent, "", shouldWaitForImport(), m_import && m_import->isSync(), m_import ? m_import->url().string().utf8().data() : "null");
101 m_queue->show(indent + 1);
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_writer_base_unittest.py 26 child.toprettyxml(indent=' ') for child in parent.childNodes)
  /external/chromium_org/tools/gyp/pylib/gyp/
xml_fix.py 28 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""):
29 # indent = current indentation
32 writer.write(indent+"<" + self.tagName)
45 node.writexml(writer, indent + addindent, addindent, newl)
46 writer.write("%s</%s>%s" % (indent, self.tagName, newl))
  /frameworks/native/include/binder/
Debug.h 37 void printHexData(int32_t indent, const void *buf, size_t length,
  /external/chromium_org/tools/gn/
parse_tree.cc 78 void AccessorNode::Print(std::ostream& out, int indent) const {
79 out << IndentFor(indent) << "ACCESSOR\n";
80 out << IndentFor(indent + 1) << base_.value() << "\n";
82 index_->Print(out, indent + 1);
84 member_->Print(out, indent + 1);
193 void BinaryOpNode::Print(std::ostream& out, int indent) const {
194 out << IndentFor(indent) << "BINARY(" << op_.value() << ")\n";
195 left_->Print(out, indent + 1);
196 right_->Print(out, indent + 1);
242 void BlockNode::Print(std::ostream& out, int indent) const
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_cpols.c 70 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent);
72 static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent);
73 static void print_notice(BIO *out, USERNOTICE *notice, int indent);
366 BIO *out, int indent)
373 BIO_printf(out, "%*sPolicy: ", indent, "");
377 print_qualifiers(out, pinfo->qualifiers, indent + 2);
383 int indent)
392 BIO_printf(out, "%*sCPS: %s\n", indent, "",
397 BIO_printf(out, "%*sUser Notice:\n", indent, "");
398 print_notice(out, qualinfo->d.usernotice, indent + 2)
    [all...]
  /external/clang/lib/Basic/
Module.cpp 288 void Module::print(raw_ostream &OS, unsigned Indent) const {
289 OS.indent(Indent);
297 OS.indent(Indent + 2);
304 OS.indent(Indent + 2);
317 OS.indent(Indent + 2);
322 OS.indent(Indent + 2)
    [all...]
  /external/openssl/crypto/x509v3/
v3_cpols.c 70 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent);
72 static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent);
73 static void print_notice(BIO *out, USERNOTICE *notice, int indent);
366 BIO *out, int indent)
373 BIO_printf(out, "%*sPolicy: ", indent, "");
377 print_qualifiers(out, pinfo->qualifiers, indent + 2);
383 int indent)
392 BIO_printf(out, "%*sCPS: %s\n", indent, "",
397 BIO_printf(out, "%*sUser Notice:\n", indent, "");
398 print_notice(out, qualinfo->d.usernotice, indent + 2)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.cpp 525 void GraphicsLayer::dumpLayer(TextStream& ts, int indent, LayerTreeFlags flags, RenderingContextMap& renderingContextMap) const
527 writeIndent(ts, indent);
536 dumpProperties(ts, indent, flags, renderingContextMap);
537 writeIndent(ts, indent);
552 void GraphicsLayer::dumpProperties(TextStream& ts, int indent, LayerTreeFlags flags, RenderingContextMap& renderingContextMap) const
555 writeIndent(ts, indent + 1);
560 writeIndent(ts, indent + 1);
565 writeIndent(ts, indent + 1);
570 writeIndent(ts, indent + 1);
575 writeIndent(ts, indent + 1)
    [all...]
  /external/icu/icu4c/source/samples/uresb/
uresb.c 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status);
60 void printIndent(UFILE *out, int32_t indent);
171 void printIndent(UFILE *out, int32_t indent) {
174 for(i = 0; i<indent; i++) {
177 inchar[indent] = '\0';
221 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status) {
235 printIndent(out, indent);
240 printIndent(out, indent);
254 printIndent(out, indent);
270 printIndent(out, indent);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationUsageStats.java 182 public synchronized void dump(PrintWriter pw, String indent, DumpFilter filter) {
187 as.dump(pw, indent);
191 mSQLiteLog.dump(pw, indent, filter);
250 public void dump(PrintWriter pw, String indent) {
251 pw.println(toStringWithIndent(indent));
259 private String toStringWithIndent(String indent) {
260 return indent + "AggregatedStats{\n" +
261 indent + " key='" + key + "',\n" +
262 indent + " numPostedByApp=" + numPostedByApp + ",\n" +
263 indent + " numUpdatedByApp=" + numUpdatedByApp + ",\n"
    [all...]

Completed in 1506 milliseconds

1 2 34 5 6 7 8 91011>>