/prebuilts/go/linux-x86/src/encoding/xml/ |
marshal.go | 115 // copies of indent according to the nesting depth. 116 func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) { 119 enc.Indent(prefix, indent) 138 // Indent sets the encoder to generate XML in which each element 140 // one or more copies of indent according to the nesting depth. 141 func (enc *Encoder) Indent(prefix, indent string) { 143 enc.p.indent = indent [all...] |
/external/v8/src/ast/ |
scopes.cc | 912 static void Indent(int n, const char* str) { 945 static void PrintVar(int indent, Variable* var) { 947 Indent(indent, Variable::Mode2String(var->mode())); 970 static void PrintMap(int indent, VariableMap* map) { [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/ |
gflags.py | 593 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: 620 raise FlagsError('Indent must be shorter than length' [all...] |
/external/chromium-trace/catapult/third_party/python_gflags/ |
gflags.py | 593 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: 620 raise FlagsError('Indent must be shorter than length' [all...] |
/external/clang/docs/ |
ClangFormatStyleOptions.rst | 151 The extra indent or outdent of access modifiers, e.g. ``public:``. 327 * ``bool IndentBraces`` Indent the wrapped braces themselves. 400 Indent width for line continuations. 409 - Indentation with the continuation indent, not with the block indent. 483 Indent case labels one level from the switch statement. 492 Indent if a function definition or declaration is wrapped after the 531 Don't indent in namespaces. 533 Indent only in inner namespaces (nested in other namespaces). 535 Indent in all namespaces [all...] |
/external/nanopb-c/generator/google/protobuf/ |
text_format.py | 68 def PrintMessage(message, out, indent=0, as_utf8=False, as_one_line=False): 72 PrintField(field, element, out, indent, as_utf8, as_one_line) 74 PrintField(field, value, out, indent, as_utf8, as_one_line) 77 def PrintField(field, value, out, indent=0, as_utf8=False, as_one_line=False): 81 out.write(' ' * indent); 103 PrintFieldValue(field, value, out, indent, as_utf8, as_one_line) 110 def PrintFieldValue(field, value, out, indent=0, 118 PrintMessage(value, out, indent, as_utf8, as_one_line) 122 PrintMessage(value, out, indent + 2, as_utf8, as_one_line) 123 out.write(' ' * indent + '}' [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
textwrap.py | 218 # Figure out when indent is larger than the specified width, and make 273 indent = self.subsequent_indent 275 indent = self.initial_indent 278 width = self.width - len(indent) 309 lines.append(indent + ''.join(cur_line)) 392 for indent in indents: 394 margin = indent 398 elif indent.startswith(margin): 403 elif margin.startswith(indent): 404 margin = indent [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
textwrap.py | 218 # Figure out when indent is larger than the specified width, and make 273 indent = self.subsequent_indent 275 indent = self.initial_indent 278 width = self.width - len(indent) 309 lines.append(indent + ''.join(cur_line)) 392 for indent in indents: 394 margin = indent 398 elif indent.startswith(margin): 403 elif margin.startswith(indent): 404 margin = indent [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
textwrap.py | 218 # Figure out when indent is larger than the specified width, and make 273 indent = self.subsequent_indent 275 indent = self.initial_indent 278 width = self.width - len(indent) 309 lines.append(indent + ''.join(cur_line)) 392 for indent in indents: 394 margin = indent 398 elif indent.startswith(margin): 403 elif margin.startswith(indent): 404 margin = indent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
textwrap.py | 218 # Figure out when indent is larger than the specified width, and make 273 indent = self.subsequent_indent 275 indent = self.initial_indent 278 width = self.width - len(indent) 309 lines.append(indent + ''.join(cur_line)) 392 for indent in indents: 394 margin = indent 398 elif indent.startswith(margin): 403 elif margin.startswith(indent): 404 margin = indent [all...] |
/frameworks/base/tools/aapt/ |
Resource.cpp | [all...] |
/external/sonivox/docs/ |
JET_Authoring_Guidelines.html | 113 text-indent:-.3in;
134 text-indent:-.4in;
152 text-indent:-.5in;
168 text-indent:-.6in;
186 text-indent:-.7in;
202 text-indent:-.8in;
220 text-indent:-.9in;
235 text-indent:-1.0in;
252 text-indent:-1.1in;
275 text-indent:-11.0pt; [all...] |
/external/boringssl/src/crypto/evp/ |
p_ec_asn1.c | 492 static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 494 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 0); 497 static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 499 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 1); 503 static int eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 505 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 2);
|
/external/icu/icu4c/source/common/unicode/ |
utrace.h | 308 * @param indent Number of spaces to indent the output. Intended to allow 318 int32_t indent, const char *fmt, va_list args); 329 * @param indent Number of spaces to indent the output. Intended to allow 339 int32_t indent, const char *fmt, ...);
|
/external/jsoncpp/src/lib_json/ |
json_writer.cpp | 292 indent(); 323 indent(); 406 void StyledWriter::indent() { indentString_ += std::string(indentSize_, ' '); } function in class:Json::StyledWriter 515 indent(); 546 indent(); 634 void StyledStreamWriter::indent() { indentString_ += indentation_; } function in class:Json::StyledStreamWriter
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
help.txt | 57 Indent Region -- Shift selected lines right 4 spaces 62 (Note: We recommend using 4 space blocks to indent Python code.) 64 New Indent Width... -- Open dialog to change indent width 182 Indent Width. (N.B. Currently tabs are restricted to four spaces due 185 See also the indent/dedent region commands in the edit menu.
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
help.txt | 57 Indent Region -- Shift selected lines right 4 spaces 62 (Note: We recommend using 4 space blocks to indent Python code.) 64 New Indent Width... -- Open dialog to change indent width 182 Indent Width. (N.B. Currently tabs are restricted to four spaces due 185 See also the indent/dedent region commands in the edit menu.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
help.txt | 57 Indent Region -- Shift selected lines right 4 spaces 62 (Note: We recommend using 4 space blocks to indent Python code.) 64 New Indent Width... -- Open dialog to change indent width 182 Indent Width. (N.B. Currently tabs are restricted to four spaces due 185 See also the indent/dedent region commands in the edit menu.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
help.txt | 57 Indent Region -- Shift selected lines right 4 spaces 62 (Note: We recommend using 4 space blocks to indent Python code.) 64 New Indent Width... -- Open dialog to change indent width 182 Indent Width. (N.B. Currently tabs are restricted to four spaces due 185 See also the indent/dedent region commands in the edit menu.
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/ |
printer.h | 257 // Indent text by two spaces. After calling Indent(), two spaces will be 258 // inserted at the beginning of each line of text. Indent() may be called 260 void Indent(); 262 // Reduces the current indent level by two spaces, or crashes if the indent
|
/external/dagger2/lib/ |
google-java-format-0.1-20151017.042846-2.jar | |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorOutputElem.java | 88 * Set the indent property from the attribute value. 89 * @see javax.xml.transform.OutputKeys#INDENT 94 m_outputProperties.setBooleanProperty(OutputKeys.INDENT, newValue);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToTextSAXHandler.java | 124 * the indent attribute is ignored for text output. 127 public void indent(int n) throws SAXException method in class:ToTextSAXHandler 157 public void setIndent(boolean indent)
|
/external/emma/core/java12/com/vladium/emma/data/ |
ClassDescriptor.java | 150 public String toString (final String indent) 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/libexif/libexif/ |
exif-content.c | 114 exif_content_dump (ExifContent *content, unsigned int indent) 119 for (i = 0; i < 2 * indent; i++) 129 exif_entry_dump (content->entries[i], indent + 1);
|