HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 426 - 450 of 1973) sorted by null

<<11121314151617181920>>

  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 192 public String toString (final String indent)
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] + ": ");
  /external/jsoncpp/src/test_lib_json/
jsontest.cpp 199 std::string indent( failure.nestingLevel_ * 2, ' ' );
202 printf( "%s%s(%d): ", indent.c_str(), failure.file_, failure.line_ );
214 std::string reindented = indentText( failure.message_, indent + " " );
223 const std::string &indent )
234 reindented += indent;
  /external/libxml2/
xmlwriter.c 92 int indent; /* enable indent */ member in struct:_xmlTextWriter
93 int doindent; /* internal indent flag */
94 xmlChar *ichar; /* indent character */
262 ret->indent = 0;
706 if (!writer->indent) {
759 if (writer->indent) {
787 if (writer->indent) {
847 if (writer->indent) {
995 if (writer->indent)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategyTest.java 224 // Here we need to indent to the exact location of an earlier line
297 // Test that if you insert on a blank line, we just add a newline and indent
311 // content, we insert an indent correctly
344 // content, we insert an indent correctly
364 // content, we insert an indent correctly
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 135 protected static void describe(StringBuilder sb, Change change, int indent) throws Exception {
148 indent(sb, indent); method
181 indent(sb, indent + 1); method
198 indent(sb, indent); method
240 describe(sb, child, indent + (composite.isSynthetic() ? 0 : 1));
255 protected static void indent(StringBuilder sb, int indent) { method in class:RefactoringTestBase
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 70 indent,
160 gap += indent;
245 indent = '';
247 // If the space parameter is a number, make an indent string containing
252 indent += ' ';
255 // If the space parameter is a string, it will be used as the indent
259 indent = space;
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Scanning.py 311 self.begin('INDENT')
332 self.begin('INDENT')
364 #print "Scanner.indentation_action: indent with", repr(c) ###
376 #print "Changing indent level from", current_level, "to", new_level ###
382 self.produce('INDENT', '')
445 if self.sy == 'INDENT':
473 self.expect('INDENT',
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_shader_dump.c 45 int indent; member in struct:dump_info
61 dump_indent(int indent)
65 for (i = 0; i < indent; ++i) {
530 di->indent -= info->pre_dedent;
531 dump_indent(di->indent);
532 di->indent += info->post_indent;
566 di.indent = 0;
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader_dump.c 45 int indent; member in struct:dump_info
61 dump_indent(int indent)
65 for (i = 0; i < indent; ++i) {
530 di->indent -= info->pre_dedent;
531 dump_indent(di->indent);
532 di->indent += info->post_indent;
566 di.indent = 0;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_functions.py 219 def sample(indent=0, indent_size=2):
227 })], indent=indent, indent_size=indent_size)[0]
229 def sample_expected(indent=0, indent_size=2):
230 spaces = lambda amount=0: ' ' * (amount + indent)
246 smallest = ttk._format_layoutlist([('a', None)], indent=0)
248 ttk._format_layoutlist([('a', '')], indent=0))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
plistlib.py 153 def __init__(self, file, indentLevel=0, indent="\t"):
157 self.indent = indent
179 self.file.write(self.indentLevel * self.indent + line + "\n")
232 def __init__(self, file, indentLevel=0, indent="\t", writeHeader=1):
235 DumbXMLWriter.__init__(self, file, indentLevel, indent)
265 maxlinelength = max(16, 76 - len(self.indent.replace("\t", " " * 8) *
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/lib-tk/test/test_ttk/
test_functions.py 219 def sample(indent=0, indent_size=2):
227 })], indent=indent, indent_size=indent_size)[0]
229 def sample_expected(indent=0, indent_size=2):
230 spaces = lambda amount=0: ' ' * (amount + indent)
246 smallest = ttk._format_layoutlist([('a', None)], indent=0)
248 ttk._format_layoutlist([('a', '')], indent=0))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
plistlib.py 153 def __init__(self, file, indentLevel=0, indent="\t"):
157 self.indent = indent
179 self.file.write(self.indentLevel * self.indent + line + "\n")
232 def __init__(self, file, indentLevel=0, indent="\t", writeHeader=1):
235 DumbXMLWriter.__init__(self, file, indentLevel, indent)
265 maxlinelength = max(16, 76 - len(self.indent.replace("\t", " " * 8) *
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...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_print.c 681 GLint indent,
691 indent -= 3;
693 for (i = 0; i < indent; i++) {
806 return indent + 3;
809 return indent + 3;
815 return indent + 3;
832 return indent;
837 return indent + 3;
897 return indent;
903 GLint indent,
929 GLuint i, indent = 0; local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_print.c 681 GLint indent,
691 indent -= 3;
693 for (i = 0; i < indent; i++) {
806 return indent + 3;
809 return indent + 3;
815 return indent + 3;
832 return indent;
837 return indent + 3;
897 return indent;
903 GLint indent,
929 GLuint i, indent = 0; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionRecord.java 493 final String indent = prefix + " "; local
494 pw.println(indent + "ownerPid=" + mOwnerPid + ", ownerUid=" + mOwnerUid
496 pw.println(indent + "package=" + mPackageName);
497 pw.println(indent + "launchIntent=" + mLaunchIntent);
498 pw.println(indent + "mediaButtonReceiver=" + mMediaButtonReceiver);
499 pw.println(indent + "active=" + mIsActive);
500 pw.println(indent + "flags=" + mFlags);
501 pw.println(indent + "rating type=" + mRatingType);
502 pw.println(indent + "controllers: " + mControllerCallbacks.size());
503 pw.println(indent + "state=" + (mPlaybackState == null ? null : mPlaybackState.toString()))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 92 SKIP_TOKENS = NEWLINE.union([tokenize.INDENT, tokenize.DEDENT])
136 indent = INDENT_REGEX.match(physical_line).group(1)
137 for offset, char in enumerate(indent):
148 indent = INDENT_REGEX.match(physical_line).group(1)
149 if '\t' in indent:
150 return indent.index('\t'), "W191 indentation contains tabs"
157 filtering for those who want to indent their blank lines.
378 and braces, or using a hanging indent.
380 When using a hanging indent these considerations should be applied:
425 # for each depth, memorize the visual indent colum
    [all...]
  /external/chromium-trace/trace-viewer/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_org/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_org/third_party/protobuf/python/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...]
  /external/clang/include/clang/Format/
Format.h 105 /// \brief The extra indent or outdent of access modifiers, e.g. \c public:.
123 /// \brief Indent case labels one level from the switch statement.
129 /// \brief Indent if a function definition or declaration is wrapped after the
133 /// \brief Different ways to indent namespace contents.
135 /// Don't indent in namespaces.
137 /// Indent only in inner namespaces (nested in other namespaces).
139 /// Indent in all namespaces.
291 /// - Indentation with the continuation indent, not with the block indent.
337 /// \brief Indent width for line continuations
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_message.cc 292 printer->Indent();
355 printer->Indent();
410 printer->Indent();
470 printer->Indent();
633 printer->Indent();
735 printer->Indent();
775 printer->Indent();
812 printer->Indent();
823 printer->Indent();
828 printer->Indent();
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 669 // Indent text by two spaces. After calling Indent(), two spaces will be
670 // inserted at the beginning of each line of text. Indent() may be called
672 void Indent() {
676 // Reduces the current indent level by two spaces, or crashes if the indent
681 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
704 // Saw newline. If there is more text, we may need to insert an indent
709 // Setting this true will cause the next Write() to insert an indent
732 // Insert an indent
    [all...]

Completed in 792 milliseconds

<<11121314151617181920>>