/external/emma/core/java12/com/vladium/emma/report/ |
D | AbstractReportGenerator.java | 59 m_log = Logger.getLogger (); in initialize() 60 m_verbose = m_log.atVERBOSE (); in initialize() 77 m_log.warning ("not all instrumented classes were compiled with source file"); in initialize() 78 m_log.warning ("debug data: no sources will be embedded in the report."); in initialize() 105 … m_log.warning ("line coverage requested in a report of type [" + getType () + "] but"); in initialize() 106 m_log.warning ("not all instrumented classes were compiled with line number"); in initialize() 107 …m_log.warning ("debug data: since this was the only requested column, no report will be generated.… in initialize() 113 … m_log.warning ("line coverage requested in a report of type [" + getType () + "] but"); in initialize() 114 m_log.warning ("not all instrumented classes were compiled with line number"); in initialize() 115 m_log.warning ("debug data: this column will be removed from the report."); in initialize() [all …]
|
D | ReportProcessor.java | 116 final Logger log = m_log; in _run() 118 final boolean verbose = m_log.atVERBOSE (); in _run()
|
/external/emma/core/java12/com/vladium/emma/rt/ |
D | InstrClassLoader.java | 68 m_log = Logger.getLogger (); in InstrClassLoader() 80 final boolean trace1 = m_log.atTRACE1 (); in loadClass() 82 …if (trace1) m_log.trace1 ("loadClass", "(" + name + ", " + resolve + "): nest level " + m_nestLev… in loadClass() 105 … if (trace1) m_log.trace1 ("loadClass", "using parent's version for [" + name + "]"); in loadClass() 140 …if (trace1) m_log.trace1 ("loadClass", "[delegation filter] using parent's version for [" + name +… in loadClass() 161 final boolean trace1 = m_log.atTRACE1 (); in getResource() 163 if (trace1) m_log.trace1 ("getResource", "(" + name + "): nest level " + m_nestLevel); in getResource() 166 … if (trace1 && (result != null)) m_log.trace1 ("loadClass", "[" + name + "] found in " + result); in getResource() 177 final boolean trace1 = m_log.atTRACE1 (); in findClass() 179 if (trace1) m_log.trace1 ("findClass", "(" + name + "): nest level " + m_nestLevel); in findClass() [all …]
|
D | ClassPathProcessorST.java | 56 if (m_log.atINFO ()) in run() 58 m_log.info ("processing classpath ..."); in run() 71 if (m_log.atINFO ()) in run() 75 m_log.info ("[" + m_classCount + " class(es) processed in " + (end - start) + " ms]"); in run() 88 if (m_log.atTRACE2 ()) m_log.trace2 ("handleArchiveEntry", "[" + entry.getName () + "]"); in handleArchiveEntry() 186 if (m_log.atTRACE2 ()) m_log.trace2 ("handleFile", "[" + pathDir + "] [" + file + "]"); in handleFile() 302 m_log = Logger.getLogger (); in ClassPathProcessorST() 384 private final Logger m_log; // this class is instantiated and used on a single thread field in ClassPathProcessorST
|
D | AppRunner.java | 95 m_log = log; in run() 101 if (m_log != null) in run() 103 Logger.pop (m_log); in run() 104 m_log = null; in run() 267 final Logger log = m_log; in _run() 694 m_log.warning ("no metadata collected at runtime [no reports generated]"); in run() 701 … m_log.warning ("no coverage data collected at runtime [all reports will be empty]"); in run() 714 final boolean info = m_log.atINFO (); in run() 724 …m_log.info ("raw session data " + (m_sdataOutMerge ? "merged into" : "written to") + " [" + m_sdat… in run() 787 m_log = log; in AppRunnerExitHook() [all …]
|
/external/emma/core/java12/com/vladium/emma/ |
D | Processor.java | 52 m_log = log; in run() 58 if (m_log != null) in run() 60 Logger.pop (m_log); in run() 61 m_log = null; in run() 112 protected Logger m_log; // not null only within run() field in Processor
|
/external/emma/core/java12/com/vladium/util/ |
D | IPathEnumerator.java | 94 … if (m_verbose) m_log.verbose ("processing dir path entry [" + f.getAbsolutePath () + "] ..."); in enumerate() 106 … if (m_verbose) m_log.verbose ("processing archive path entry [" + f.getAbsolutePath () + "] ..."); in enumerate() 149 … m_log = Logger.getLogger (); // each path enumerator caches its logger at creation time in PathEnumerator() 150 m_verbose = m_log.atVERBOSE (); in PathEnumerator() 151 m_trace1 = m_log.atTRACE1 (); in PathEnumerator() 176 … if (trace1) m_log.trace1 ("enumeratePathDir", "recursing into [" + child.getName () + "] ..."); in enumeratePathDir() 192 … if (trace1) m_log.trace1 ("enumeratePathDir", "processing file [" + child.getName () + "] ..."); in enumeratePathDir() 234 …if (trace1) m_log.trace1 ("enumeratePathArchive", "processing archive entry [" + entry.getName () … in enumeratePathArchive() 269 … if (m_verbose) m_log.verbose (" added manifest Class-Path entry [" + path + "]"); in enumeratePathArchive() 319 private final Logger m_log; field in IPathEnumerator.Factory.PathEnumerator
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 65 m_log = Logger.getLogger (); in InstrVisitor() 133 final boolean trace1 = m_log.atTRACE1 (); in visit() 134 if (trace1) m_log.trace1 ("visit", "class: [" + clsVMName + "]"); in visit() 143 if (trace1) m_log.trace1 ("visit", "skipping synthetic class"); in visit() 152 … m_log.warning (IAppConstants.APP_NAME + " classes appear to be included on the instrumentation"); in visit() 153 m_log.warning ("path: this is not a correct way to use " + IAppConstants.APP_NAME); in visit() 166 if (trace1) m_log.trace1 ("visit", "skipping instrumented class"); in visit() 323 m_log.warning ("class [" + clsName + "] declares a 'serialVersionUID'"); in visit() 324 … m_log.warning ("field that is not static and final: this is likely an implementation mistake"); in visit() 325 … m_log.warning ("and can interfere with " + IAppConstants.APP_NAME + "'s SUID compensation"); in visit() [all …]
|
D | InstrProcessorST.java | 71 final Logger log = m_log; in handleArchiveStart() 152 final Logger log = m_log; in handleArchiveEntry() 344 final Logger log = m_log; in handleArchiveEnd() 389 final Logger log = m_log; in handleDirStart() 404 final Logger log = m_log; in handleFile() 574 final Logger log = m_log; in handleDirEnd() 623 final Logger log = m_log; in _run()
|
/external/emma/core/java12/com/vladium/emma/report/txt/ |
D | ReportGenerator.java | 67 final boolean trace1 = m_log.atTRACE1 (); in process() 88 … m_log.trace1 ("process", "[" + getType () + "] report generated in " + (end - start) + " ms"); in process() 114 …m_log.info ("writing [" + getType () + "] report to [" + fullOutFile.getAbsolutePath () + "] ..."); in visit() 200 if (m_verbose) m_log.verbose (" report: processing package [" + item.getName () + "] ..."); in visit()
|
/external/emma/core/java12/com/vladium/emma/report/xml/ |
D | ReportGenerator.java | 67 final boolean trace1 = m_log.atTRACE1 (); in process() 80 … m_log.trace1 ("process", "[" + getType () + "] report generated in " + (end - start) + " ms"); in process() 107 …m_log.info ("writing [" + getType () + "] report to [" + fullOutFile.getAbsolutePath () + "] ..."); in visit() 191 if (m_verbose) m_log.verbose (" report: processing package [" + item.getName () + "] ..."); in visit()
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | MergeProcessor.java | 96 final Logger log = m_log; in _run() 98 final boolean verbose = m_log.atVERBOSE (); in _run()
|
/external/emma/core/java12/com/vladium/emma/report/html/ |
D | ReportGenerator.java | 98 final boolean trace1 = m_log.atTRACE1 (); in process() 120 … m_log.trace1 ("process", "[" + getType () + "] report generated in " + (end - start) + " ms"); in process() 149 …m_log.info ("writing [" + getType () + "] report to [" + fullOutFile.getAbsolutePath () + "] ..."); in visit() 325 … if (m_verbose) m_log.verbose (" report: processing package [" + item.getName () + "] ..."); in visit()
|