HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 251 - 275 of 1973) sorted by null

<<11121314151617181920>>

  /external/markdown/markdown/extensions/
html_tidy.py 12 indent the output, set ``indent=auto`` and to have Tidy wrap the output in
  /external/mesa3d/src/mesa/program/
prog_print.h 88 GLint indent,
93 _mesa_print_instruction_opt(const struct prog_instruction *inst, GLint indent,
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 54 unsigned EmitMatcherList(const Matcher *N, unsigned Indent,
61 unsigned EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx,
138 EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx,
140 OS.PadToColumn(Indent*2);
157 OS.PadToColumn(Indent*2) << "/*Scope*/ ";
159 OS.PadToColumn(Indent*2);
176 ChildSize = EmitMatcherList(SM->getChild(i), Indent+1,
198 OS.PadToColumn(Indent*2) << "0, ";
317 ChildSize = EmitMatcherList(Child, Indent+1, CurrentIdx+VBRSize+IdxSize,
326 OS.PadToColumn(Indent*2)
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 172 int indent; local
210 indent = cp - save_cp + 1;
254 printf("Indent: %d; IndentLevel: %d; Line: %s", indent, indentLevel, buf);
258 if (indent == indentLevel + 1) { // Entering a method
262 } else if (indent == indentLevel) { // Exiting a method
273 indent);
292 indentLevel, indent);
297 printf(" Nonzero indent at first record\n");
302 // initial indent. This allows us to test popping off mor
    [all...]
  /external/valgrind/main/docs/lib/
vg-faq2txt.xsl 5 <!ENTITY indent " ">
21 indent="yes" omit-xml-declaration="yes"/>
157 <!-- maybe pass a var 'indent' along to foldl ... ... -->
213 <!-- TODO: this is where an 'indent' param should be sent -->
225 <!-- always indent the contents of screen / programlisting -->
227 <xsl:call-template name="indent.me">
275 <!-- indent a string -->
276 <xsl:template name="indent.me">
285 <xsl:text>&indent;</xsl:text>
286 <xsl:call-template name="indent.me"
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 34 raw_ostream& Indent() { return Indent(Indentation); }
35 raw_ostream& Indent(unsigned Indentation);
46 void VisitDeclContext(DeclContext *DC, bool Indent = true);
178 Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
181 raw_ostream& DeclPrinter::Indent(unsigned Indentation) {
201 this->Indent();
221 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
225 if (Indent)
274 this->Indent();
    [all...]
  /external/clang/lib/Format/
ContinuationIndenter.cpp 116 // Don't create a 'hanging' indent if there are multiple blocks in a single
147 State.Column > State.Stack.back().Indent && // Breaking saves columns.
287 else if (State.Stack.back().Indent + Current.LongestObjCSelectorName >
290 State.Stack.back().Indent + Current.LongestObjCSelectorName;
297 State.Stack.back().Indent = State.Column + Spaces;
307 // parameter, i.e. let nested calls have a continuation indent.
320 // Always indent relative to the RHS of the expression unless this is a
321 // simple assignment without binary expression on the RHS. Also indent
325 State.Stack.back().Indent = State.Column;
328 // If a function has a trailing call, indent all parameters from th
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
IssuingDistributionPoint.java 258 String indent = " "; local
260 buf.append(indent);
264 buf.append(indent);
265 buf.append(indent);
  /external/chromium_org/mojo/public/tools/bindings/generators/cpp_templates/
interface_declaration.tmpl 40 {{enum_def()|indent(2)}}
  /external/chromium_org/third_party/WebKit/ManualTests/
resize-events.html 20 <p style="text-indent: 10px" id=result1>
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEBlend.cpp 142 TextStream& FEBlend::externalRepresentation(TextStream& ts, int indent) const
144 writeIndent(ts, indent);
148 inputEffect(0)->externalRepresentation(ts, indent + 1);
149 inputEffect(1)->externalRepresentation(ts, indent + 1);
  /external/chromium_org/third_party/icu/source/tools/gensprep/
gensprep.h 78 * indent-tabs-mode: nil
  /external/chromium_org/third_party/polymer/components/core-scroll-header-panel/
metadata.html 14 <div class="bottom indent">Title</div>
  /external/chromium_org/third_party/polymer/components/core-toolbar/
demo.html 81 <span class="bottom indent">Toolbar: medium-tall with label aligns to the bottom</span>
91 <div class="middle indent">label aligns to the middle</div>
92 <div class="bottom indent" style="color: #666; font-size: 18px;">some stuffs align to the bottom</div>
102 <div class="middle indent">element (e.g. progress) fits at the bottom of the toolbar</div>
  /external/chromium_org/third_party/polymer/components-chromium/core-scroll-header-panel/
metadata.html 14 <div class="bottom indent">Title</div>
  /external/chromium_org/third_party/polymer/components-chromium/core-toolbar/
demo.html 81 <span class="bottom indent">Toolbar: medium-tall with label aligns to the bottom</span>
91 <div class="middle indent">label aligns to the middle</div>
92 <div class="bottom indent" style="color: #666; font-size: 18px;">some stuffs align to the bottom</div>
102 <div class="middle indent">element (e.g. progress) fits at the bottom of the toolbar</div>
  /external/chromium_org/third_party/qcms/
qcms.gyp 63 # indent-tabs-mode:nil
  /external/chromium_org/third_party/simplejson/
tool.py 34 json.dump(obj, outfile, sort_keys=True, indent=' ', use_decimal=True)
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
doc_writer.py 241 def _PythonObjectToPlist(self, obj, indent=''):
247 return [ '%s<%s/>' % (indent, 'true' if obj else 'false') ]
249 return [ '%s<integer>%s</integer>' % (indent, obj) ]
251 return [ '%s<string>%s</string>' % (indent, obj) ]
253 result = [ '%s<array>' % indent ]
255 result += self._PythonObjectToPlist(item, indent + ' ')
256 result.append('%s</array>' % indent)
259 result = [ '%s<dict>' % indent ]
261 result.append('%s<key>%s</key>' % (indent + ' ', key))
262 result += self._PythonObjectToPlist(obj[key], indent + ' '
    [all...]
xml_writer_base_unittest.py 26 child.toprettyxml(indent=' ') for child in parent.childNodes)
  /external/chromium_org/tools/metrics/actions/
print_style.py 23 # Tag names for top-level nodes whose children we don't want to indent.
  /external/chromium_org/tools/metrics/histograms/
print_style.py 27 # Tag names for top-level nodes whose children we don't want to indent.
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_memory.py 46 json.dumps(res, indent=2))
  /external/clang/www/analyzer/
menu.css 26 text-indent: 0px;
  /external/icu/icu4c/source/tools/gensprep/
gensprep.h 78 * indent-tabs-mode: nil

Completed in 1194 milliseconds

<<11121314151617181920>>