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

<<21222324252627282930>>

  /external/mesa3d/src/mesa/main/
APIspec.py 396 def _c_switch(self, name, indent="\t"):
418 dep_stmts = [indent + s for s in desc.checker._c_switch(dep_name, indent)]
420 stmts.append(indent + "break;")
423 stmts.append(indent + "ON_ERROR(%s);" % switch[0].error);
424 stmts.append(indent + "break;")
429 def dump(self, indent="\t"):
  /external/valgrind/docs/lib/
vg-fo.xsl 7 <!-- set indent = yes while debugging, then change to NO -->
8 <xsl:output method="xml" indent="no"/>
275 <xsl:call-template name="set.toc.indent"/>
371 <fo:list-item-label end-indent="label-end()">
382 <fo:list-item-body start-indent="body-start()">
404 <fo:list-item-label end-indent="label-end()">
409 <fo:list-item-body start-indent="body-start()">
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNode.java 699 * @param indent the current indent level.
702 private void dumpNode(StringBuffer result, boolean recursive, int indent, int index)
704 // write indent
705 for (int i = 0; i < indent; i++)
778 qualifier.dumpNode(result, recursive, indent + 2, i + 1);
794 child.dumpNode(result, recursive, indent + 1, i + 1);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pstats.py 347 indent = ' ' * 8
349 print >> self.stream, indent, func_get_function_name(func)
351 print >> self.stream, indent, self.total_calls, "function calls",
410 indent = ""
420 substats = '%s %s %s %s' % (substats.rjust(7+2*len(indent)),
426 print >> self.stream, indent*left_width + substats
427 indent = " "
doctest.py 225 def _indent(s, indent=4):
235 return re.sub('(?m)^(?!$)', indent*' ', s)
426 - indent: The example's indentation in the DocTest string.
436 def __init__(self, source, want, exc_msg=None, lineno=0, indent=0,
449 self.indent = indent
461 self.indent == other.indent and \
469 return hash((self.source, self.want, self.lineno, self.indent,
555 # (including leading indentation and prompts); `indent` is th
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pstats.py 347 indent = ' ' * 8
349 print >> self.stream, indent, func_get_function_name(func)
351 print >> self.stream, indent, self.total_calls, "function calls",
410 indent = ""
420 substats = '%s %s %s %s' % (substats.rjust(7+2*len(indent)),
426 print >> self.stream, indent*left_width + substats
427 indent = " "
doctest.py 225 def _indent(s, indent=4):
235 return re.sub('(?m)^(?!$)', indent*' ', s)
426 - indent: The example's indentation in the DocTest string.
436 def __init__(self, source, want, exc_msg=None, lineno=0, indent=0,
449 self.indent = indent
461 self.indent == other.indent and \
469 return hash((self.source, self.want, self.lineno, self.indent,
555 # (including leading indentation and prompts); `indent` is th
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 347 indent = ' ' * 8
349 print >> self.stream, indent, func_get_function_name(func)
351 print >> self.stream, indent, self.total_calls, "function calls",
410 indent = ""
420 substats = '%s %s %s %s' % (substats.rjust(7+2*len(indent)),
426 print >> self.stream, indent*left_width + substats
427 indent = " "
doctest.py 225 def _indent(s, indent=4):
235 return re.sub('(?m)^(?!$)', indent*' ', s)
426 - indent: The example's indentation in the DocTest string.
436 def __init__(self, source, want, exc_msg=None, lineno=0, indent=0,
449 self.indent = indent
461 self.indent == other.indent and \
469 return hash((self.source, self.want, self.lineno, self.indent,
555 # (including leading indentation and prompts); `indent` is th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 347 indent = ' ' * 8
349 print >> self.stream, indent, func_get_function_name(func)
351 print >> self.stream, indent, self.total_calls, "function calls",
410 indent = ""
420 substats = '%s %s %s %s' % (substats.rjust(7+2*len(indent)),
426 print >> self.stream, indent*left_width + substats
427 indent = " "
doctest.py 225 def _indent(s, indent=4):
235 return re.sub('(?m)^(?!$)', indent*' ', s)
426 - indent: The example's indentation in the DocTest string.
436 def __init__(self, source, want, exc_msg=None, lineno=0, indent=0,
449 self.indent = indent
461 self.indent == other.indent and \
469 return hash((self.source, self.want, self.lineno, self.indent,
555 # (including leading indentation and prompts); `indent` is th
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /prebuilts/tools/common/offline-m2/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /system/connectivity/shill/net/
netlink_attribute.cc 387 void NetlinkAttribute::Print(int log_level, int indent) const {
389 VLOG(log_level) << HeaderToPrint(indent) << " "
414 string NetlinkAttribute::HeaderToPrint(int indent) const {
417 indent * kSpacesPerIndent, "",
833 void NetlinkNestedAttribute::Print(int log_level, int indent) const {
834 VLOG(log_level) << HeaderToPrint(indent);
835 value_->Print(log_level, indent + 1);
    [all...]
  /external/google-breakpad/src/processor/
stackwalk_common.cc 115 static void PrintStackContents(const std::string &indent,
174 printf("\n%sStack contents:", indent.c_str());
178 printf("\n%s %08x", indent.c_str(), static_cast<uint32_t>(address));
180 printf("\n%s %016" PRIx64, indent.c_str(), address);
201 printf("\n%sPossible instruction pointers:\n", indent.c_str());
226 printf("%s *(0x%08x) = 0x%08x", indent.c_str(),
231 indent.c_str(), address, pointee_frame.instruction);
610 const std::string indent(" ");
611 PrintStackContents(indent, frame, stack->frames()->at(frame_index + 1),
    [all...]
  /build/blueprint/parser/
printer.go 136 p.indent(p.curIndent() + 4)
156 p.indent(p.curIndent() + 4)
354 func (p *printer) indent(i int) { func
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 44 * to do my version of the whole nasty INDENT/DEDENT issue just so I
62 INDENT;
254 | NEWLINE INDENT (stmt)+ DEDENT
  /external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
schema.py 232 def indent(self): member in class:_SchemaToStruct
252 self.indent()
288 self.indent()
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridDataFactory.java 476 // Indent
480 * Sets the indent of the control within the cell in pixels.
488 * Sets the indent of the control within the cell in characters.
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonValue.java 988 private void prettyPrint (JsonValue object, StringBuilder buffer, int indent, PrettyPrintSettings settings) {
1001 if (newLines) indent(indent, buffer); method
1029 if (newLines) indent(indent, buffer); method
1072 static private void indent (int count, StringBuilder buffer) { method in class:JsonValue
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 337 printer_->Indent();
418 printer_->Indent();
419 printer_->Indent();
494 printer_->Indent();
526 printer_->Indent();
549 printer_->Indent();
567 printer_->Indent();
590 printer_->Indent();
616 printer_->Indent();
646 printer_->Indent();
    [all...]
  /external/testng/doc/
maven.html 33 *.P1 { font-family:Sans; font-size:10pt; margin-left:0in; margin-right:0in; text-align:left ! important; text-indent:0inch; color:#a52a2a; }
34 *.P2 { font-family:Sans; font-size:10pt; margin-left:0in; margin-right:0in; text-align:left ! important; text-indent:0inch; }
35 *.P3 { font-family:'Nimbus Roman No9 L'; font-size:12pt; margin-left:0in; margin-right:0in; text-align:left ! important; text-indent:0inch; }
  /external/testng/src/main/java/org/testng/reporters/
XMLStringBuffer.java 20 /** Tab space indent for XML document */
373 public final String indent; field in class:Tag
378 indent = ind;
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/doc/
FwdLock.html 34 text-indent:-21.6pt;
43 text-indent:-28.8pt;
53 text-indent:-36.0pt;
62 text-indent:-43.2pt;
71 text-indent:-50.4pt;
80 text-indent:-57.6pt;
88 text-indent:-64.8pt;
96 text-indent:-72.0pt;
105 text-indent:-79.2pt;
423 <p class=MsoBodyText style='margin-left:36.0pt;text-indent:-18.0pt'>1.<spa
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
sysdump.c 218 static int indent; variable
225 for (i = 0; i < indent; i++)
526 indent += i;

Completed in 3275 milliseconds

<<21222324252627282930>>