HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 1 - 25 of 1065) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
99 void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
100 OS.indent(indent) << "Scope\n";
103 OS.indent(indent+1) << "NULL POINTER\n";
105 getChild(i)->print(OS, indent+2);
109 void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) const
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
Statement.java 36 private String getIndent(int indent){
37 return " ".substring(0, indent);
40 private String toString(int indent){
42 sb.append(getIndent(indent));
47 sb.append(statement.toString(indent+4));
50 sb.append(getIndent(indent));
  /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/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 102 static raw_ostream &Indent(raw_ostream &o, const unsigned indent) {
103 for (unsigned i = 0; i < indent; ++i) o << ' ';
110 unsigned indent, bool extend = false) {
118 Indent(o, indent) << "<dict>\n";
119 Indent(o, indent) << " <key>line</key><integer>"
121 Indent(o, indent) << " <key>col</key><integer>
    [all...]
  /external/llvm/test/YAMLParser/
spec-09-02.data 3 # Indent trimming is not yet implemented.
  /external/bison/src/
complain.h 28 /* Sub-messages indent. */
47 /* Generate a message aligned by an indent.
48 When *indent == 0, assign message's indent to *indent,
49 When *indent > 0, align the message by *indent value. */
50 void warn_at_indent (location loc, unsigned *indent,
62 /* Generate a message aligned by an indent.
63 When *indent == 0, assign message's indent to *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/libvpx/libvpx/examples/
gen_example_code.sh 30 indent=${line%%${block_name}}
31 indent=${#indent}
32 [ $indent -eq 1 ] && indent=0
52 (( rem = 78 - indent ))
54 \**) printf "%${indent}s * %s\n" "" "$t_line" ;;
57 printf "%${indent}s%-${rem}s//\n" "" "$t_line"
59 printf "%${indent}s%s\n" "" "$t_line"
  /external/llvm/utils/emacs/
emacs.el 5 ;; Max 80 cols per line, indent by two spaces, no tabs.
9 '(c++-indent-level 2)
11 '(indent-tabs-mode nil))
18 (c++-indent-level . 2)
20 (indent-tabs-mode . nil)
  /external/llvm/lib/TableGen/
StringMatcher.cpp 47 std::string Indent(IndentCount*2+4, ' ');
54 // If the to-execute code has \n's in it, indent each subsequent line.
58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
63 OS << Indent << Split.first << "\n";
86 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '"
88 OS << Indent << " break;\n";
92 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
95 OS << Indent << " break;\n";
103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
104 OS << Indent << "default: break;\n"
    [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...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java 48 private static final String INDENT = "\n ";
49 private static final String STYLE_INDENT = INDENT + " ";
56 sb.append(INDENT + ".setSmallIcon(" + getResourceVar(context, SMALL_ICON) + ")");
58 sb.append(INDENT + ".setContentTitle(" + quote(CONTENT_TITLE) + ")");
60 sb.append(INDENT + ".setContentText(" + quote(CONTENT_TEXT) + ")");
62 sb.append(INDENT + ".setSubText(" + quote(SUB_TEXT) + ")");
64 sb.append(INDENT + ".setLargeIcon(largeIconBitmap)");
66 sb.append(INDENT + ".setContentInfo(" + quote(CONTENT_INFO) + ")");
68 sb.append(INDENT + ".setNumber(" + NUMBER.getValueInt() + ")");
70 sb.append(INDENT + ".setWhen(" + WHEN.getValueLong() + ")")
    [all...]
  /external/clang/lib/Basic/
Module.cpp 245 void Module::print(raw_ostream &OS, unsigned Indent) const {
246 OS.indent(Indent);
254 OS.indent(Indent + 2);
261 OS.indent(Indent + 2);
272 OS.indent(Indent + 2);
277 OS.indent(Indent + 2)
    [all...]
  /sdk/eclipse/sites/external/web/
site.xsl 39 <td class="log-text" id="indent">
44 <div id="indent">
57 <tr><td class="log-text" id="indent">Operating Systems:</td>
58 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@os"/></td>
62 <tr><td class="log-text" id="indent">Windows Systems:</td>
63 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@ws"/></td>
67 <tr><td class="log-text" id="indent">Languages:</td>
68 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@nl"/></td>
72 <tr><td class="log-text" id="indent">Architecture:</td>
73 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@arch"/></td
    [all...]
  /sdk/eclipse/sites/internal/web/
site.xsl 39 <td class="log-text" id="indent">
44 <div id="indent">
57 <tr><td class="log-text" id="indent">Operating Systems:</td>
58 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@os"/></td>
62 <tr><td class="log-text" id="indent">Windows Systems:</td>
63 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@ws"/></td>
67 <tr><td class="log-text" id="indent">Languages:</td>
68 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@nl"/></td>
72 <tr><td class="log-text" id="indent">Architecture:</td>
73 <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@arch"/></td
    [all...]
  /external/jdiff/src/jdiff/
API.java 73 int indent = 0; local
76 dumpPackage((PackageAPI)(iter.next()), indent);
84 * @param indent The number of spaces to indent the output.
86 public void dumpPackage(PackageAPI pkg, int indent) {
87 for (int i = 0; i < indent; i++) System.out.print(" ");
91 dumpClass((ClassAPI)(iter.next()), indent + indentInc);
104 * @param indent The number of spaces to indent the output.
106 public static void dumpClass(ClassAPI c, int indent) {
    [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/clang/lib/ARCMigrate/
PlistReporter.cpp 40 static raw_ostream& Indent(raw_ostream& o, const unsigned indent) {
41 for (unsigned i = 0; i < indent; ++i) o << ' ';
48 unsigned indent, bool extend = false) {
56 Indent(o, indent) << "<dict>\n";
57 Indent(o, indent) << " <key>line</key><integer>"
59 Indent(o, indent) << " <key>col</key><integer>
    [all...]
  /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/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
rule-tracer.rb 29 indent = @level * @spaces_per_indent
31 @device.print( ' ' * indent, ARROW_IN, name )
44 indent = @level * @spaces_per_indent
46 @device.print( ' ' * indent, ARROW_OUT, name )
  /frameworks/compile/slang/
slang_rs_reflection.cpp 321 C.indent() << "private static final String " RS_RESOURCE_NAME " = \""
327 C.indent() << "// Constructor" << std::endl;
336 C.indent() << "this(rs," << std::endl;
337 C.indent() << " rs.getApplicationContext().getResources()," << std::endl;
338 C.indent() << " rs.getApplicationContext().getResources()."
340 C.indent() << " " RS_RESOURCE_NAME ", \"raw\"," << std::endl;
341 C.indent() << " rs.getApplicationContext().getPackageName()));"
355 C.indent() << "super(rs, resources, id);" << std::endl;
368 C.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
410 C.indent() << "private Element " RS_ELEM_PREFIX << *I << ";" << std::endl
    [all...]
  /external/icu4c/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...]
  /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...]
  /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/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...]

Completed in 1315 milliseconds

1 2 3 4 5 6 7 8 91011>>