HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 51 - 75 of 2419) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/selinux/libsemanage/include/
Makefile 11 indent:
  /external/selinux/libsemanage/utils/
Makefile 16 indent:
  /external/selinux/sepolgen/
Makefile 14 indent: ;
  /external/selinux/sepolgen/src/
Makefile 15 indent: ;
  /frameworks/base/tools/split-select/
Rule.cpp 25 inline static void indentStr(String8& str, int indent) {
26 while (indent > 0) {
28 indent--;
42 String8 Rule::toJson(int indent) const {
44 indentStr(str, indent);
46 indent++;
47 indentStr(str, indent);
79 indentStr(str, indent);
95 indentStr(str, indent);
122 indentStr(str, indent);
    [all...]
  /external/icu/icu4c/source/common/
utrace.c 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
94 * a \n is output. Ideally we wouldn't do the indent until the following char
103 /* At the start of a line. Indent. */
104 for(i=0; i<indent; i++) {
153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
161 outputChar(c, outBuf, outIx, capacity, indent);
168 char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
172 outputString(NULL, outBuf, outIx, capacity, indent);
179 outputChar(' ', outBuf, outIx, capacity, indent);
187 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 36 /** {@code > 0;} the maximum indent */
42 /** whether indent spaces are currently being collected */
45 /** {@code >= 0;} current indent amount */
46 private int indent; field in class:IndentingWriter
95 indent++;
96 if (indent >= maxIndent) {
97 indent = maxIndent;
120 for (int i = 0; i < indent; i++) {
123 column = indent;
167 indent = 0
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 36 /** {@code > 0;} the maximum indent */
42 /** whether indent spaces are currently being collected */
45 /** {@code >= 0;} current indent amount */
46 private int indent; field in class:IndentingWriter
95 indent++;
96 if (indent >= maxIndent) {
97 indent = maxIndent;
120 for (int i = 0; i < indent; i++) {
123 column = indent;
167 indent = 0
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 36 /** {@code > 0;} the maximum indent */
42 /** whether indent spaces are currently being collected */
45 /** {@code >= 0;} current indent amount */
46 private int indent; field in class:IndentingWriter
95 indent++;
96 if (indent >= maxIndent) {
97 indent = maxIndent;
120 for (int i = 0; i < indent; i++) {
123 column = indent;
167 indent = 0
    [all...]
  /frameworks/av/media/libstagefright/foundation/
hexdump.cpp 32 static void appendIndent(AString *s, int32_t indent) {
37 CHECK_LT((size_t)indent, sizeof(kWhitespace));
39 s->append(kWhitespace, indent);
42 void hexdump(const void *_data, size_t size, size_t indent, AString *appendTo) {
49 appendIndent(&line, indent);
  /external/boringssl/src/crypto/asn1/
tasn_prn.c 159 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
164 int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
168 const ASN1_ITEM *it, int indent,
172 static int asn1_print_fsname(BIO *out, int indent,
176 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent,
186 return asn1_item_print_ctx(out, &ifld, indent, it,
190 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
205 parg.indent = indent;
215 if (!nohdr && !asn1_print_fsname(out, indent,
    [all...]
  /external/clang/lib/Basic/
Module.cpp 321 void Module::print(raw_ostream &OS, unsigned Indent) const {
322 OS.indent(Indent);
330 OS.indent(Indent + 2);
340 OS.indent(Indent + 2);
353 OS.indent(Indent + 2);
358 OS.indent(Indent + 2)
    [all...]
  /external/vboot_reference/cgpt/
cgpt_show.c 52 void PrintSignature(const char *indent, const char *sig, size_t n, int raw) {
54 printf("%sSig: ", indent);
70 const char *indent, int raw) {
71 PrintSignature(indent, header->signature, sizeof(header->signature), raw);
73 printf("%sRev: 0x%08x\n", indent, header->revision);
74 printf("%sSize: %d\n", indent, header->size);
75 printf("%sHeader CRC: 0x%08x %s\n", indent, header->header_crc32,
77 printf("%sMy LBA: %lld\n", indent, (long long)header->my_lba);
78 printf("%sAlternate LBA: %lld\n", indent, (long long)header->alternate_lba);
79 printf("%sFirst LBA: %lld\n", indent, (long long)header->first_usable_lba)
264 char indent[64]; local
320 char indent[64]; local
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp 466 mOut.indent() << "private static final String " RS_RESOURCE_NAME " = \""
471 mOut.indent() << "// Constructor\n";
480 mOut.indent() << "super(rs,\n";
481 mOut.indent() << " " << RS_RESOURCE_NAME ",\n";
482 mOut.indent() << " " << className << ".getBitCode32(),\n";
483 mOut.indent() << " " << className << ".getBitCode64());\n";
487 mOut.indent() << "this(rs,\n";
488 mOut.indent() << " rs.getApplicationContext().getResources(),\n";
489 mOut.indent() << " rs.getApplicationContext().getResources()."
491 mOut.indent() << " " RS_RESOURCE_NAME ", \"raw\",\n"
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
XmlWriter.java 48 public int indent; field in class:XmlWriter
54 private void indent () throws IOException { method in class:XmlWriter
55 int count = indent;
63 indent(); method
76 indent++;
99 indent(); method
111 indent = Math.max(indent - 1, 0);
112 if (indentNextClose) indent(); method
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner_test.go 19 indent string
57 if err := Compact(&buf, []byte(tt.indent)); err != nil {
58 t.Errorf("Compact(%#q): %v", tt.indent, err)
61 t.Errorf("Compact(%#q) = %#q, want %#q", tt.indent, s, tt.compact)
89 if err := Indent(&buf, []byte(tt.indent), "", "\t"); err != nil {
90 t.Errorf("Indent(%#q): %v", tt.indent, err)
91 } else if s := buf.String(); s != tt.indent {
92 t.Errorf("Indent(%#q) = %#q, want original", tt.indent, s
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
scanner_test.go 19 indent string
57 if err := Compact(&buf, []byte(tt.indent)); err != nil {
58 t.Errorf("Compact(%#q): %v", tt.indent, err)
61 t.Errorf("Compact(%#q) = %#q, want %#q", tt.indent, s, tt.compact)
89 if err := Indent(&buf, []byte(tt.indent), "", "\t"); err != nil {
90 t.Errorf("Indent(%#q): %v", tt.indent, err)
91 } else if s := buf.String(); s != tt.indent {
92 t.Errorf("Indent(%#q) = %#q, want original", tt.indent, s
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 21 const unsigned Indent = 12;
24 OS.indent(Indent);
27 OS.indent(Indent) << " Ending address offset: "
29 OS.indent(Indent) << " Location description: ";
114 const unsigned Indent = 12;
117 OS.indent(Indent);
    [all...]
  /external/llvm/lib/ProfileData/
SampleProf.cpp 89 /// \brief Print the sample record to the stream \p OS indented by \p Indent.
90 void SampleRecord::print(raw_ostream &OS, unsigned Indent) const {
109 void FunctionSamples::print(raw_ostream &OS, unsigned Indent) const {
113 OS.indent(Indent);
118 OS.indent(Indent + 2);
121 OS.indent(Indent);
127 OS.indent(Indent)
    [all...]
  /system/tpm/tpm_manager/common/
print_local_data_proto.cc 33 std::string indent(indent_size, ' ');
38 output += indent + " owner_password: ";
45 output += indent + " owner_dependency: {";
51 output += indent + " endorsement_password: ";
59 output += indent + " lockout_password: ";
66 output += indent + "}\n";
  /device/linaro/hikey/uefi-tools/
uefi-build.sh.bash_completion 21 # sh-indent-comment: t
22 # indent-tabs-mode: nil
  /external/llvm/utils/emacs/
emacs.el 8 (c++-indent-level . 2)
10 (indent-tabs-mode . nil)
  /external/selinux/scripts/
Lindent 3 RES=`indent --version`
18 indent $PARAM "$@"
  /external/testng/src/main/java/org/testng/reporters/
XMLUtils.java 32 static public String xml(String indent,
37 xmlOpen(result, indent, name, attributes, true /* no newline */);
79 public static void xmlOpen(IBuffer result, String indent, String tag,
81 xmlOpen(result, indent, tag, attributes, false /* no newline */);
104 public static void xmlOpen(IBuffer result, String indent, String tag,
106 result.append(indent).append("<").append(tag);
114 public static void xmlClose(IBuffer result, String indent, String tag, String comment) {
115 result.append(indent).append("</").append(tag).append(">")
  /external/testng/src/main/java/org/testng/xml/
XmlDefine.java 23 public String toXml(String indent) {
24 XMLStringBuffer xsb = new XMLStringBuffer(indent);

Completed in 2387 milliseconds

1 23 4 5 6 7 8 91011>>