HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 226 - 250 of 2419) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
etree_lxml.py 59 def serializeElement(element, indent=0):
73 rv.append("|%s%s" % (' ' * (indent + 2), dtd_str))
78 serializeElement(next_element, indent + 2)
83 rv.append("|%s\"%s\"" % (' ' * indent, element))
88 serializeElement(next_element, indent + 2)
90 rv.append("|%s<!-- %s -->" % (' ' * indent, element.text))
92 rv.append("|%s\"%s\"" % (' ' * indent, element.tail))
100 rv.append("|%s<%s %s>" % (' ' * indent, prefix,
103 rv.append("|%s<%s>" % (' ' * indent,
120 rv.append('|%s%s="%s"' % (' ' * (indent + 2), name, value)
    [all...]
etree.py 197 def serializeElement(element, indent=0):
211 rv.append("|%s\"%s\"" % (' ' * (indent + 2), element.text))
217 rv.append("|%s<!-- %s -->" % (' ' * indent, element.text))
229 rv.append("|%s<%s>" % (' ' * indent, name))
244 rv.append('|%s%s="%s"' % (' ' * (indent + 2), name, value))
246 rv.append("|%s\"%s\"" % (' ' * (indent + 2), element.text))
247 indent += 2
249 serializeElement(child, indent)
251 rv.append("|%s\"%s\"" % (' ' * (indent - 2), element.tail))
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java 28 String indent = manySpaces.substring(0, depth * 2); local
32 System.out.println(indent + "text: «" +
39 System.out.println(indent + "replace: number");
71 String indent = manySpaces.substring(0, depth * 2); local
77 System.out.println(indent + variant.getSelectorValue() + " " +
83 System.out.println(indent + variant.getSelector() + ":");
85 System.out.println(indent + variant.getSelector() + " (" + value + "):");
89 System.out.println(indent + variant.getSelector() + ":");
227 String indent = manySpaces.substring(0, depth++ * 2); local
231 indent
245 String indent = manySpaces.substring(0, depth++ * 2); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
CodeItem.java 114 out.indent();
175 out.indent();
179 out.indent();
200 out.indent();
204 out.indent();
212 out.indent();
216 out.indent();
382 out.indent();
386 out.indent();
416 out.indent();
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 47 private boolean[] indent = new boolean[4]; field in class:KXmlSerializer
93 if (indent.length <= depth) {
95 System.arraycopy(indent, 0, hlp, 0, depth);
96 indent = hlp;
98 indent[depth] = indent[depth - 1];
216 "http://xmlpull.org/v1/doc/features.html#indent-output"
219 ? indent[depth]
296 if ("http://xmlpull.org/v1/doc/features.html#indent-output"
298 indent[depth] = value
    [all...]
  /external/chromium-trace/catapult/catapult_base/catapult_base/refactor/
snippet.py 43 def PrintTree(self, indent=0, stream=sys.stdout):
140 def PrintTree(self, indent=0, stream=sys.stdout):
141 stream.write(' ' * indent)
148 stream.write(' ' * indent)
188 def PrintTree(self, indent=0, stream=sys.stdout):
189 stream.write(' ' * indent)
199 child.PrintTree(indent + 2, stream)
  /external/clang/lib/Frontend/
FrontendActions.cpp 455 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
458 Out.indent(2)
467 Out.indent(2) << "Module name: " << ModuleName << "\n";
470 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n";
475 Out.indent(2) << "Language options:\n";
479 Out.indent(4) << Description << ": " \
482 Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
488 Out.indent(4) << "Module features:\n";
490 Out.indent(6) << Feature << "\n";
498 Out.indent(2) << "Target options:\n"
    [all...]
  /external/llvm/lib/ProfileData/
SampleProfWriter.cpp 45 if (Indent == 0)
53 OS.indent(Indent + 1);
68 Indent += 1;
72 OS.indent(Indent);
80 Indent -= 1;
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
refactor.py 567 indent = None
574 indent, filename))
578 indent = line[:i]
579 elif (indent is not None and
580 (line.startswith(indent + self.PS2) or
581 line == indent + self.PS2.rstrip() + u"\n")):
586 indent, filename))
588 indent = None
592 indent, filename))
595 def refactor_doctest(self, block, lineno, indent, filename)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
refactor.py 567 indent = None
574 indent, filename))
578 indent = line[:i]
579 elif (indent is not None and
580 (line.startswith(indent + self.PS2) or
581 line == indent + self.PS2.rstrip() + u"\n")):
586 indent, filename))
588 indent = None
592 indent, filename))
595 def refactor_doctest(self, block, lineno, indent, filename)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 567 indent = None
574 indent, filename))
578 indent = line[:i]
579 elif (indent is not None and
580 (line.startswith(indent + self.PS2) or
581 line == indent + self.PS2.rstrip() + u"\n")):
586 indent, filename))
588 indent = None
592 indent, filename))
595 def refactor_doctest(self, block, lineno, indent, filename)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 567 indent = None
574 indent, filename))
578 indent = line[:i]
579 elif (indent is not None and
580 (line.startswith(indent + self.PS2) or
581 line == indent + self.PS2.rstrip() + u"\n")):
586 indent, filename))
588 indent = None
592 indent, filename))
595 def refactor_doctest(self, block, lineno, indent, filename)
    [all...]
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 28 /// \brief Tracks the indent level of \c AnnotatedLines across levels.
31 /// getIndent() will return the indent for the last line \c nextLine was called
33 /// If the line is not formatted (and thus the indent does not change), calling
47 /// \brief Returns the indent for the current line.
48 unsigned getIndent() const { return Indent; }
50 /// \brief Update the indent state given that \p Line is going to be formatted
54 // Update the indent level cache size so that we can rely on it
59 Indent = Line.Level * Style.IndentWidth + AdditionalIndent;
62 Indent = getIndent(IndentForLevel, Line.Level);
64 if (static_cast<int>(Indent) + Offset >= 0
    [all...]
  /external/boringssl/src/crypto/asn1/
asn1_par.c 67 int indent);
69 int offset, int depth, int indent, int dump);
71 int indent)
82 BIO_indent(bp,indent,128);
103 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
105 return(asn1_parse2(bp,&pp,len,0,0,indent,0));
108 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
110 return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
114 int depth, int indent, int dump)
126 dump_indent = indent;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 464 public void write(Appendable out, int indent) throws IOException {
466 indent(out, indent); method
472 indent(out, indent); method
481 int childIndent = indent;
483 indent(out, indent); method
492 indent(out, indent); method
534 private void indent(Appendable out, int indent) throws IOException { method in class:NestedMapData
    [all...]
  /external/libvorbis/doc/
Vorbis_I_spec.css 26 p.noindent { text-indent: 0em }
27 td p.noindent { text-indent: 0em; margin-top:0em; }
28 p.nopar { text-indent: 0em; }
29 p.indent{ text-indent: 1.5em }
36 li p.indent { text-indent: 0em }
53 .fbox {padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
55 div.center div.fbox {text-align:center; clear:both; padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
64 .framebox-c, .framebox-l, .framebox-r { padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt;
    [all...]
  /external/vogar/src/vogar/
Console.java 47 protected String indent; field in class:Console
55 public void setIndent(String indent) {
56 this.indent = indent;
116 out.println(colorString(indent + item, Color.WARN));
174 out.print(indent + outcomeName + " ");
247 sb.append(indent);
345 out.print(indent);
346 out.print(indent);
355 out.print(indent);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_proj.sh 71 indent=""
73 indent="${indent}${indent1}"
76 indent="${indent%${indent1}}"
84 echo "${indent}${opt%%=*}=\"${optval}\""
92 echo "${indent}<${tag}"
95 echo "${indent}>"
97 echo "${indent}<${tag}>"
105 echo "${indent}</${tag}>
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
XSLOutputAttributes.java 31 * <xsl:output method="xml" omit-xml-declaration="no" indent="yes"/>
42 * indent
83 * @return the number of spaces to indent for each indentation level.
151 * Sets the value coming from the xsl:output indent stylesheet
153 * @param indent true if the output document should be indented to visually
156 public void setIndent(boolean indent);
192 * <li> "{http://xml.apache.org/xalan}indent-amount"
215 * <li> "{http://xml.apache.org/xalan}indent-amount"
230 * <li> "{http://xml.apache.org/xalan}indent-amount"
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 178 void print(raw_ostream &OS, unsigned indent = 0) const;
182 virtual void printImpl(raw_ostream &OS, unsigned indent) const = 0;
229 void printImpl(raw_ostream &OS, unsigned indent) const override;
256 void printImpl(raw_ostream &OS, unsigned indent) const override;
291 void printImpl(raw_ostream &OS, unsigned indent) const override;
310 void printImpl(raw_ostream &OS, unsigned indent) const override;
329 void printImpl(raw_ostream &OS, unsigned indent) const override;
350 void printImpl(raw_ostream &OS, unsigned indent) const override;
370 void printImpl(raw_ostream &OS, unsigned indent) const override;
393 void printImpl(raw_ostream &OS, unsigned indent) const override
    [all...]
X86DisassemblerTables.h 104 /// stream and indent level for the UID tables generated by
110 /// @param i1 - The indent level to use with stream o1.
111 /// @param i2 - The indent level to use with stream o2.
143 /// @param i1 - The indent level to use with stream o1.
144 /// @param i2 - The indent level to use with stream o2.
181 /// @param i - The indent level for use with the stream.
197 /// @param i - The indent level for use with the stream.
206 /// @param i1 - The indent level to use with stream o1.
207 /// @param i2 - The indent level to use with stream o2.
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
SerializeOptions.java 73 private String indent = " "; field in class:SerializeOptions
288 * @return Returns the indent.
292 return indent;
297 * @param indent
298 * The indent to set.
301 public SerializeOptions setIndent(String indent)
303 this.indent = indent;
392 clone.setIndent(indent);
  /system/extras/simpleperf/
record.h 127 void Dump(size_t indent) const;
155 void Dump(size_t indent = 0) const;
180 void DumpData(size_t indent) const override;
205 void DumpData(size_t indent) const override;
221 void DumpData(size_t indent) const override;
237 void DumpData(size_t indent) const override;
278 void DumpData(size_t indent) const override;
294 void DumpData(size_t indent) const override;
306 void DumpData(size_t indent) const override;
  /external/bison/build-aux/
update-b4-copyright 92 my $indent = index ($b4_copyright_line, '[');
93 --$indent if ($b4_copyright_line =~ m/^\n/);
96 my $text_margin = $margin - $indent;
100 my $line = "\n" . (' 'x$indent) . $1;
101 ++$indent if (!$year_lines_new);

Completed in 4704 milliseconds

1 2 3 4 5 6 7 8 91011>>