HomeSort by relevance Sort by last modified time
    Searched refs:indentation (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/nist-sip/java/gov/nist/javax/sip/header/
Indentation.java 37 class Indentation {
39 private int indentation; field in class:Indentation
44 protected Indentation() {
45 indentation = 0;
54 protected Indentation(int initval) {
55 indentation = initval;
59 * set the indentation field
65 indentation = initval;
69 * get the number of indentation.
74 return indentation;
    [all...]
SIPObject.java 105 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/tools/gyp/pylib/gyp/
easy_xml.py 64 level: Indentation level.
68 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/
MessageObject.java 77 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/
ir_print_visitor.cpp 73 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...]
ir_print_visitor.h 92 int indentation; member in class:ir_print_visitor
  /external/mesa3d/src/glsl/
ir_print_visitor.cpp 73 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...]
ir_print_visitor.h 92 int indentation; member in class:ir_print_visitor
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bubble_controller.h 80 indentation:(int)indentation;
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 94 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;
GenericObject.java 37 * 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 + 1))
    [all...]
  /frameworks/av/include/camera/
VendorTagDescriptor.h 87 void dump(int fd, int verbosity, int indentation) const;
CameraMetadata.h 179 * The indentation parameter sets the number of spaces to add to the start
182 void dump(int fd, int verbosity = 1, int indentation = 0) const;
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 99 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/owasp/sanitizer/tools/
cut_release.py 127 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)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 139 indentation = find_indentation(node)
156 if not first or node.parent.prefix.endswith(indentation):
157 new.prefix = indentation
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 139 indentation = find_indentation(node)
156 if not first or node.parent.prefix.endswith(indentation):
157 new.prefix = indentation
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 194 : {// 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/
Python.g 565 var indentation = new Array(spaces);
567 indentation[i] = ' ';
569 var s = indentation.join("");
  /external/jsoncpp/include/json/
writer.h 125 * \param indentation Each level will be indented by this amount extra.
131 StyledStreamWriter( std::string indentation="\t" );
  /system/media/camera/src/
camera_metadata.c 838 int indentation);
849 int indentation) {
852 indentation, "");
858 "%" PRIu32 " / %" PRIu32 " bytes of extra data.\n", indentation, "",
862 indentation + 2, "",
883 indentation + 2, "",
911 print_data(fd, data_ptr, entry->tag, entry->type, count, indentation);
916 int type, int count, int indentation) {
935 dprintf(fd, "%*s[", indentation + 4, "");
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_dump.c 49 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/
tgsi_dump.c 49 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;
  /frameworks/av/camera/
VendorTagDescriptor.cpp 350 void VendorTagDescriptor::dump(int fd, int verbosity, int indentation) const {
355 indentation, "");
360 indentation, "", size);
365 dprintf(fd, "%*s0x%x\n", indentation + 2, "", tag);
374 dprintf(fd, "%*s0x%x (%s) with type %d (%s) defined in section %s\n", indentation + 2,
  /external/chromium_org/third_party/WebKit/Source/platform/
PODRedBlackTree.h 796 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);

Completed in 1780 milliseconds

1 2 3 4