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

1 2

  /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;
SIPHeaderList.java 322 * @param indentation
326 public String debugDump(int indentation) {
328 String indent = new Indentation(indentation).getIndentation();
  /external/mesa3d/src/glsl/
ir_print_visitor.h 42 indentation = 0;
80 int indentation; member in class:ir_print_visitor
ir_print_visitor.cpp 73 for (int i = 0; i < indentation; i++)
114 indentation++;
121 indentation++;
130 indentation--;
138 indentation++;
147 indentation--;
150 indentation--;
157 indentation++;
164 indentation--;
396 indentation++
    [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorClasses.cpp     [all...]
VideoEditorClasses.h 352 * @param indentation (IN) Indentation to follow in display
358 int indentation);
383 int indentation);
408 int indentation);
416 int indentation);
432 * @param thiz (IN) Indentation to follow in display
466 int indentation);
492 int indentation);
517 int indentation);
    [all...]
  /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/chrome/browser/ui/cocoa/bookmarks/
bookmark_bubble_controller.h 76 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...]
  /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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinter.java 63 /** String to insert for a single indentation level */
69 /** List of indentation to use for each given depth */
91 * Sets the indentation levels to use (indentation string to use for each depth,
94 * @param indentationLevels an array of strings to use for the various indentation
131 * @param rootDepth the depth of the given node, used to determine indentation
455 int indentation = COMMENT_BEGIN.length(); local
461 indentation += (c == '\t') ? mPrefs.getTabWidth() : 1;
465 // See if the next line after the newline has indentation; if it doesn't,
490 // the overall minimum indentation boundary
    [all...]
AndroidXmlFormattingStrategy.java 285 // Look up the indentation level of the start node, if it is an element
288 // Measure the indentation of the start node such that we can indent
290 // in if the surrounding content does not use the same indentation size etc.
298 // level it is, and we also need to know the indentation level to use
300 // since from the initial indentation level and on down we want to normalize
310 // the parent chain and looking up the indentation for each. The reason for
312 // may be sharing lines with other nodes, and we disregard indentation for
313 // any nodes that don't start a line since the indentation may only be correct
315 // level that do have indentation info at the front of the line.
378 // remove the initial indentation in the reformatted elemen
618 String indentation = entry.getValue(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODRedBlackTree.h 727 void dumpFromNode(Node* node, int indentation) const
730 for (int i = 0; i < indentation; i++)
740 dumpFromNode(node->left(), indentation + 2);
741 dumpFromNode(node->right(), indentation + 2);
  /external/libvpx/examples/includes/geshi/contrib/
langcheck.php 215 report_error(TYPE_NOTICE, 'Language file contains unescaped tabulator chars (probably for indentation)!');
218 report_error(TYPE_NOTICE, 'Language file contains irregular indentation (other than 4 spaces per indentation level)!');
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
logviewpainter.js 330 var indentation = ' ';
337 indentLines(indentation, oldConfigString.split('\n'));
343 indentLines(indentation, newConfigString.split('\n'));
  /external/icu4c/tools/gendraft/
genheaders.pl 11 #* indentation:4
140 * indentation:4
  /external/icu4c/tools/genren/
genren.pl 11 #* indentation:4
83 * indentation:4
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 62 private static final String INDENTATION = " ";
65 private int indentation; field in class:ClassPrinter
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
process.js     [all...]
  /external/webkit/Source/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp 1315 int indentation = style->textIndent().calcValue(object->size().width()); local
    [all...]
  /external/openssl/ssl/
ssltest.c 1911 static const char indentation[] = local
    [all...]
  /external/grub/docs/
texinfo.tex 971 % If WORD is `none', then suppress indentation of the first paragraph
975 % The paragraph indentation is suppressed or not by calling
978 % By default, we suppress indentation.
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex     [all...]

Completed in 581 milliseconds

1 2