/external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/ |
BuildScriptHelper.java | 28 private static int indent = 0; field in class:BuildScriptHelper 127 indent += delta *= 4; 128 indent = clamp(indent); 130 wr.write(StringUtils.repeat(" ", clamp(indent - 4)) + input + "\n"); 132 wr.write(StringUtils.repeat(" ", clamp(indent)) + input + "\n"); 134 wr.write(StringUtils.repeat(" ", indent) + input + "\n"); 142 private static int clamp(int indent) { 143 if (indent < 0) { 146 return 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 | 70 uint16_t op_msk, int indent); 234 uint16_t op_msk, int indent); 238 uint16_t op_msk, int indent); 240 uint16_t op_msk, int indent); 242 uint16_t op_msk, int indent); 293 static inline char *indent_pr(int indent, int nlpref) 298 if (indent > (IND_SIZE - 1)) 299 indent = IND_SIZE - 1; 304 indent--; 307 while (--indent >= 0 [all...] |
/external/boringssl/src/crypto/x509v3/ |
v3_crld.c | 72 int indent); 247 ASN1_BIT_STRING *rflags, int indent) 251 BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, ""); 429 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/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++) 471 ptree(va_arg(va, struct op *), indent, shf); local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
generate.py | 44 The indent method returns a context manager that can be used by the Python 48 with index_writer.indent(): 50 with index_writer.indent(): 53 with index_writer.indent(): 112 raise IndentationError('Unable to un-indent further') 116 def indent(self): member in class:IndentWriter
|
generate_python.py | 42 out: Indent writer used for generating text. 51 with out.indent(): 65 out: Indent writer used for generating text. 127 out: Indent writer used for generating text. 134 with out.indent(): 152 out: Indent writer used for generating text. 159 with out.indent(): 170 out: Indent writer used for generating text. 177 with out.indent():
|
/external/curl/docs/examples/ |
htmltidy.c | 46 void dumpNode(TidyDoc doc, TidyNode tnod, int indent ) 56 printf( "%*.*s%s ", indent, indent, "<", name); 70 printf("%*.*s\n", indent, indent, buf.bp?(char *)buf.bp:""); 73 dumpNode( doc, child, indent + 4 ); /* recursive */
|
/external/selinux/libsepol/src/ |
module_to_cil.c | 74 static void cil_indent(int indent) 76 if (fprintf(out_file, "%*s", indent * 4, "") < 0) { 94 static void cil_println(int indent, const char *fmt, ...) 96 cil_indent(indent); 153 int indent; member in struct:map_args 541 static int avrule_to_cil(int indent, struct policydb *pdb, uint32_t type, const char *src, const char *tgt, const struct class_perm_node *classperms) 587 cil_println(indent, "(%s %s %s (%s (%s)))", 592 cil_println(indent, "(%s %s %s %s %s)", 662 static int cil_print_attr_strs(int indent, struct policydb *pdb, int is_type, struct ebitmap *pos, struct ebitmap *neg, uint32_t flags, char *attr) 687 cil_println(indent, "(%sattribute %s)", statement, attr) 3621 int indent = 0; local [all...] |
/external/dbus/tools/ |
dbus-print-message.c | 1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ 47 #define INDENT 3 50 indent (int depth) function 53 printf (" "); /* INDENT spaces. */ 63 indent (depth + 1); 66 columns = (80 - ((depth + 1) * INDENT)) / 3; 83 indent (depth + 1); 93 indent (depth); 155 indent(depth); 311 indent(depth) [all...] |
/external/google-breakpad/src/testing/scripts/generator/ |
README | 21 To change the indentation from the default of 2, set INDENT in 22 the environment. For example to use an indent of 4 spaces: 24 INDENT=4 gmock_gen.py header-file.h ClassName
|
/prebuilts/go/darwin-x86/src/go/ast/ |
print.go | 79 indent int // current indentation level 84 var indent = []byte(". ") var 102 for j := p.indent; j > 0; j-- { 103 _, err = p.output.Write(indent) 153 p.indent++ 161 p.indent-- 181 p.indent++ 188 p.indent-- 199 p.indent++ 206 p.indent- [all...] |
/prebuilts/go/linux-x86/src/go/ast/ |
print.go | 79 indent int // current indentation level 84 var indent = []byte(". ") var 102 for j := p.indent; j > 0; j-- { 103 _, err = p.output.Write(indent) 153 p.indent++ 161 p.indent-- 181 p.indent++ 188 p.indent-- 199 p.indent++ 206 p.indent- [all...] |
/external/autotest/server/tests/netperf2/ |
netperf2.py | 30 # double indent confuses the parser, so reset the indent level on the 32 # previous indent level. 63 # Restore indent level of main job.
|
/external/autotest/server/tests/netpipe/ |
netpipe.py | 29 # double indent confuses the parser, so reset the indent level on the 31 # previous indent level. 64 # Restore indent level of main job.
|
/external/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
DistributionPoint.java | 148 String indent = " "; local 150 buf.append(indent); 154 buf.append(indent); 155 buf.append(indent);
|
DistributionPointName.java | 128 String indent = " "; local 130 buf.append(indent); 134 buf.append(indent); 135 buf.append(indent);
|
/external/chromium-trace/catapult/perf_insights/perf_insights/results/ |
json_output_formatter.py | 18 json.dump(d, self.output_file, indent=2)
|
/external/llvm/test/YAMLParser/ |
spec-05-12.test | 4 # that a tab is being used to indent a plain scalar at line 15.
|
/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/selinux/libsepol/ |
Makefile | 23 indent:
|
/external/selinux/libsepol/utils/ |
Makefile | 20 indent:
|
/external/selinux/policycoreutils/scripts/ |
Makefile | 23 indent:
|