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

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
61 indent = u"; "
62 end = pytree.Leaf(token.INDENT, u"")
100 new_lines[0].prefix = indent
107 suite[0].children[i].prefix = indent
  /external/chromium_org/third_party/cython/src/Cython/
CodeWriter.py 45 def indent(self): member in class:DeclarationWriter
92 self.indent()
173 self.indent()
228 self.indent()
243 self.indent()
353 self.indent()
358 self.indent()
368 self.indent()
375 self.indent()
380 self.indent()
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 410 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
413 Out.indent(2)
422 Out.indent(2) << "Module name: " << ModuleName << "\n";
425 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n";
430 Out.indent(2) << "Language options:\n";
434 Out.indent(4) << Description << ": " \
437 Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
446 Out.indent(2) << "Target options:\n";
447 Out.indent(4) << " Triple: " << TargetOpts.Triple << "\n";
448 Out.indent(4) << " CPU: " << TargetOpts.CPU << "\n"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.cpp 391 static void printIndent(int indent)
393 for (int i = 0; i < indent; ++i)
397 static void printFrames(const blink::Frame* frame, const blink::Frame* targetFrame, int indent)
401 printIndent(indent - 1);
403 printIndent(indent);
407 printIndent(indent);
409 printIndent(indent);
411 printIndent(indent);
413 printIndent(indent);
417 printFrames(child, targetFrame, indent + 1)
    [all...]
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 61 def PrettyPrintNode(node, indent=0):
64 print '%s%s' % (' '*indent, node.data.strip())
76 print '%s<%s>' % (' '*indent, node.nodeName)
78 print '%s<%s' % (' '*indent, node.nodeName)
85 print '%s %s="%s"' % (' '*indent, name, value)
86 print '%s>' % (' '*indent)
88 print '%s %s' % (' '*indent, node.nodeValue)
91 PrettyPrintNode(sub_node, indent=indent+2)
92 print '%s</%s>' % (' '*indent, node.nodeName
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 282 public void dump(PrintWriter pw, String indent) {
284 pw.print(indent);
289 dumpEntry(pw, indent, active, e);
293 pw.print(indent);
299 dumpEntry(pw, indent, inactiveCount, entry);
305 private void dumpEntry(PrintWriter pw, String indent, int i, Entry e) {
306 pw.print(indent);
309 pw.print(indent);
312 pw.print(indent);
314 pw.print(indent);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
exception_safety.ipp 401 format_location( wrap_stringstream& formatter, execution_path_point const& /*p*/, unsigned indent )
403 if( indent )
404 formatter << std::left << std::setw( indent ) << "";
414 format_execution_path( wrap_stringstream& formatter, ExecPathIt it, ExecPathIt end, unsigned indent = 0 )
419 format_location( formatter, *it, indent );
421 format_execution_path( formatter, it+1, it + it->m_scope.size, indent + 2 );
422 format_location( formatter, *it, indent );
428 format_location( formatter, *it, indent );
434 format_location( formatter, *it, indent );
444 format_location( formatter, *it, indent );
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaRouterService.java 531 final String indent = prefix + " "; local
532 pw.println(indent + "mTrusted=" + mTrusted);
533 pw.println(indent + "mRouteTypes=0x" + Integer.toHexString(mRouteTypes));
534 pw.println(indent + "mActiveScan=" + mActiveScan);
535 pw.println(indent + "mSelectedRouteId=" + mSelectedRouteId);
563 final String indent = prefix + " "; local
567 mClientRecords.get(i).dump(pw, indent);
570 pw.println(indent + "<no clients>");
573 pw.println(indent + "State");
574 pw.println(indent + "mTrustedState=" + mTrustedState)
706 final String indent = prefix + " "; local
1182 final String indent = prefix + " "; local
1325 final String indent = prefix + " "; local
    [all...]
  /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_org/third_party/icu/source/tools/genrb/
derb.c 43 static void printOutBundle(UFILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
46 static void printIndent(UFILE *out, UConverter *converter, int32_t indent);
392 static void printIndent(UFILE *out, UConverter *converter, int32_t indent) {
395 for(i = 0; i<indent; i++) {
398 inchar[indent] = 0;
400 printString(out, converter, inchar, indent);
413 static void printOutAlias(UFILE *out, UConverter *converter, UResourceBundle *parent, Resource r, const char *key, int32_t indent, const char *pname, UErrorCode *status) {
420 printIndent(out, converter, indent);
429 printIndent(out, converter, indent);
446 static void printOutBundle(UFILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status
    [all...]
  /external/icu/icu4c/source/tools/genrb/
derb.c 43 static void printOutBundle(UFILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
46 static void printIndent(UFILE *out, UConverter *converter, int32_t indent);
392 static void printIndent(UFILE *out, UConverter *converter, int32_t indent) {
395 for(i = 0; i<indent; i++) {
398 inchar[indent] = 0;
400 printString(out, converter, inchar, indent);
413 static void printOutAlias(UFILE *out, UConverter *converter, UResourceBundle *parent, Resource r, const char *key, int32_t indent, const char *pname, UErrorCode *status) {
420 printIndent(out, converter, indent);
429 printIndent(out, converter, indent);
446 static void printOutBundle(UFILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
CodeItem.java 114 out.indent();
172 out.indent();
176 out.indent();
197 out.indent();
201 out.indent();
209 out.indent();
213 out.indent();
355 out.indent();
359 out.indent();
389 out.indent();
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 51 private boolean[] indent = new boolean[4]; field in class:KXmlSerializer
62 if (indent.length <= depth) {
64 System.arraycopy(indent, 0, hlp, 0, depth);
65 indent = hlp;
67 indent[depth] = indent[depth - 1];
182 "http://xmlpull.org/v1/doc/features.html#indent-output"
185 ? indent[depth]
262 if ("http://xmlpull.org/v1/doc/features.html#indent-output"
264 indent[depth] = value
    [all...]
  /external/chromium_org/net/quic/crypto/
crypto_handshake_message.cc 233 string CryptoHandshakeMessage::DebugStringInternal(size_t indent) const {
234 string ret = string(2 * indent, ' ') + QuicUtils::TagToString(tag_) + "<\n";
235 ++indent;
238 ret += string(2 * indent, ' ') + QuicUtils::TagToString(it->first) + ": ";
295 ret += msg->DebugStringInternal(indent + 1);
319 --indent;
320 ret += string(2 * indent, ' ') + ">";
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComponentTransfer.cpp 266 TextStream& FEComponentTransfer::externalRepresentation(TextStream& ts, int indent) const
268 writeIndent(ts, indent);
272 writeIndent(ts, indent + 2);
274 writeIndent(ts, indent + 2);
276 writeIndent(ts, indent + 2);
278 writeIndent(ts, indent + 2);
280 inputEffect(0)->externalRepresentation(ts, indent + 1);
  /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/wpa_supplicant_8/src/utils/
http_curl.c 564 static void i2r_HashAlgAndValue(HashAlgAndValue *hash, BIO *out, int indent)
569 BIO_printf(out, "%*shashAlg: ", indent, "");
573 BIO_printf(out, "%*shashValue: ", indent, "");
580 static void i2r_LogotypeDetails(LogotypeDetails *details, BIO *out, int indent)
584 BIO_printf(out, "%*sLogotypeDetails\n", indent, "");
586 BIO_printf(out, "%*smediaType: ", indent, "");
596 i2r_HashAlgAndValue(hash, out, indent);
604 BIO_printf(out, "%*slogotypeURI: ", indent, "");
610 static void i2r_LogotypeImageInfo(LogotypeImageInfo *info, BIO *out, int indent)
614 BIO_printf(out, "%*sLogotypeImageInfo\n", indent, "");
714 int indent = 0; local
    [all...]
  /external/chromium_org/mojo/nacl/generator/
generate_nacl_bindings.py 61 def Indent(self):
62 return Indent(self)
66 class Indent(object):
87 indent = ' '
90 lines.append(indent + item + ',')
92 lines.append(indent + item + post)
114 with code.Indent():
235 with code.Indent():
316 with code.Indent():
319 with code.Indent()
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
asn1_par.c 65 int indent);
67 int offset, int depth, int indent, int dump);
69 int indent)
80 BIO_indent(bp,indent,128);
101 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
103 return(asn1_parse2(bp,&pp,len,0,0,indent,0));
106 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
108 return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
112 int depth, int indent, int dump)
124 dump_indent = indent;
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 53 // If this is an expr used in a stmt context, indent and newline it.
54 Indent();
60 Indent() << "<<<NULL STATEMENT>>>\n";
82 raw_ostream &Indent(int Delta = 0) {
95 Indent() << "<<unknown stmt type>>\n";
120 Indent() << "}";
133 Indent() << ";\n";
137 Indent();
143 Indent();
149 Indent(-1) << "case "
    [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/libvpx/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/openssl/crypto/asn1/
asn1_par.c 66 int indent);
68 int offset, int depth, int indent, int dump);
70 int indent)
81 BIO_indent(bp,indent,128);
102 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
104 return(asn1_parse2(bp,&pp,len,0,0,indent,0));
107 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
109 return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
113 int depth, int indent, int dump)
125 dump_indent = indent;
    [all...]

Completed in 2103 milliseconds

1 2 3 4 5 6 78 91011>>