HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 51 - 75 of 3708) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/swiftshader/third_party/LLVM/utils/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 (" << StrVariableName << ".substr(" << CharNo << ", "
95 OS << Indent << " break;\n";
103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
104 OS << Indent << "default: break;\n"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
internal.go 25 sourceAdj func(src []byte, indent int) []byte,
45 sourceAdj = func(src []byte, indent int) []byte {
48 src = src[indent+len("package p\n"):]
69 sourceAdj = func(src []byte, indent int) []byte {
70 // Cap adjusted indent to zero.
71 if indent < 0 {
72 indent = 0
76 // There will be two non-blank lines with indent, hence 2*indent.
77 src = src[2*indent+len("package p\n\nfunc _() {"):
    [all...]
  /prebuilts/go/darwin-x86/src/go/format/
internal.go 25 sourceAdj func(src []byte, indent int) []byte,
45 sourceAdj = func(src []byte, indent int) []byte {
48 src = src[indent+len("package p\n"):]
69 sourceAdj = func(src []byte, indent int) []byte {
70 // Cap adjusted indent to zero.
71 if indent < 0 {
72 indent = 0
76 // There will be two non-blank lines with indent, hence 2*indent.
77 src = src[2*indent+len("package p\n\nfunc _() {"):
    [all...]
  /prebuilts/go/linux-x86/src/cmd/gofmt/
internal.go 25 sourceAdj func(src []byte, indent int) []byte,
45 sourceAdj = func(src []byte, indent int) []byte {
48 src = src[indent+len("package p\n"):]
69 sourceAdj = func(src []byte, indent int) []byte {
70 // Cap adjusted indent to zero.
71 if indent < 0 {
72 indent = 0
76 // There will be two non-blank lines with indent, hence 2*indent.
77 src = src[2*indent+len("package p\n\nfunc _() {"):
    [all...]
  /prebuilts/go/linux-x86/src/go/format/
internal.go 25 sourceAdj func(src []byte, indent int) []byte,
45 sourceAdj = func(src []byte, indent int) []byte {
48 src = src[indent+len("package p\n"):]
69 sourceAdj = func(src []byte, indent int) []byte {
70 // Cap adjusted indent to zero.
71 if indent < 0 {
72 indent = 0
76 // There will be two non-blank lines with indent, hence 2*indent.
77 src = src[2*indent+len("package p\n\nfunc _() {"):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
util.py 27 indent = None
31 indent = len(l) - len(ls)
33 L += [l[indent:] for l in lines]
  /external/python/cpython2/Tools/framer/framer/
util.py 27 indent = None
31 indent = len(l) - len(ls)
33 L += [l[indent:] for l in lines]
  /external/syslinux/com32/gpllib/zzjson/
zzjson_print.c 38 unsigned int indent, unsigned int objval) {
48 if (c) PRINT("%s%*s%c", indent ? "\n" : "", indent, "", c);
54 PRINT("\n%*s\"", indent+INC, "");
59 indent+INC, 1) < 0) return -1;
65 indent+INC, 0) < 0) return -1;
68 PRINT(objval ? " \"" : "\n%*s\"", indent, "");
73 PRINT(objval ? " false" : "\n%*sfalse", indent, "");
76 PRINT(objval ? " null" : "\n%*snull", indent, "");
79 PRINT(objval ? " true" : "\n%*strue", indent, "");
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
debug.go 229 func (deb *debugger) delimitedMessage(indent tab) bool {
236 deb.message(indent)
270 func (deb *debugger) message(indent tab) bool {
277 deb.typeDefinition(indent, -id)
282 deb.value(indent, id)
354 func (deb *debugger) typeDefinition(indent tab, id typeId) {
431 deb.printWireType(indent, wire)
440 func (deb *debugger) value(indent tab, id typeId) {
443 deb.structValue(indent, id)
445 deb.singletonValue(indent, id
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
debug.go 229 func (deb *debugger) delimitedMessage(indent tab) bool {
236 deb.message(indent)
270 func (deb *debugger) message(indent tab) bool {
277 deb.typeDefinition(indent, -id)
282 deb.value(indent, id)
354 func (deb *debugger) typeDefinition(indent tab, id typeId) {
431 deb.printWireType(indent, wire)
440 func (deb *debugger) value(indent tab, id typeId) {
443 deb.structValue(indent, id)
445 deb.singletonValue(indent, id
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pprint.py 52 def pprint(object, stream=None, indent=1, width=80, depth=None):
55 stream=stream, indent=indent, width=width, depth=depth)
58 def pformat(object, indent=1, width=80, depth=None):
60 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
82 def __init__(self, indent=1, width=80, depth=None, stream=None):
86 indent
87 Number of spaces to indent for each level of nesting.
100 indent = int(indent)
    [all...]
  /external/mesa3d/
.dir-locals.el 3 (indent-tabs-mode . nil)
17 (makefile-mode (indent-tabs-mode . t))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_prn.c 70 unsigned long flag, int indent, int supported);
74 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
82 BIO_printf(out, "%*s", indent, "");
88 BIO_printf(out, "%*s", indent, "");
106 int indent)
116 return unknown_ext_print(out, ext, flag, indent, 0);
126 return unknown_ext_print(out, ext, flag, indent, 1);
133 BIO_printf(out, "%*s%s", indent, "", value);
139 X509V3_EXT_val_prn(out, nval, indent,
142 if (!method->i2r(method, ext_str, out, indent))
    [all...]
  /external/python/cpython2/Lib/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
indent.go 60 func newline(dst *bytes.Buffer, prefix, indent string, depth int) {
64 dst.WriteString(indent)
68 // Indent appends to dst an indented form of the JSON-encoded src.
71 // copies of indent according to the indentation nesting.
79 func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error {
97 newline(dst, prefix, indent, depth)
110 // delay indent so that empty object and array are formatted as {} and [].
116 newline(dst, prefix, indent, depth)
124 // suppress indent in empty object/arra
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
indent.go 60 func newline(dst *bytes.Buffer, prefix, indent string, depth int) {
64 dst.WriteString(indent)
68 // Indent appends to dst an indented form of the JSON-encoded src.
71 // copies of indent according to the indentation nesting.
79 func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error {
97 newline(dst, prefix, indent, depth)
110 // delay indent so that empty object and array are formatted as {} and [].
116 newline(dst, prefix, indent, depth)
124 // suppress indent in empty object/arra
    [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/testng/eclipse-projects/beust.com/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/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...]

Completed in 1222 milliseconds

1 23 4 5 6 7 8 91011>>