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

1 2 34 5 6 7 8 91011>>

  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
Properties.java 237 * @param indent
238 * indent buffer
241 private void append(StringBuilder sb, StringBuilder indent) {
242 sb.append(indent).append("name: ").append(name).append("\n\r");
243 sb.append(indent).append("type: ").append(type).append("\n\r");
244 sb.append(indent).append("subType: ").append(subType).append("\n\r");
245 sb.append(indent).append("description: ").append(description).append("\n\r");
246 indent.append('\t');
247 sb.append(indent).append("value: ");
249 ((Properties) value).append(sb, indent);
    [all...]
  /external/libsepol/include/
Makefile 13 indent:
  /external/libsepol/utils/
Makefile 20 indent:
  /external/webkit/Source/JavaScriptCore/runtime/
JSONObject.h 54 UString JSONStringify(ExecState* exec, JSValue value, unsigned indent);
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 380 my $indent = $1;
384 while (s/^$indent\Q$prefix\E(\S.*)\n*//)
403 my $indent = 0;
410 $indent = length ($4 || "$1$3");
414 # Indent may be different on second line.
415 $indent = length $& if /^ {20,}/;
424 $indent = 80; # not continued
431 $indent = length $1;
439 $indent = length $1;
453 while (s/^ {$indent}(\S.*)\n//
    [all...]
  /external/clang/utils/ABITest/
ABITestGen.py 160 self.printValueOfType(' %s_RV'%fnName, 'RV', FT.returnType, output=self.outputTests, indent=4)
161 self.checkTypeValues('RV', '%s[i]' % retvalTests[0], FT.returnType, output=self.outputTests, indent=4)
255 def printSizeOfType(self, prefix, name, t, output=None, indent=2):
256 print >>output, '%*sprintf("%s: sizeof(%s) = %%ld\\n", (long)sizeof(%s));'%(indent, '', prefix, name, name)
257 def printAlignOfType(self, prefix, name, t, output=None, indent=2):
258 print >>output, '%*sprintf("%s: __alignof__(%s) = %%ld\\n", (long)__alignof__(%s));'%(indent, '', prefix, name, name)
259 def printOffsetsOfType(self, prefix, name, t, output=None, indent=2):
265 print >>output, '%*sprintf("%s: __builtin_offsetof(%s, %s) = %%ld\\n", (long)__builtin_offsetof(%s, %s));'%(indent, '', prefix, name, fname, name, fname)
267 def printValueOfType(self, prefix, name, t, output=None, indent=2):
290 indent, '', prefix, name, code, value_expr
    [all...]
  /external/v8/src/
prettyprinter.cc 695 IndentedScope indent(this, s, node);
702 { IndentedScope indent(this, "FUNC");
715 IndentedScope indent(this, "DECLS");
725 IndentedScope indent(this, "PARAMS");
750 IndentedScope indent(this, "DEFAULT");
753 IndentedScope indent(this, "CASE");
762 IndentedScope indent(this, block_txt);
784 IndentedScope indent(this, "MODULE");
791 IndentedScope indent(this, "IMPORT");
798 IndentedScope indent(this, "EXPORT ")
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 173 void print(raw_ostream &OS, unsigned indent = 0) const;
177 virtual void printImpl(raw_ostream &OS, unsigned indent) const = 0;
224 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
251 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
286 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
305 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
324 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
345 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
365 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
388 virtual void printImpl(raw_ostream &OS, unsigned indent) const
    [all...]
  /external/openssl/apps/
engine.c 132 static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
135 /* Indent before displaying input flags */
136 BIO_printf(bio_out, "%s%s(input flags): ", indent, indent);
194 static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent)
209 BIO_printf(bio_out, "%s<no control commands>\n", indent);
249 /* Do an indent */
250 xpos = BIO_puts(bio_out, indent);
257 if((xpos > (int)strlen(indent)) &&
261 xpos = BIO_puts(bio_out, indent);
352 const char *indent = " "; local
    [all...]
  /external/bison/src/
scan-code.l 227 unsigned int indent = 0;
228 warn_at_indent (*loc, &indent,
230 indent += SUB_INDENT;
231 warn_at_indent (*loc, &indent,
419 bool is_warning, unsigned indent)
431 warn_at_indent (var->loc, &indent, _("refers to: %c%s at %s"),
434 complain_at_indent (var->loc, &indent, _("refers to: %c%s at %s"),
478 warn_at_indent (id_loc, &indent, "%s",
481 complain_at_indent (id_loc, &indent, "%s",
608 unsigned indent = 0
    [all...]
  /external/openssl/crypto/evp/
p_lib.c 433 static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
436 BIO_indent(out, indent, 128);
443 int indent, ASN1_PCTX *pctx)
446 return pkey->ameth->pub_print(out, pkey, indent, pctx);
448 return unsup_alg(out, pkey, indent, "Public Key");
452 int indent, ASN1_PCTX *pctx)
455 return pkey->ameth->priv_print(out, pkey, indent, pctx);
457 return unsup_alg(out, pkey, indent, "Private Key");
461 int indent, ASN1_PCTX *pctx)
464 return pkey->ameth->param_print(out, pkey, indent, pctx)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 44 ... 1 COLON NEWLINE INDENT PRINT a NEWLINE DEDENT b ASSIGN 3 ...
49 Upon NEWLINE token from the lexer, however, an INDENT or DEDENT token
53 then check against stack for indent vs dedent. If LEADING_WS, then
54 the column of the next non-whitespace token will dictate indent vs
61 in indent level from one token to the next.
72 /** The stack of indent levels (column numbers) */
101 pushed on the stack, and one INDENT token is generated. If it
133 // if not a NEWLINE, doesn't signal indent/dedent work; just enqueue
163 var cpos = t.getCharPositionInLine(); // column dictates indent/dedent
171 // compare to last indent leve
    [all...]
  /external/icu4c/common/unicode/
utrace.h 308 * @param indent Number of spaces to indent the output. Intended to allow
318 int32_t indent, const char *fmt, va_list args);
329 * @param indent Number of spaces to indent the output. Intended to allow
339 int32_t indent, const char *fmt, ...);
  /external/libsepol/
Makefile 19 indent:
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 55 struct indent { struct
57 indent(unsigned d) : distance(d) {} function in struct:indent
60 static raw_ostream &operator <<(raw_ostream &os, const indent &in) {
67 , unsigned Indent = 0
72 outs() << indent(Indent);
82 ++Indent;
85 dumpNode(i, Indent);
88 --Indent;
89 outs() << indent(Indent) << "]"
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObjectList.java 141 * @param indent int to set
144 public String debugDump(int indent) {
145 return super.debugDump(indent);
  /external/openssl/crypto/x509v3/
v3_ocsp.c 72 BIO *out, int indent);
74 BIO *out, int indent);
76 int indent);
83 BIO *out, int indent);
86 void *nocheck, BIO *out, int indent);
246 BIO *out, int indent)
248 if(BIO_printf(out, "%*s", indent, "") <= 0) return 0;
256 BIO *out, int indent)
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEFlood.cpp 89 TextStream& FEFlood::externalRepresentation(TextStream& ts, int indent) const
91 writeIndent(ts, indent);
SourceAlpha.cpp 78 TextStream& SourceAlpha::externalRepresentation(TextStream& ts, int indent) const
80 writeIndent(ts, indent);
  /external/webkit/Source/WebCore/rendering/
RenderTreeAsText.h 59 void write(TextStream&, const RenderObject&, int indent = 0, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
60 void writeIndent(TextStream&, int indent);
  /external/webkit/Source/WebCore/svg/graphics/filters/
SVGFEImage.cpp 82 TextStream& FEImage::externalRepresentation(TextStream& ts, int indent) const
86 writeIndent(ts, indent);
  /frameworks/base/core/java/android/util/
JsonWriter.java 134 private String indent; field in class:JsonWriter
157 * in the encoded document. If {@code indent.isEmpty()} the encoded document
161 * @param indent a string containing only whitespace.
163 public void setIndent(String indent) {
164 if (indent.isEmpty()) {
165 this.indent = null;
168 this.indent = indent;
462 if (indent == null) {
468 out.write(indent);
    [all...]
  /external/openssl/crypto/dh/
dh_ameth.c 316 static int do_dh_print(BIO *bp, const DH *x, int indent,
363 BIO_indent(bp, indent, 128);
366 indent += 4;
368 if (!ASN1_bn_print(bp,"private-key:",priv_key,m,indent)) goto err;
369 if (!ASN1_bn_print(bp,"public-key:",pub_key,m,indent)) goto err;
371 if (!ASN1_bn_print(bp,"prime:",x->p,m,indent)) goto err;
372 if (!ASN1_bn_print(bp,"generator:",x->g,m,indent)) goto err;
375 BIO_indent(bp, indent, 128);
446 static int dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
449 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 0)
    [all...]

Completed in 4402 milliseconds

1 2 34 5 6 7 8 91011>>