HomeSort by relevance Sort by last modified time
    Searched refs:indent (Results 276 - 300 of 945) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDisplacementMap.cpp 213 TextStream& FEDisplacementMap::externalRepresentation(TextStream& ts, int indent) const
215 writeIndent(ts, indent);
221 inputEffect(0)->externalRepresentation(ts, indent + 1);
222 inputEffect(1)->externalRepresentation(ts, indent + 1);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextStream.h 77 PLATFORM_EXPORT void writeIndent(TextStream&, int indent);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/android/
scrape_gtest_log.py 46 output = json.dumps(json.loads(json_string), indent=4, sort_keys=True)
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_sxnet.c 70 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
105 int indent)
112 BIO_printf(out, "%*sVersion: %ld (0x%lX)", indent, "", v + 1, v);
116 BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
  /external/chromium_org/third_party/skia/gm/
gm_json.py 190 indent=2)))
  /external/chromium_org/tools/gn/
visibility.h 71 // Returns a string listing the visibility. |indent| number of spaces will
75 std::string Describe(int indent, bool include_brackets) const;
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_console.py 19 logging.debug('Notification: %s', json.dumps(msg, indent=2))
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 49 private int indent; field in class:JavaSourceWriter
292 indent++;
296 indent--;
302 for (int i = 0; i < indent; i++) {
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DelegatedData.java 280 public void toString(StringBuilder out, int indent) {
281 getDelegate().toString(out, indent);
285 public void write(Appendable out, int indent) throws IOException {
286 getDelegate().write(out, indent);
  /external/libexif/libexif/
exif-content.h 130 * \param[in] indent how many levels deep to indent the data
132 void exif_content_dump (ExifContent *content, unsigned int indent);
  /external/libvpx/libvpx/test/android/
scrape_gtest_log.py 46 output = json.dumps(json.loads(json_string), indent=4, sort_keys=True)
  /external/llvm/lib/Support/
FormattedStream.cpp 71 indent(std::max(int(NewCol - getColumn()), 1));
  /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();
DiffConsumer.h 71 unsigned Indent;
75 void indent();
79 : out(errs()), Differences(false), Indent(0) {}
  /external/openssl/crypto/x509v3/
v3_sxnet.c 70 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
105 int indent)
112 BIO_printf(out, "%*sVersion: %ld (0x%lX)", indent, "", v + 1, v);
116 BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewGroup.java 217 public void dump(PrintStream out, int indent) {
218 dumpFirstPart(out, indent);
223 shadowOf(child).dump(out, indent + 2);
226 dumpIndent(out, indent);
  /external/skia/gm/
gm_json.py 190 indent=2)))
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
ArrayDataMethodItem.java 51 writer.indent(4);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
61 indent = u"; "
62 end = pytree.Leaf(token.INDENT, u"")
100 new_lines[0].prefix = indent
107 suite[0].children[i].prefix = indent
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
61 indent = u"; "
62 end = pytree.Leaf(token.INDENT, u"")
100 new_lines[0].prefix = indent
107 suite[0].children[i].prefix = indent
  /system/core/libutils/
ProcessCallStack.cpp 239 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const {
241 if (indent < 0) {
242 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent);
246 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix);
  /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/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))

Completed in 4391 milliseconds

<<11121314151617181920>>