HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 76 - 100 of 1065) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 134 void DiffConsumer::indent() { function in class:DiffConsumer
135 unsigned N = Indent;
145 Indent += 2;
151 Indent -= 2;
156 indent();
162 indent();
194 indent();
  /external/webkit/Source/WebCore/rendering/
RenderTreeAsText.cpp 77 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const IntRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal);
127 void writeIndent(TextStream& ts, int indent)
129 for (int i = 0; i != indent; ++i)
516 void write(TextStream& ts, const RenderObject& o, int indent, RenderAsTextBehavior behavior)
520 write(ts, *toRenderSVGPath(&o), indent);
524 writeSVGGradientStop(ts, *toRenderSVGGradientStop(&o), indent);
528 writeSVGResourceContainer(ts, o, indent);
532 writeSVGContainer(ts, o, indent);
536 write(ts, *toRenderSVGRoot(&o), indent);
540 writeSVGText(ts, *toRenderBlock(&o), indent);
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
gmock_class.py 47 # How many spaces to indent. Can set me with the INDENT environment variable.
54 indent = ' ' * _INDENT
80 output_lines.append(indent + line)
101 output_lines.extend(['%s%s(%s,' % (indent, mock_method_macro, node.name),
102 '%s%s(%s));' % (indent*3, return_type, args)])
164 _INDENT = int(os.environ['INDENT'])
168 sys.stderr.write('Unable to use indent of %s\n' % os.environ.get('INDENT'))
  /external/icu4c/samples/cal/
cal.c 69 static void indent(int32_t count, FILE *f);
376 /* Indent a certain number of spaces */
378 indent(int32_t count, function
459 indent(pad / 2, stdout);
485 /* Indent the correct number of spaces for the first week */
492 indent(lens[i] + 1, stdout);
501 /* Calculate the justification and indent */
503 indent(pad, stdout);
585 indent(pad / 2, stdout);
602 indent(pad / 2, stdout)
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
left-overflow-repaint.html 30 <div id="t" style="text-indent: -50px; background: silver; margin-left: 50px;">
42 <div style="text-indent: -50px; background: silver; margin-left: 50px;">
55 <td id="v" style="text-indent: -50px; background: silver;">
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCCanvasLayerImpl.cpp 70 void CCCanvasLayerImpl::dumpLayerProperties(TextStream& ts, int indent) const
72 writeIndent(ts, indent);
74 CCLayerImpl::dumpLayerProperties(ts, indent);
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEMerge.cpp 72 TextStream& FEMerge::externalRepresentation(TextStream& ts, int indent) const
74 writeIndent(ts, indent);
81 inputEffect(i)->externalRepresentation(ts, indent + 1);
FEOffset.cpp 102 TextStream& FEOffset::externalRepresentation(TextStream& ts, int indent) const
104 writeIndent(ts, indent);
108 inputEffect(0)->externalRepresentation(ts, indent + 1);
  /packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
ArrayInitializerFormatter.java 32 public ArrayInitializerFormatter(PrintStream out, int width, String indent) {
34 mMaxWidth = width - indent.length();
35 mIndent = indent;
  /external/clang/utils/ABITest/
ABITestGen.py 160 self.printValueOfType(' %s_RV'%fnName, 'RV', FT.returnType, output=self.outputTests, indent=4)
161 self.checkTypeValues('RV', '%s[i]' % retvalTests[0], FT.returnType, output=self.outputTests, indent=4)
255 def printSizeOfType(self, prefix, name, t, output=None, indent=2):
256 print >>output, '%*sprintf("%s: sizeof(%s) = %%ld\\n", (long)sizeof(%s));'%(indent, '', prefix, name, name)
257 def printAlignOfType(self, prefix, name, t, output=None, indent=2):
258 print >>output, '%*sprintf("%s: __alignof__(%s) = %%ld\\n", (long)__alignof__(%s));'%(indent, '', prefix, name, name)
259 def printOffsetsOfType(self, prefix, name, t, output=None, indent=2):
265 print >>output, '%*sprintf("%s: __builtin_offsetof(%s, %s) = %%ld\\n", (long)__builtin_offsetof(%s, %s));'%(indent, '', prefix, name, fname, name, fname)
267 def printValueOfType(self, prefix, name, t, output=None, indent=2):
290 indent, '', prefix, name, code, value_expr
    [all...]
  /external/openssl/apps/
engine.c 132 static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
135 /* Indent before displaying input flags */
136 BIO_printf(bio_out, "%s%s(input flags): ", indent, indent);
194 static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent)
209 BIO_printf(bio_out, "%s<no control commands>\n", indent);
249 /* Do an indent */
250 xpos = BIO_puts(bio_out, indent);
257 if((xpos > (int)strlen(indent)) &&
261 xpos = BIO_puts(bio_out, indent);
352 const char *indent = " "; local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 58 printer->Indent();
103 printer->Indent();
116 printer->Indent();
117 printer->Indent();
142 printer->Indent();
143 printer->Indent();
180 printer->Indent();
181 printer->Indent();
225 printer->Indent();
226 printer->Indent();
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 173 void print(raw_ostream &OS, unsigned indent = 0) const;
177 virtual void printImpl(raw_ostream &OS, unsigned indent) const = 0;
224 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
251 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
286 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
305 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
324 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
345 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
365 virtual void printImpl(raw_ostream &OS, unsigned indent) const;
388 virtual void printImpl(raw_ostream &OS, unsigned indent) const
    [all...]
  /external/bzip2/
bz-html.xsl 11 <xsl:output method="html" encoding="ISO-8859-1" indent="yes"/>
  /external/chromium/build/util/
build_util.gyp 41 # indent-tabs-mode:nil
  /external/chromium/build/win/
system.gyp 31 # indent-tabs-mode:nil
  /external/chromium/chrome/browser/ui/cocoa/tabs/
side_tab_strip_controller.mm 24 // Side tabs have no indent since they are not sharing space with the
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeDumper.java 41 private int indent; field in class:SyntaxTreeDumper
57 indent++;
62 indent--;
121 for (int i = 0; i < indent; i++) {
  /external/oprofile/doc/xsl/
xhtml.xsl 8 <xsl:output method="xml" encoding="ISO-8859-1" indent="yes"
  /external/skia/gyp/
everything.gyp 29 # indent-tabs-mode:nil
most.gyp 32 # indent-tabs-mode:nil
shapeops_tool.gyp 43 # indent-tabs-mode:nil
skia_base_libs.gyp 45 # indent-tabs-mode:nil
zlib.gyp 43 # indent-tabs-mode:nil
  /external/webrtc/src/modules/audio_processing/utility/
util.gypi 38 # indent-tabs-mode:nil

Completed in 2525 milliseconds

1 2 34 5 6 7 8 91011>>