/external/jsoncpp/include/json/ |
writer.h | 55 * The rules for line break and indent are as follow: 57 * - if empty then print {} without indent and line break 58 * - if not empty the print '{', line break & indent, print one value per line 61 * - if empty then print [] without indent and line break 91 void indent(); 111 * The rules for line break and indent are as follow: 113 * - if empty then print {} without indent and line break 114 * - if not empty the print '{', line break & indent, print one value per line 117 * - if empty then print [] without indent and line break 149 void indent(); [all...] |
/external/smali/util/src/main/java/org/jf/util/ |
WrappedIndentingWriter.java | 51 /** > 0; the maximum indent */ 57 /** whether indent spaces are currently being collected */ 60 /** >= 0; current indent amount */ 61 private int indent; field in class:WrappedIndentingWriter 110 indent++; 111 if (indent >= maxIndent) { 112 indent = maxIndent; 135 for (int i = 0; i < indent; i++) { 138 column = indent; 182 indent = 0 [all...] |
/external/tcpdump/ |
print-forces.c | 71 u_int16_t op_msk, int indent); 251 u_int16_t op_msk, int indent); 255 u_int16_t op_msk, int indent); 257 u_int16_t op_msk, int indent); 259 u_int16_t op_msk, int indent); 310 static inline char *indent_pr(int indent, int nlpref) 315 if (indent > (IND_SIZE - 1)) 316 indent = IND_SIZE - 1; 321 indent--; 324 while (--indent >= 0 [all...] |
/external/chromium_org/tools/metrics/common/ |
pretty_print_xml.py | 54 def PrettyPrintNode(self, node, indent=0): 55 """Pretty-prints the given XML node at the given indent level. 59 indent: The current indent level. 75 wrapper.initial_indent = ' ' * indent 76 wrapper.subsequent_indent = ' ' * indent 81 # Remove any common indent. 102 s = ' ' * indent + '<' + node.tagName 135 s += '\n' + ' ' * (indent + 3) 158 # Calculate the new indent level for child nodes [all...] |
/external/openssl/crypto/bio/ |
b_dump.c | 78 void *u, const char *s, int len, int indent) 93 if (indent < 0) 94 indent = 0; 95 if (indent) 97 if (indent > 128) indent=128; 98 memset(str,' ',indent); 100 str[indent]='\0'; 102 dump_width=DUMP_WIDTH_LESS_INDENT(indent); 169 int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent) [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/ |
v3_crld.c | 71 int indent); 246 ASN1_BIT_STRING *rflags, int indent) 250 BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, ""); 428 int indent); 506 static int print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent) 511 BIO_printf(out, "%*s", indent + 2, ""); 518 static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent) 522 BIO_printf(out, "%*sFull Name:\n", indent, ""); 523 print_gens(out, dpn->name.fullname, indent); [all...] |
/external/openssl/crypto/x509v3/ |
v3_crld.c | 69 int indent); 247 ASN1_BIT_STRING *rflags, int indent) 251 BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, ""); 430 int indent); 507 static int print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent) 512 BIO_printf(out, "%*s", indent + 2, ""); 519 static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent) 523 BIO_printf(out, "%*sFull Name:\n", indent, ""); 524 print_gens(out, dpn->name.fullname, indent); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderTreeAsText.cpp | 400 static inline void writeSVGInlineTextBox(TextStream& ts, SVGInlineTextBox* textBox, int indent) 414 writeIndent(ts, indent + 1); 456 static inline void writeSVGInlineTextBoxes(TextStream& ts, const RenderText& text, int indent) 462 writeSVGInlineTextBox(ts, toSVGInlineTextBox(box), indent); 466 static void writeStandardPrefix(TextStream& ts, const RenderObject& object, int indent) 468 writeIndent(ts, indent); 475 static void writeChildren(TextStream& ts, const RenderObject& object, int indent) 478 write(ts, *child, indent + 1); 492 void writeSVGResourceContainer(TextStream& ts, const RenderObject& object, int indent) 494 writeStandardPrefix(ts, object, indent); [all...] |
/external/mksh/src/ |
tree.c | 28 #define INDENT 8 46 ptree(struct op *t, int indent, struct shf *shf) 73 fptreef(shf, indent, "%S", t->vars[0]); 80 fptreef(shf, indent, "%S ", *w++); 86 fptreef(shf, indent, "%S ", *w++); 94 fptreef(shf, indent + 2, "( %T) ", t->left); 97 fptreef(shf, indent, "%T| ", t->left); 101 fptreef(shf, indent, "%T%;", t->left); 106 fptreef(shf, indent, "%T%s %T", 118 fptreef(shf, indent, " %S", *w++) 478 ptree(va_arg(va, struct op *), indent, shf); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
DistributionPoint.java | 147 String indent = " "; local 149 buf.append(indent); 153 buf.append(indent); 154 buf.append(indent);
|
DistributionPointName.java | 127 String indent = " "; local 129 buf.append(indent); 133 buf.append(indent); 134 buf.append(indent);
|
/external/chromium_org/chrome/browser/resources/print_preview/common/ |
search_box.css | 22 text-indent: 24px;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
htmlembedded.js | 59 indent: function(state, textAfter) { 61 return htmlMixedMode.indent(state.htmlState, textAfter); 62 else if (scriptingMode.indent) 63 return scriptingMode.indent(state.scriptState, textAfter);
|
/external/chromium_org/third_party/boringssl/src/crypto/x509/ |
t_x509a.c | 66 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) 75 indent, "", indent + 2, ""); 84 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, ""); 88 indent, "", indent + 2, ""); 97 } else BIO_printf(out, "%*sNo Rejected Uses.\n", indent, ""); 98 if(aux->alias) BIO_printf(out, "%*sAlias: %s\n", indent, "", 101 BIO_printf(out, "%*sKey Id: ", indent, "");
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_print_visitor.cpp | 87 void ir_print_visitor::indent(void) function in class:ir_print_visitor 169 indent(); 177 indent(); 183 indent(); 186 indent(); 194 indent(); 199 indent(); 212 indent(); 217 indent(); 465 indent(); [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
Makefile.am | 9 # These are the "official" xserver indent flags from utils/modular/x-indent.sh 175 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 178 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 181 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 227 | $(INDENT) $(INDENT_FLAGS) > $@ 238 | $(INDENT) $(INDENT_FLAGS) > $@ 242 | $(INDENT) $(INDENT_FLAGS) > $@ 248 | $(INDENT) $(XORG_INDENT_FLAGS) > $@ 252 | $(INDENT) $(XORG_INDENT_FLAGS) > $ [all...] |
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
inspector_timeline_data.py | 18 json.dump(self._event_data, f, indent=4)
|
/external/libsepol/ |
Makefile | 19 indent:
|
/external/libsepol/include/ |
Makefile | 13 indent:
|
/external/libsepol/utils/ |
Makefile | 20 indent:
|
/external/mesa3d/src/glsl/ |
ir_print_visitor.cpp | 87 void ir_print_visitor::indent(void) function in class:ir_print_visitor 169 indent(); 177 indent(); 183 indent(); 186 indent(); 194 indent(); 199 indent(); 212 indent(); 217 indent(); 465 indent(); [all...] |
/external/mesa3d/src/mapi/glapi/gen/ |
Makefile.am | 9 # These are the "official" xserver indent flags from utils/modular/x-indent.sh 175 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 178 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 181 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 227 | $(INDENT) $(INDENT_FLAGS) > $@ 238 | $(INDENT) $(INDENT_FLAGS) > $@ 242 | $(INDENT) $(INDENT_FLAGS) > $@ 248 | $(INDENT) $(XORG_INDENT_FLAGS) > $@ 252 | $(INDENT) $(XORG_INDENT_FLAGS) > $ [all...] |
/external/openssl/crypto/asn1/ |
t_x509a.c | 68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) 76 indent, "", indent + 2, ""); 85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, ""); 89 indent, "", indent + 2, ""); 98 } else BIO_printf(out, "%*sNo Rejected Uses.\n", indent, ""); 99 if(aux->alias) BIO_printf(out, "%*sAlias: %s\n", indent, "", 102 BIO_printf(out, "%*sKey Id: ", indent, "");
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
DebugInfoItem.java | 63 out.indent(); 73 out.indent(); 87 out.indent(); 97 out.indent(); 106 out.indent(); 120 out.indent(); 137 out.indent(); 145 out.indent(); 161 out.indent();
|
/libcore/luni/src/main/java/java/util/logging/ |
XMLFormatter.java | 33 private static final String indent = " "; field in class:XMLFormatter 108 sb.append(indent).append("<message/>"); 116 sb.append(indent).append("<exception>").append(nl); 121 sb.append(indent).append(indent).append("<frame>").append(nl); 125 sb.append(indent).append(indent).append("</frame>").append(nl); 127 sb.append(indent).append("</exception>").append(nl); 133 sb.append(indent);
|