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

1 2 34 5 6 7 8 91011>>

  /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))
  /external/chromium_org/v8/src/
prettyprinter.cc 712 IndentedScope indent(this, s);
719 { IndentedScope indent(this, "FUNC");
732 IndentedScope indent(this, "DECLS");
742 IndentedScope indent(this, "PARAMS");
767 IndentedScope indent(this, "DEFAULT");
770 IndentedScope indent(this, "CASE");
779 IndentedScope indent(this, block_txt);
803 IndentedScope indent(this, "MODULE");
810 IndentedScope indent(this, "IMPORT");
817 IndentedScope indent(this, "EXPORT ")
    [all...]
  /external/openssl/crypto/asn1/
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);
a_strex.c 379 /* Used for line indenting: print 'indent' spaces */
381 static int do_indent(char_io *io_ch, void *arg, int indent)
384 for(i = 0; i < indent; i++)
393 int indent, unsigned long flags)
405 if(indent < 0) indent = 0;
406 outlen = indent;
407 if(!do_indent(io_ch, arg, indent)) return -1;
422 indent = 0;
430 indent = 0
    [all...]
asn1_par.c 66 int indent);
68 int offset, int depth, int indent, int dump);
70 int indent)
81 BIO_indent(bp,indent,128);
102 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
104 return(asn1_parse2(bp,&pp,len,0,0,indent,0));
107 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
109 return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
113 int depth, int indent, int dump)
125 dump_indent = indent;
    [all...]
  /frameworks/native/include/binder/
Debug.h 37 void printHexData(int32_t indent, const void *buf, size_t length,
  /libcore/crypto/src/main/java/org/conscrypt/
Logger.java 32 private static int indent = 0; field in class:Logger.Stream
41 for (int i=0; i<indent; i++) {
48 indent ++;
52 indent --;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEMerge.cpp 76 TextStream& FEMerge::externalRepresentation(TextStream& ts, int indent) const
78 writeIndent(ts, indent);
85 inputEffect(i)->externalRepresentation(ts, indent + 1);