Searched refs:indentation (Results 1 - 25 of 55) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DIndentation.java39 private int indentation; field in class:Indentation
45 indentation = 0;
55 indentation = initval;
59 * set the indentation field
65 indentation = initval;
69 * get the number of indentation.
74 return indentation;
78 * increment the indentation field
81 indentation++;
85 * decrement the indentation fiel
[all...]
H A DSIPObject.java105 if (fieldName.compareTo("indentation") == 0) {
196 if (fieldName.compareTo("indentation") == 0) {
308 if (fieldName.compareTo("indentation") == 0) {
344 indentation + 1));
354 indentation + 1));
385 * Formatter with a given starting indentation (for nested structs).
390 int save = indentation;
391 indentation = indent;
393 indentation = save;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DTextUtils.js164 var indentation = 0;
165 while (indentation < line.length && WebInspector.TextUtils.isSpaceChar(line.charAt(indentation)))
166 ++indentation;
167 return line.substr(0, indentation);
/external/chromium_org/tools/gyp/pylib/gyp/
H A Deasy_xml.py68 indentation = ' ' * level
71 indentation = ''
77 xml_parts.append(indentation + '<' + name)
98 if multi_line and indentation:
99 xml_parts.append(indentation)
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageObject.java77 if (fieldName.compareTo("indentation") == 0) {
115 this.indentation + 1));
125 indentation + 1));
161 * Formatter with a given starting indentation (for nested structs).
164 int save = indentation;
165 indentation = indent;
167 indentation = save;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_print_visitor.cpp73 indentation = 0;
89 for (int i = 0; i < indentation; i++)
165 indentation++;
172 indentation++;
181 indentation--;
189 indentation++;
198 indentation--;
201 indentation--;
209 indentation++;
216 indentation
[all...]
H A Dir_print_visitor.h92 int indentation; member in class:ir_print_visitor
/external/mesa3d/src/glsl/
H A Dir_print_visitor.cpp73 indentation = 0;
89 for (int i = 0; i < indentation; i++)
165 indentation++;
172 indentation++;
181 indentation--;
189 indentation++;
198 indentation--;
201 indentation--;
209 indentation++;
216 indentation
[all...]
H A Dir_print_visitor.h92 int indentation; member in class:ir_print_visitor
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bubble_controller.h80 indentation:(int)indentation;
/external/nist-sip/java/gov/nist/core/
H A DGenericObjectList.java94 protected int indentation; field in class:GenericObjectList
107 char[] chars = new char[indentation];
260 indentation--;
266 indentation++;
284 sprint(((GenericObject) obj).debugDump(this.indentation));
294 * indentation given.
298 int save = indentation;
299 indentation = indent;
301 indentation = save;
H A DGenericObject.java37 * Provides a few utility funcitons such as indentation and
80 protected int indentation; field in class:GenericObject
293 indentation = 0;
298 char [] chars = new char [indentation];
314 indentation--;
320 indentation++;
430 if (fieldName.compareTo("indentation") == 0) {
515 if (fieldName.compareTo("indentation") == 0) {
611 if (fieldName.compareTo("indentation") == 0) {
647 indentation
[all...]
/external/chromium_org/v8/tools/
H A Dcheck-name-clashes.py39 self.indentation = 0
45 # This is the first line, detect indentation.
46 self.indentation = len(line) - len(line.lstrip())
49 assert len(line[:self.indentation].strip()) == 0, \
51 (line[:self.indentation], line))
52 line = line[self.indentation:]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DNetObject.java99 if (fieldName.compareTo("indentation") == 0) {
189 if (fieldName.compareTo("indentation") == 0) {
297 if (fieldName.compareTo("indentation") == 0) {
333 indentation + 1));
343 indentation + 1));
377 * Formatter with a given starting indentation (for nested structs).
382 int save = indentation;
383 indentation = indent;
385 indentation = save;
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DLexicon.py24 indentation = Bol + Rep(Any(" \t"))
87 (indentation, Method('indentation_action')),
/external/owasp/sanitizer/tools/
H A Dcut_release.py127 indentation = re.match(r"^\s*", line).group()
132 line = "%s%s %s" % (indentation, replace_fields(match[1]), match[0])
138 lines.append("%s%s" % (indentation, replace_fields(match)))
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g194 : {// we need to determine the number of spaces or tabs (indentation) for multi-line input
202 String indentation = buf.reverse().toString();
240 // finally we need to prpcess the indentation line by line
247 if ( line.startsWith(indentation) ) line = line.substring(indentation.length());
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g565 var indentation = new Array(spaces);
567 indentation[i] = ' ';
569 var s = indentation.join("");
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dautopep8.py176 """Override pep8's function to provide indentation information."""
203 # For each depth, memorize the hanging indentation.
585 """Fix indentation undistinguish from the next logical line."""
631 # And make sure we don't break the indentation.
761 indentation = re.split(pattern=r'\bimport\b',
764 indentation + 'import ' + target[offset:].lstrip('\t ,'))
1026 indentation = _get_indentation(logical_line)
1028 return indentation + untokenize_without_newlines(
1167 indentation = _get_indentation(line)
1180 fixed_lines.append(indentation
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c49 uint indentation; member in struct:dump_ctx
609 /* update indentation */
613 ctx->indentation += indent_spaces;
631 ctx.indentation = 0;
663 ctx.indentation = 0;
718 ctx.base.indentation = 0;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c49 uint indentation; member in struct:dump_ctx
609 /* update indentation */
613 ctx->indentation += indent_spaces;
631 ctx.indentation = 0;
663 ctx.indentation = 0;
718 ctx.base.indentation = 0;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODRedBlackTree.h796 void dumpFromNode(Node* node, int indentation) const
799 for (int i = 0; i < indentation; i++)
809 dumpFromNode(node->left(), indentation + 2);
810 dumpFromNode(node->right(), indentation + 2);
/external/chromium_org/third_party/icu/source/tools/genren/
H A Dgenren.pl11 #* indentation:4
83 * indentation:4
/external/icu/icu4c/source/tools/genren/
H A Dgenren.pl11 #* indentation:4
83 * indentation:4
/external/jsoncpp/include/json/
H A Dwriter.h125 * \param indentation Each level will be indented by this amount extra.
131 StyledStreamWriter( std::string indentation="\t" );

Completed in 4984 milliseconds

123