/dalvik/dx/src/com/android/dx/util/ |
IndentingWriter.java | 36 /** {@code > 0;} the maximum indent */ 42 /** whether indent spaces are currently being collected */ 45 /** {@code >= 0;} current indent amount */ 46 private int indent; field in class:IndentingWriter 95 indent++; 96 if (indent >= maxIndent) { 97 indent = maxIndent; 120 for (int i = 0; i < indent; i++) { 123 column = indent; 167 indent = 0 [all...] |
/external/chromium_org/ui/views/ |
debug_utils.cc | 16 int indent, 18 int ind = indent; 32 PrintViewHierarchyImp(view->child_at(i), indent + 2, out); 36 int indent, 38 int ind = indent; 51 PrintFocusHierarchyImp(view->child_at(0), indent + 2, out); 55 PrintFocusHierarchyImp(next_focusable, indent, out);
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
IndentingWriter.java | 36 /** {@code > 0;} the maximum indent */ 42 /** whether indent spaces are currently being collected */ 45 /** {@code >= 0;} current indent amount */ 46 private int indent; field in class:IndentingWriter 95 indent++; 96 if (indent >= maxIndent) { 97 indent = maxIndent; 120 for (int i = 0; i < indent; i++) { 123 column = indent; 167 indent = 0 [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/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
tasn_prn.c | 159 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 164 int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 168 const ASN1_ITEM *it, int indent, 172 static int asn1_print_fsname(BIO *out, int indent, 176 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, 186 return asn1_item_print_ctx(out, &ifld, indent, it, 190 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 205 parg.indent = indent; 215 if (!nohdr && !asn1_print_fsname(out, indent, [all...] |
/external/openssl/crypto/asn1/ |
tasn_prn.c | 159 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 164 int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 168 const ASN1_ITEM *it, int indent, 172 static int asn1_print_fsname(BIO *out, int indent, 176 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, 186 return asn1_item_print_ctx(out, &ifld, indent, it, 190 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 205 parg.indent = indent; 215 if (!nohdr && !asn1_print_fsname(out, indent, [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/ |
ASN1Dump.java | 49 String indent, 58 String tab = indent + TAB; 60 buf.append(indent); 98 String tab = indent + TAB; 100 buf.append(indent); 136 String tab = indent + TAB; 138 buf.append(indent); 177 buf.append(indent + "BER Constructed Octet String" + "[" + oct.getOctets().length + "] "); 181 buf.append(indent + "DER Octet String" + "[" + oct.getOctets().length + "] "); 185 buf.append(dumpBinaryDataAsString(indent, oct.getOctets())) [all...] |
/external/chromium_org/third_party/openssl/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/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/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_debug.c | 73 const size_t length = sizeof(radeon->debug.indent) 74 / sizeof(radeon->debug.indent[0]); 76 radeon->debug.indent[radeon->debug.indent_depth] = '\t'; 86 radeon->debug.indent[radeon->debug.indent_depth] = '\0'; 103 fprintf(stderr, "%s", radeon->debug.indent);
|
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
xml_formatted_writer.py | 61 # return doc.toprettyxml(indent=' ') 76 indent = '' 78 # Determine indent for each line. 81 # If the current line starts with a closing tag, decrease indent before 83 indent = indent[2:] 84 lines[i] = indent + '<' + line + '>' 88 # closing tag, increase indent after the line is printed. 89 indent += ' '
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_debug.c | 73 const size_t length = sizeof(radeon->debug.indent) 74 / sizeof(radeon->debug.indent[0]); 76 radeon->debug.indent[radeon->debug.indent_depth] = '\t'; 86 radeon->debug.indent[radeon->debug.indent_depth] = '\0'; 103 fprintf(stderr, "%s", radeon->debug.indent);
|
/frameworks/av/media/libstagefright/foundation/ |
hexdump.cpp | 32 static void appendIndent(AString *s, int32_t indent) { 37 CHECK_LT((size_t)indent, sizeof(kWhitespace)); 39 s->append(kWhitespace, indent); 42 void hexdump(const void *_data, size_t size, size_t indent, AString *appendTo) { 49 appendIndent(&line, indent);
|
/external/chromium_org/third_party/icu/source/common/ |
utrace.c | 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 94 * a \n is output. Ideally we wouldn't do the indent until the following char 103 /* At the start of a line. Indent. */ 104 for(i=0; i<indent; i++) { 153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 161 outputChar(c, outBuf, outIx, capacity, indent); 168 char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 172 outputString(NULL, outBuf, outIx, capacity, indent); 179 outputChar(' ', outBuf, outIx, capacity, indent); 187 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args) [all...] |
/external/icu/icu4c/source/common/ |
utrace.c | 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 94 * a \n is output. Ideally we wouldn't do the indent until the following char 103 /* At the start of a line. Indent. */ 104 for(i=0; i<indent; i++) { 153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 161 outputChar(c, outBuf, outIx, capacity, indent); 168 char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 172 outputString(NULL, outBuf, outIx, capacity, indent); 179 outputChar(' ', outBuf, outIx, capacity, indent); 187 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args) [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/ |
gen_msvs_sln.sh | 48 indent="" 50 indent="${indent}${indent1}" 53 indent="${indent%${indent1}}" 110 echo "${indent}ProjectSection(ProjectDependencies) = postProject" 116 echo "${indent}$dep_guid = $dep_guid" 120 echo "${indent}EndProjectSection" 135 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution" 145 echo "${indent}$config = $config [all...] |
/external/libvpx/libvpx/build/make/ |
gen_msvs_sln.sh | 48 indent="" 50 indent="${indent}${indent1}" 53 indent="${indent%${indent1}}" 110 echo "${indent}ProjectSection(ProjectDependencies) = postProject" 116 echo "${indent}$dep_guid = $dep_guid" 120 echo "${indent}EndProjectSection" 135 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution" 145 echo "${indent}$config = $config [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/ |
gen_msvs_sln.sh | 48 indent="" 50 indent="${indent}${indent1}" 53 indent="${indent%${indent1}}" 110 echo "${indent}ProjectSection(ProjectDependencies) = postProject" 116 echo "${indent}$dep_guid = $dep_guid" 120 echo "${indent}EndProjectSection" 135 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution" 145 echo "${indent}$config = $config [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_pku.c | 65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent); 85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent) 87 BIO_printf(out, "%*s", indent, "");
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
genpyx.py | 48 def indent( self ): member in class:OStream 75 def pyxstr(self,toks=None,indent=0,**kw): 83 x.pyxstr(toks, indent, **kw) 102 def pyxstr(self,toks=None,indent=0,**kw): 113 def pyxstr(self,toks=None,indent=0,**kw): 127 def pyxstr(self,toks=None,indent=0,**kw): 138 def pyxstr(self,toks=None,indent=0,cprefix="",**kw): 143 x.pyxstr(toks, indent, cprefix=cprefix, **kw) 155 def pyxstr(self,toks,indent=0,**kw): 162 _toks.append( self[i].pyxstr(indent=indent, **kw) [all...] |
/external/openssl/crypto/x509v3/ |
v3_pku.c | 65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent); 85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent) 87 BIO_printf(out, "%*s", indent, "");
|
/external/chromium_org/tools/gyp/tools/ |
pretty_gyp.py | 117 indent = 0 129 print " " * (basic_offset * indent) + line 130 indent += brace_diff 132 indent += brace_diff 133 print " " * (basic_offset * indent) + line 135 print " " * (basic_offset * indent) + line 149 # Indent and print the output.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
plugin.h | 38 extern void print_plugins_versions (FILE *file, const char *indent); 39 extern void print_plugins_help (FILE *file, const char *indent);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPSerializerRDF.java | 409 * @param indent the current indent level 413 private boolean serializeCompactRDFAttrProps(XMPNode parentNode, int indent) throws IOException 424 writeIndent(indent); 442 * field of a struct, or an item of an array. The indent is that for the 484 * @param indent the current indent level 488 private void serializeCompactRDFElementProps(XMPNode parentNode, int indent) 511 writeIndent(indent); 540 serializeCompactRDFGeneralQualifier(indent, node) 844 declareNamespace(field.getName(), null, usedPrefixes, indent); local 857 declareNamespace(qualifier.getName(), null, usedPrefixes, indent); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pprint.py | 55 def pprint(object, stream=None, indent=1, width=80, depth=None): 58 stream=stream, indent=indent, width=width, depth=depth) 61 def pformat(object, indent=1, width=80, depth=None): 63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object) 85 def __init__(self, indent=1, width=80, depth=None, stream=None): 89 indent 90 Number of spaces to indent for each level of nesting. 103 indent = int(indent [all...] |