/external/chromium_org/third_party/libvpx/source/libvpx/build/make/ |
msvs_common.sh | 48 indent="" 50 indent="${indent}${indent1}" 53 indent="${indent%${indent1}}" 61 echo "${indent}${opt%%=*}=\"${optval}\"" 69 echo "${indent}<${tag}" 72 echo "${indent}>" 74 echo "${indent}<${tag}>" 82 echo "${indent}</${tag}> [all...] |
/external/llvm/utils/TableGen/ |
DAGISelMatcher.cpp | 24 void Matcher::print(raw_ostream &OS, unsigned indent) const { 25 printImpl(OS, indent); 27 return Next->print(OS, indent); 108 void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const { 109 OS.indent(indent) << "Scope\n"; 112 OS.indent(indent+1) << "NULL POINTER\n"; 114 getChild(i)->print(OS, indent+2); 118 void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) const [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/tools/ |
vpx-astyle.sh | 3 astyle --style=java --indent=spaces=2 --indent-switches\ 4 --min-conditional-indent=0 \ 7 --indent-preprocessor --convert-tabs --indent-labels \ 8 --suffix=none --quiet --max-instatement-indent=80 "$@"
|
/external/libvpx/libvpx/tools/ |
vpx-astyle.sh | 3 astyle --style=java --indent=spaces=2 --indent-switches\ 4 --min-conditional-indent=0 \ 7 --indent-preprocessor --convert-tabs --indent-labels \ 8 --suffix=none --quiet --max-instatement-indent=80 "$@"
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
vpx-astyle.sh | 3 astyle --style=java --indent=spaces=2 --indent-switches\ 4 --min-conditional-indent=0 \ 7 --indent-preprocessor --convert-tabs --indent-labels \ 8 --suffix=none --quiet --max-instatement-indent=80 "$@"
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementMicrotaskQueueBase.cpp | 26 void CustomElementMicrotaskQueueBase::show(unsigned indent) 30 m_queue[q]->show(indent); 32 fprintf(stderr, "%*snull\n", indent, "");
|
CustomElementMicrotaskStepDispatcher.cpp | 49 void CustomElementMicrotaskStepDispatcher::show(unsigned indent) 51 fprintf(stderr, "%*sSync:\n", indent, ""); 52 m_syncQueue->show(indent + 1); 53 fprintf(stderr, "%*sAsync:\n", indent, ""); 54 m_asyncQueue->show(indent + 1);
|
CustomElementMicrotaskStep.h | 55 virtual void show(unsigned indent) = 0;
|
/frameworks/native/opengl/tools/glgen/src/ |
JniCodeEmitter.java | 34 protected static String indent = " "; field in class:JniCodeEmitter 178 out.println(iii + indent + "get" + typeName + "Array(" + argName + "),"); 179 out.print(iii + indent + "getOffset(" + argName + ")"); 181 out.print(iii + indent + argName); 186 out.println(iii + indent + argName + ".remaining()"); 212 out.println(iii + indent + "_exception = 1;"); 213 out.println(iii + indent + 215 out.println(iii + indent + 219 out.println(iii + indent + "goto exit;"); 372 out.println(iii + indent + "_exception = 1;") [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderTreeAsText.h | 44 void write(TextStream&, const RenderSVGShape&, int indent); 45 void write(TextStream&, const RenderSVGRoot&, int indent); 46 void writeSVGGradientStop(TextStream&, const RenderSVGGradientStop&, int indent); 47 void writeSVGResourceContainer(TextStream&, const RenderObject&, int indent); 48 void writeSVGContainer(TextStream&, const RenderObject&, int indent); 49 void writeSVGImage(TextStream&, const RenderSVGImage&, int indent); 50 void writeSVGInlineText(TextStream&, const RenderSVGInlineText&, int indent); 51 void writeSVGText(TextStream&, const RenderSVGText&, int indent); 52 void writeResources(TextStream&, const RenderObject&, int indent);
|
/external/chromium_org/third_party/openssl/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/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/clang/lib/StaticAnalyzer/Core/ |
PlistDiagnostics.cpp | 88 unsigned indent) { 90 Indent(o, indent) << "<dict>\n"; 91 ++indent; 93 Indent(o, indent) << "<key>kind</key><string>control</string>\n"; 96 Indent(o, indent) << "<key>edges</key>\n"; 97 ++indent; 98 Indent(o, indent) << "<array>\n" [all...] |
/external/chromium_org/ui/accessibility/ |
ax_tree_update.cc | 25 // The challenge here is that we want to indent the nodes being updated 32 int indent = id_to_indentation[nodes[i].id]; local 33 result += std::string(2 * indent, ' '); 36 id_to_indentation[nodes[i].child_ids[j]] = indent + 1;
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_prn.c | 67 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported); 71 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) 77 BIO_printf(out, "%*s", indent, ""); 81 if(ml) BIO_printf(out, "%*s", indent, ""); 108 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) 118 return unknown_ext_print(out, ext, flag, indent, 0); 123 if(!ext_str) return unknown_ext_print(out, ext, flag, indent, 1); 131 BIO_printf(out, "%*s%s", indent, "", value); 141 BIO_printf(out, "%*s%s", indent, "", tmp); 151 X509V3_EXT_val_prn(out, nval, indent, [all...] |
/external/openssl/crypto/x509v3/ |
v3_prn.c | 67 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported); 71 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) 77 BIO_printf(out, "%*s", indent, ""); 81 if(ml) BIO_printf(out, "%*s", indent, ""); 108 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) 118 return unknown_ext_print(out, ext, flag, indent, 0); 123 if(!ext_str) return unknown_ext_print(out, ext, flag, indent, 1); 131 BIO_printf(out, "%*s%s", indent, "", value); 141 BIO_printf(out, "%*s%s", indent, "", tmp); 151 X509V3_EXT_val_prn(out, nval, indent, [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
output_unknown.properties | 30 indent=no 44 {http\u003a//xml.apache.org/xalan}indent-amount=0
|
/frameworks/av/include/media/stagefright/foundation/ |
hexdump.h | 29 size_t indent = 0, AString *appendTo = NULL);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/cloog/ |
pprint.h | 60 void clast_pprint(FILE *foo, struct clast_stmt *root, int indent,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/ |
pprint.h | 60 void clast_pprint(FILE *foo, struct clast_stmt *root, int indent,
|
/external/chromium_org/tools/ |
include_tracer.py | 140 def Walk(seen, filename, parent, indent): 161 print ' ' * indent + filename 178 print ' ' * (indent + 2) + "-- not found" 184 seen, line.split('"')[1], resolved_filename, indent + 2) 188 seen, include, resolved_filename, indent + 2) 191 seen, line.split('"')[1], resolved_filename, indent + 2)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/ |
test_indent.py | 34 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(',', ': ')) 45 def check(indent, expected): 46 d1 = self.dumps(h, indent=indent) 50 self.json.dump(h, sio, indent=indent) 53 # indent=0 should emit newlines 55 # indent=None is more compact
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/ |
test_indent.py | 34 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(',', ': ')) 45 def check(indent, expected): 46 d1 = self.dumps(h, indent=indent) 50 self.json.dump(h, sio, indent=indent) 53 # indent=0 should emit newlines 55 # indent=None is more compact
|
/frameworks/compile/slang/ |
slang_rs_reflection.cpp | 355 mOut.indent() << "private static final String " RS_RESOURCE_NAME " = \"" 360 mOut.indent() << "// Constructor\n"; 366 mOut.indent() << "super(rs,\n"; 367 mOut.indent() << " " << RS_RESOURCE_NAME ",\n"; 368 mOut.indent() << " " << className << ".getBitCode32(),\n"; 369 mOut.indent() << " " << className << ".getBitCode64());\n"; 373 mOut.indent() << "this(rs,\n"; 374 mOut.indent() << " rs.getApplicationContext().getResources(),\n"; 375 mOut.indent() << " rs.getApplicationContext().getResources()." 377 mOut.indent() << " " RS_RESOURCE_NAME ", \"raw\",\n" [all...] |
/dalvik/dexgen/src/com/android/dexgen/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...] |