OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_indent
(Results
1 - 3
of
3
) sorted by null
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
plain_report_formatter.ipp
85
m_indent
= 0;
115
ostr << std::setw(
m_indent
) << ""
120
m_indent
+= 2;
131
m_indent
+= 2;
133
print_stat_value( ostr, tr.p_assertions_passed,
m_indent
, total_assertions, "assertion", "passed" );
134
print_stat_value( ostr, tr.p_assertions_failed,
m_indent
, total_assertions, "assertion", "failed" );
135
print_stat_value( ostr, tr.p_expected_failures,
m_indent
, 0 , "failure" , "expected" );
136
print_stat_value( ostr, tr.p_test_cases_passed,
m_indent
, total_tc , "test case", "passed" );
137
print_stat_value( ostr, tr.p_test_cases_failed,
m_indent
, total_tc , "test case", "failed" );
138
print_stat_value( ostr, tr.p_test_cases_skipped,
m_indent
, total_tc , "test case", "skipped" )
[
all
...]
/external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java
288
m_indent
= indent;
296
m_indent
+= delta;
307
if (delta >
m_indent
) throw new IllegalArgumentException ("delta = " + delta + ", current indent = " +
m_indent
);
309
m_indent
-= delta;
319
if (
m_indent
<= 0)
323
if ((m_sindent == null) || (m_sindent.length () <
m_indent
))
325
final char [] ca = new char [
m_indent
];
327
for (int i = 0; i <
m_indent
; ++ i) ca [i] = ' ';
334
return m_sindent.substring (0,
m_indent
);
353
private int
m_indent
;
field in class:ReportGenerator.IndentingWriter
[
all
...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/output/
plain_report_formatter.hpp
49
counter_t
m_indent
;
member in class:boost::unit_test::output::plain_report_formatter
Completed in 1334 milliseconds