Searched refs:indent (Results 101 - 125 of 357) sorted by relevance

1234567891011>>

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
H A DAnnotationEncodedValueAdaptor.java51 writer.indent(4);
H A DArrayEncodedValueAdaptor.java47 writer.indent(4);
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCVideoLayerImpl.h52 virtual void dumpLayerProperties(TextStream&, int indent) const;
H A DCCLayerImpl.cpp191 void CCLayerImpl::writeIndent(TextStream& ts, int indent) argument
193 for (int i = 0; i != indent; ++i)
197 void CCLayerImpl::dumpLayerProperties(TextStream& ts, int indent) const
199 writeIndent(ts, indent);
203 writeIndent(ts, indent);
207 writeIndent(ts, indent);
H A DCCVideoLayerImpl.cpp163 void CCVideoLayerImpl::dumpLayerProperties(TextStream& ts, int indent) const
165 writeIndent(ts, indent);
167 CCLayerImpl::dumpLayerProperties(ts, indent);
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEBlend.cpp167 TextStream& FEBlend::externalRepresentation(TextStream& ts, int indent) const
169 writeIndent(ts, indent);
173 inputEffect(0)->externalRepresentation(ts, indent + 1);
174 inputEffect(1)->externalRepresentation(ts, indent + 1);
H A DFEDisplacementMap.cpp168 TextStream& FEDisplacementMap::externalRepresentation(TextStream& ts, int indent) const
170 writeIndent(ts, indent);
176 inputEffect(0)->externalRepresentation(ts, indent + 1);
177 inputEffect(1)->externalRepresentation(ts, indent + 1);
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DAbstractData.java122 public void toString(StringBuilder out, int indent) { argument
124 write(out, indent);
H A DData.java246 void toString(StringBuilder out, int indent); argument
251 void write(Appendable out, int indent) throws IOException; argument
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DByteArrayAnnotatedOutput.java388 public void indent() { method in class:ByteArrayAnnotatedOutput
599 private int indent; field in class:ByteArrayAnnotatedOutput.Annotation
609 public Annotation(int start, int end, String text, int indent) { argument
613 this.indent = indent;
622 public Annotation(int start, String text, int indent) { argument
623 this(start, Integer.MAX_VALUE, text, indent);
675 return indent;
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMSerializer.java54 private int indent = 4; field in class:DOMSerializer
124 * @param indent the number of spaces to use for indentation, values less than or
127 public void setIndent(int indent) { argument
128 this.indent = indent >= 0 ? indent : 0;
231 write(n, writer, depth + indent);
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A Dencoder.py114 indent=None, separators=None, encoding='utf-8'):
140 If indent is a non-negative integer, then JSON array
142 indent level. An indent level of 0 will only insert newlines.
159 self.indent = indent
166 return '\n' + (' ' * (self.indent * self.current_indent_level))
178 if self.indent is not None:
212 if self.indent is not None:
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWin.cpp592 static void printIndent(int indent) argument
594 for ( ; indent > 0; --indent)
607 static void printLayer(const PlatformCALayer* layer, int indent) argument
612 printIndent(indent);
633 printIndent(indent + 1);
640 printIndent(indent + 1);
647 printIndent(indent + 1);
654 printIndent(indent + 1);
663 printIndent(indent
[all...]
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags.py593 def TextWrap(text, length=None, indent='', firstline_indent=None, tabs=' '):
603 indent: indent for all but first line
604 firstline_indent: indent for first line; if None, fall back to indent
611 FlagsError: if indent not shorter than length
617 if indent is None:
618 indent = ''
619 if len(indent) >= length:
622 # with indent (o
[all...]
/external/icu4c/tools/genrb/
H A Dderb.c62 static void printOutBundle(FILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
65 static void printIndent(FILE *out, UConverter *converter, int32_t indent);
450 static void printIndent(FILE *out, UConverter *converter, int32_t indent) { argument
453 for(i = 0; i<indent; i++) {
456 inchar[indent] = 0;
458 printString(out, converter, inchar, indent);
471 static void printOutAlias(FILE *out, UConverter *converter, UResourceBundle *parent, Resource r, const char *key, int32_t indent, const char *pname, UErrorCode *status) { argument
478 printIndent(out, converter, indent);
487 printIndent(out, converter, indent);
504 static void printOutBundle(FILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, cons argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp510 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) { argument
513 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
515 dbgs() << "\n" << std::string(indent+2, ' ')
519 dbgs().indent(indent);
543 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, argument
549 OS.indent(indent);
575 DumpNodesr(OS, child, indent+2, G, once);
591 unsigned indent) {
589 printrWithDepthHelper(raw_ostream &OS, const SDNode *N, const SelectionDAG *G, unsigned depth, unsigned indent) argument
[all...]
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java268 indent ();
274 indent ();
280 indent ();
285 IndentingWriter (final Writer out, final int buffer, final int indent) argument
288 m_indent = indent;
307 if (delta > m_indent) throw new IllegalArgumentException ("delta = " + delta + ", current indent = " + m_indent);
340 private void indent () method in class:ReportGenerator.IndentingWriter
345 final String indent = getIndent ();
346 super.write (indent, 0, indent
[all...]
/external/qemu/hw/
H A Dqdev.c461 #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
462 static void qbus_print(Monitor *mon, BusState *bus, int indent);
464 static void qdev_print(Monitor *mon, DeviceState *dev, int indent) argument
469 indent += 2;
496 sysbus_dev_print(mon, dev, indent);
502 qbus_print(mon, child, indent);
506 static void qbus_print(Monitor *mon, BusState *bus, int indent) argument
511 indent += 2;
514 qdev_print(mon, dev, indent);
/external/emma/core/java12/com/vladium/emma/data/
H A DMethodDescriptor.java192 public String toString (final String indent) argument
194 StringBuffer s = new StringBuffer (indent + "method [" + m_name + "] descriptor:");
201 s.append (indent + INDENT_INCREMENT + "block " + bl + " (" + m_blockSizes [bl] + " instrs) : ");
211 s.append (indent + INDENT_INCREMENT + "---");
217 s.append (indent + INDENT_INCREMENT + "line " + lines [l] + ": ");
H A DClassDescriptor.java150 public String toString (final String indent) argument
152 StringBuffer s = new StringBuffer (indent + "class [" + (m_packageVMName.length () > 0 ? m_packageVMName + "/" : "") + m_name + "] descriptor:");
157 s.append (m_methods [m].toString (indent + INDENT_INCREMENT));
/external/openssl/crypto/x509v3/
H A Dv3_pci.c43 BIO *out, int indent);
58 BIO *out, int indent)
60 BIO_printf(out, "%*sPath Length Constraint: ", indent, "");
66 BIO_printf(out, "%*sPolicy Language: ", indent, "");
70 BIO_printf(out, "%*sPolicy Text: %s\n", indent, "",
57 i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci, BIO *out, int indent) argument
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DFastOctnode.java155 public String toStringVerbose(int indent){ argument
156 String str = "------------------".substring(0,indent) + toString() + "\n";
162 str += children.toStringVerbose(indent+1);
/external/openssl/crypto/rsa/
H A Drsa_ameth.c255 static int rsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, argument
258 return do_rsa_print(bp, pkey->pkey.rsa, indent, 0);
262 static int rsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, argument
265 return do_rsa_print(bp, pkey->pkey.rsa, indent, 1);
302 X509_ALGOR *maskHash, int indent)
313 if (!BIO_indent(bp, indent, 128))
329 if (!BIO_indent(bp, indent, 128))
352 if (!BIO_indent(bp, indent, 128))
365 if (!BIO_indent(bp, indent, 128))
387 int indent, ASN1_PCT
301 rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss, X509_ALGOR *maskHash, int indent) argument
385 rsa_sig_print(BIO *bp, const X509_ALGOR *sigalg, const ASN1_STRING *sig, int indent, ASN1_PCTX *pctx) argument
[all...]
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp726 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace
749 OS.indent(Indentation) << "MCD::OPC_ExtractField, " << Start << ", "
758 OS.indent(Indentation) << "MCD::OPC_FilterValue, ";
778 OS.indent(Indentation) << "MCD::OPC_CheckField, " << Start << ", "
796 OS.indent(Indentation) << "MCD::OPC_CheckPredicate, ";
820 OS.indent(Indentation) << "MCD::OPC_Decode, ";
836 OS.indent(Indentation) << "MCD::OPC_SoftFail";
862 OS.indent(Indentation) << "MCD::OPC_Fail,\n";
867 OS.indent(Indentation) << "0\n";
871 OS.indent(Indentatio
[all...]
/external/chromium/webkit/glue/
H A Dwebkit_glue.cc196 int indent, bool is_current) {
201 result.append(indent - 6, ' '); // 6 == "curr->".length()
203 result.append(indent, ' ');
236 result += DumpHistoryItem(sorted_children[i], indent+4, false);
242 string16 DumpHistoryState(const std::string& history_state, int indent, argument
245 DumpHistoryItem(HistoryItemFromString(history_state), indent,
195 DumpHistoryItem(const WebHistoryItem& item, int indent, bool is_current) argument

Completed in 2377 milliseconds

1234567891011>>