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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMerge.cpp 74 TextStream& FEMerge::externalRepresentation(TextStream& ts, int indent) const
76 writeIndent(ts, indent);
83 inputEffect(i)->externalRepresentation(ts, indent + 1);
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 25 unsigned indent) const {
37 OS.indent(indent) << tagString;
39 OS.indent(indent) << format("DW_TAG_Unknown_%x", getTag());
45 dumpAttribute(OS, u, &offset, AttrSpec.Attr, AttrSpec.Form, indent);
51 child->dump(OS, u, recurseDepth-1, indent+2);
60 OS.indent(indent) << "NULL\n";
69 unsigned indent) const
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationUsageStats.java 182 public synchronized void dump(PrintWriter pw, String indent, DumpFilter filter) {
187 as.dump(pw, indent);
191 mSQLiteLog.dump(pw, indent, filter);
250 public void dump(PrintWriter pw, String indent) {
251 pw.println(toStringWithIndent(indent));
259 private String toStringWithIndent(String indent) {
260 return indent + "AggregatedStats{\n" +
261 indent + " key='" + key + "',\n" +
262 indent + " numPostedByApp=" + numPostedByApp + ",\n" +
263 indent + " numUpdatedByApp=" + numUpdatedByApp + ",\n"
    [all...]
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
ArrayInitializerFormatter.java 35 public ArrayInitializerFormatter(final PrintStream out, final int width, final String indent,
38 mMaxWidth = width - indent.length();
39 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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_service.cc 60 printer->Indent();
111 printer->Indent();
124 printer->Indent();
125 printer->Indent();
150 printer->Indent();
151 printer->Indent();
189 printer->Indent();
190 printer->Indent();
234 printer->Indent();
235 printer->Indent();
    [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...]
  /frameworks/rs/api/
gen_runtime.cpp 326 void writeJavaInputAllocationDefinition(ofstream& file, const string& indent,
328 void writeJavaOutputAllocationDefinition(ofstream& file, const string& indent,
341 void writeJavaTestAndSetValid(ofstream& file, int indent, const ParameterDefinition& p,
343 void writeJavaTestOneValue(ofstream& file, int indent, const ParameterDefinition& p,
345 void writeJavaAppendOutputToMessage(ofstream& file, int indent, const ParameterDefinition& p,
348 void writeJavaAppendInputToMessage(ofstream& file, int indent, const ParameterDefinition& p,
350 void writeJavaAppendNewLineToMessage(ofstream& file, int indent) const;
351 void writeJavaAppendVariableToMessage(ofstream& file, int indent, const ParameterDefinition& p,
353 void writeJavaAppendFloatVariableToMessage(ofstream& file, int indent, const string& value,
355 void writeJavaVectorComparison(ofstream& file, int indent, const ParameterDefinition& p) const
    [all...]
  /external/bzip2/
bz-html.xsl 11 <xsl:output method="html" encoding="ISO-8859-1" indent="yes"/>
  /external/chromium_org/content/test/data/accessibility/
readme.txt 12 * Use 4 spaces for indent to show hierarchy
  /external/chromium_org/dbus/
message.cc 93 std::string Message::ToStringInternal(const std::string& indent,
104 output += indent + "byte " + base::StringPrintf("%d", value) + "\n";
111 output += indent + "bool " + (value ? "true" : "false") + "\n";
118 output += indent + "int16 " + base::StringPrintf("%d", value) + "\n";
125 output += indent + "uint16 " + base::StringPrintf("%d", value) + "\n";
132 output += indent + "int32 " + base::StringPrintf("%d", value) + "\n";
139 output += indent + "uint32 " + base::StringPrintf("%u", value) + "\n";
146 output += (indent + "int64 " +
154 output += (indent + "uint64 " +
162 output += indent + "double " + base::StringPrintf("%f", value) + "\n"
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/generators/cpp_templates/
wrapper_class_declaration.tmpl 13 {{enum_def()|indent(2)}}
  /external/chromium_org/net/third_party/nss/ssl/
prelib.c 1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil -*- */
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementMicrotaskQueueBase.h 30 void show(unsigned indent);
CustomElementMicrotaskRunQueue.h 31 void show(unsigned indent);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTreeAsText.cpp 431 void write(TextStream& ts, const RenderObject& o, int indent, RenderAsTextBehavior behavior)
434 write(ts, toRenderSVGShape(o), indent);
438 writeSVGGradientStop(ts, toRenderSVGGradientStop(o), indent);
442 writeSVGResourceContainer(ts, o, indent);
446 writeSVGContainer(ts, o, indent);
450 write(ts, toRenderSVGRoot(o), indent);
454 writeSVGText(ts, toRenderSVGText(o), indent);
458 writeSVGInlineText(ts, toRenderSVGInlineText(o), indent);
462 writeSVGImage(ts, toRenderSVGImage(o), indent);
466 writeIndent(ts, indent);
    [all...]
  /external/chromium_org/ui/compositor/
debug_utils.cc 29 int indent,
32 std::string indent_str(indent, ' ');
66 std::string property_indent_str(indent+3, ' ');
107 layer->children()[i], indent + 3, mouse_location, out);
  /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/libvpx/libvpx/build/make/
gen_msvs_vcxproj.sh 72 indent=""
74 indent="${indent}${indent1}"
77 indent="${indent%${indent1}}"
85 echo "${indent}${opt%%=*}=\"${optval}\""
93 echo "${indent}<${tag}"
96 echo "${indent}>"
98 echo "${indent}<${tag}>"
106 echo "${indent}</${tag}>
    [all...]
  /external/oprofile/doc/xsl/
xhtml.xsl 8 <xsl:output method="xml" encoding="ISO-8859-1" indent="yes"
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_message.cc 150 printer->Indent();
232 printer->Indent();
233 printer->Indent();
234 printer->Indent();
235 printer->Indent();
295 printer->Indent();
316 printer->Indent();
340 printer->Indent();
344 printer->Indent();
349 printer->Indent();
    [all...]
  /external/webrtc/src/modules/audio_processing/utility/
util.gypi 38 # indent-tabs-mode:nil

Completed in 1741 milliseconds

1 2 3 4 56 7 8 91011>>