Searched refs:indent (Results 1 - 24 of 24) sorted by relevance

/haiku/src/bin/
H A Dget_driver_settings.cpp20 void print_params(int indent, const driver_parameter *p) argument
22 printf("indent: %d\n", indent);
23 printf("%.*s'%s': [", indent, sTabs, p->name);
28 indent++;
30 print_params(indent, &p->parameters[i]);
/haiku/src/bin/pcmcia-cs/
H A Ddump_cis.c53 static char indent[10] = " "; variable
116 indent, tup->tuple.CISOffset, tup->tuple.TupleCode,
119 if ((i % 16) == 0) printf("%s ", indent);
130 printf("%sfuncid ", indent);
218 printf("%s %s ", indent, dtype[dev->dev[i].type]);
224 printf("%s no_info\n", indent);
235 printf("%s %s", indent, tag);
253 if (++i == 5) printf("\n%s ", indent);
258 if (++i == 5) printf("\n%s ", indent);
263 if (++i == 5) printf("\n%s ", indent);
[all...]
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660_identify.cpp119 const char *indent);
272 const char *indent, bool printHeader)
275 TRACE(("%siso9660_common_descriptor:\n", indent));
277 TRACE(("%s volume descriptor type: %d (%s)\n", indent,
280 TRACE(("%s standard identifier: %.5s (%s)\n", indent,
284 TRACE(("%s version: %d\n", indent, common->version));
290 const char *indent, bool printHeader)
293 TRACE(("%siso9660_primary_descriptor:\n", indent));
295 dump_common_descriptor(&primary->common, indent, false);
296 TRACE(("%s identifier: '%.32s'\n", indent,
271 dump_common_descriptor(iso9660_common_descriptor *common, const char *indent, bool printHeader) argument
289 dump_primary_descriptor(iso9660_volume_descriptor *primary, const char *indent, bool printHeader) argument
316 dump_supplementary_descriptor(iso9660_volume_descriptor *supplementary, const char *indent, bool printHeader) argument
334 dump_directory_record(iso9660_directory_record *record, const char *indent) argument
[all...]
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDReportItem.cpp178 char indent[indentLevel + 1]; local
179 memset(indent, '\t', indentLevel);
180 indent[indentLevel] = 0;
182 TRACE_ALWAYS("%sHIDReportItem %p\n", indent, this);
183 TRACE_ALWAYS("%s\tbyte offset: %" B_PRIu32 "\n", indent, fByteOffset);
184 TRACE_ALWAYS("%s\tshift: %u\n", indent, fShift);
185 TRACE_ALWAYS("%s\tmask: 0x%08" B_PRIx32 "\n", indent, fMask);
186 TRACE_ALWAYS("%s\thas data: %s\n", indent, fHasData ? "yes" : "no");
187 TRACE_ALWAYS("%s\tarray: %s\n", indent, fArray ? "yes" : "no");
188 TRACE_ALWAYS("%s\trelative: %s\n", indent, fRelativ
[all...]
H A DHIDCollection.cpp166 char indent[indentLevel + 1]; local
167 memset(indent, '\t', indentLevel);
168 indent[indentLevel] = 0;
195 TRACE_ALWAYS("%sHIDCollection %p\n", indent, this);
196 TRACE_ALWAYS("%s\ttype: %u %s\n", indent, fType, typeName);
197 TRACE_ALWAYS("%s\tusage: 0x%08" B_PRIx32 "\n", indent, fUsage);
198 TRACE_ALWAYS("%s\tstring id: %u\n", indent, fStringID);
199 TRACE_ALWAYS("%s\tphysical id: %u\n", indent, fPhysicalID);
201 TRACE_ALWAYS("%s\titem count: %" B_PRIu32 "\n", indent, fItems.Count());
208 TRACE_ALWAYS("%s\tchild count: %" B_PRIu32 "\n", indent, fChildre
[all...]
/haiku/src/kits/interface/
H A DLayoutUtils.cpp282 BString indent; local
283 indent.SetTo(' ', level * 4);
286 _output << indent << "<null view>\n"; local
300 indent.String(), view, class_name(view), view->Name(),
301 indent.String(), frame.left, frame.top, frame.right, frame.bottom,
302 indent.String(), min.width, min.height,
303 indent.String(), max.width, max.height,
304 indent.String(), preferred.width, preferred.height);
313 _output << indent << " ---\n"; local
328 BString indent; local
332 _output << indent << "<null item>\\n"; local
363 _output << indent << " ---\\n"; local
[all...]
H A DAboutWindow.cpp581 const char* indent = ""; local
583 indent = " ";
590 text << indent << contents[i] << "\n";
H A DColumnListView.cpp1318 int32 indent; local
1319 return fOutlineView->FindRow(point.y, &indent, &top);
1327 int32 indent; local
1328 return fOutlineView->FindRow(point.y, &indent, &top);
3709 int32 indent; local
3711 BRow* row = FindRow(position.y, &indent, &rowTop);
3768 float leftWidgetBoundry = indent * kOutlineLevelIndent
3875 int32 indent; local
3876 BRow* row = FindRow(position.y, &indent, &top);
4003 int32 indent; local
4018 int32 indent; local
4131 int32 indent; local
4368 int32 indent = 0; local
[all...]
/haiku/src/tools/cppunit/
H A DTestShell.cpp30 const char BTestShell::indent[] = " "; member in class:BTestShell
283 cout << indent << "--help Displays this help text plus some other garbage" << endl;
284 cout << indent << "--list Lists the names of classes with installed tests" << endl;
285 cout << indent << "-v0 Sets verbosity level to 0 (concise summary only)" << endl;
286 cout << indent << "-v1 Sets verbosity level to 1 (complete summary only)" << endl;
287 cout << indent << "-v2 Sets verbosity level to 2 (*default* -- per-test results plus" << endl;
288 cout << indent << " complete summary)" << endl;
289 cout << indent << "-v3 Sets verbosity level to 3 (partial dynamic loading information, " << endl;
290 cout << indent << " per-test results and timing info, plus complete summary)" << endl;
291 cout << indent << "
[all...]
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dquery.c143 void dump_query_tree(query_exp *tree, int indent) argument
149 for (i=0;i<indent;i++) printf("%c", INDC);
151 dump_query_tree(tree->lv.exp, indent+1);
152 dump_query_tree(tree->rv.exp, indent+1);
153 for (i=0;i<indent;i++) printf("%c", INDC);
156 for (i=0;i<indent;i++) printf("%c", INDC);
/haiku/src/add-ons/kernel/partitioning_systems/session/
H A DDebug.cpp66 \brief Prints out enough indentation characters to indent the current line
154 static void indent(uint8 tabCount);
200 indent(uint8 tabCount) function
330 indent(fTabCount);
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfDebug.cpp66 \brief Prints out enough indentation characters to indent the current line
154 static void indent(uint8 tabCount);
200 indent(uint8 tabCount) function
332 indent(fTabCount);
/haiku/src/apps/cortex/TipManager/
H A DTipManagerImpl.h89 void dump(int indent) { argument
91 s.SetTo('\t', indent);
190 void dump(int indent);
249 void dump(int indent);
H A DTipManagerImpl.cpp347 void _ViewEntry::dump(int indent) { argument
349 s.SetTo('\t', indent);
357 (*it)->dump(indent + 1);
361 (*it)->dump(indent + 1);
479 void _WindowEntry::dump(int indent) { argument
481 s.SetTo('\t', indent);
489 (*it)->dump(indent + 1);
/haiku/headers/tools/cppunit/
H A DTestShell.h122 static const char indent[]; member in class:BTestShell
/haiku/headers/private/print/
H A DPicturePrinter.h40 PicturePrinter(int indent = 0);
/haiku/src/bin/rc/
H A Ddecompile.cpp56 indent() function
69 indent();
84 indent();
258 indent();
566 indent();
608 indent();
/haiku/src/kits/print/
H A DPicturePrinter.cpp34 PicturePrinter::PicturePrinter(int indent) argument
35 : fIndent(indent)
/haiku/src/tests/kits/interface/layout/
H A DLayoutTest1.cpp1641 void _DumpViewHierarchy(BView* view, int32 indent = 0)
1643 for (int32 i = 0; i < indent; i++)
1646 for (int32 i = 0; i < 15 - indent; i++)
1652 _DumpViewHierarchy(view->ChildAt(i), indent + 1);
/haiku/src/build/libbe/app/
H A DMessage.cpp499 BMessage::_PrintToStream(const char* indent) const
524 printf("%s %s = ", indent,
527 printf("%s %s[%" B_PRIu32 "] = ", indent,
614 sprintf(buffer, "%s ", indent);
626 printf("%s }\n", indent);
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp132 indented_string(const char* string, const char* indent, argument
142 << (line == string && firstIndent != NULL ? firstIndent : indent);
/haiku/headers/build/os/app/
H A DMessage.h293 void _PrintToStream(const char* indent) const;
/haiku/src/kits/app/
H A DMessage.cpp609 BMessage::_PrintToStream(const char* indent) const
634 printf("%s %s = ", indent,
637 printf("%s %s[%" B_PRIu32 "] = ", indent,
734 snprintf(buffer, sizeof(buffer), "%s ", indent);
744 printf("%s }\n", indent);
/haiku/headers/os/app/
H A DMessage.h557 void _PrintToStream(const char* indent) const;

Completed in 316 milliseconds