HomeSort by relevance Sort by last modified time
    Searched refs:report (Results 76 - 100 of 1835) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/tests/filesystem/src/android/filesystem/cts/
SequentialRWTest.java 57 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); local
58 report.addValue("files", numberOfFiles, ResultType.NEUTRAL, ResultUnit.COUNT);
72 report.addValues("write_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS);
73 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE);
75 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER,
77 report.submit(getInstrumentation());
102 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); local
103 report.addValue("file_size", fileSize, ResultType.NEUTRAL, ResultUnit.NONE);
104 report.addValue("write_throughput",
125 report.addValues("read_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TaintTesterChecker.cpp 53 auto report = llvm::make_unique<BugReport>(*BT, "tainted",N); local
54 report->addRange(E->getSourceRange());
55 C.emitReport(std::move(report));
ObjCAtSyncChecker.cpp 50 auto report = local
52 bugreporter::trackNullOrUndefValue(N, Ex, *report);
53 C.emitReport(std::move(report));
74 auto report = local
76 bugreporter::trackNullOrUndefValue(N, Ex, *report);
78 C.emitReport(std::move(report));
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/index/
ElementIndex.java 12 package org.jacoco.report.internal.html.index;
17 import org.jacoco.report.internal.ReportOutputFolder;
18 import org.jacoco.report.internal.html.ILinkable;
21 * An index over all report pages that allows queries according to certain
31 * Creates a new empty index for a HTML report.
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
XMLGroupVisitor.java 13 package org.jacoco.report.internal.xml;
18 import org.jacoco.report.ISourceFileLocator;
19 import org.jacoco.report.internal.AbstractGroupVisitor;
22 * A {@link org.jacoco.report.IReportGroupVisitor} that transforms the report
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLReferenceBenchmark.java 68 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); local
69 report.addValues("set_up_times", setUpTimes, ResultType.LOWER_BETTER, ResultUnit.MS);
70 report.addValue("update_time_average", updateAverage, ResultType.LOWER_BETTER,
72 report.addValue("render_time_average", renderAverage, ResultType.LOWER_BETTER,
76 report.setSummary("total_time_average", totalTime, ResultType.LOWER_BETTER,
78 report.submit(getInstrumentation());
  /hardware/libhardware/tests/input/evdev/
SwitchInputMapper_test.cpp 80 MockInputReport report; local
82 .WillOnce(Return(&report));
87 EXPECT_CALL(report, setBoolUsage(INPUT_COLLECTION_ID_SWITCH, INPUT_USAGE_SWITCH_LID, 1, 0));
88 EXPECT_CALL(report, reportEvent(_));
89 EXPECT_CALL(report, setBoolUsage(INPUT_COLLECTION_ID_SWITCH, INPUT_USAGE_SWITCH_LID, 0, 0));
90 EXPECT_CALL(report, reportEvent(_));
  /prebuilts/misc/common/jacoco/
Android.mk 12 jvm-jacoco-report \
25 jvm-jacoco-report:lib/org.jacoco.report-$(my_jacoco_version).jar \
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentProcessingStep.java 97 validationReport.report().printMessagesTo(messager);
111 ValidationReport<TypeElement> report =
113 report.printMessagesTo(messager);
114 builderReportsByComponent.put(element.getEnclosingElement(), report);
123 ValidationReport<TypeElement> report =
125 report.printMessagesTo(messager);
126 builderReportsBySubcomponent.put(element, report);
136 ComponentValidationReport report = subcomponentValidator.validate(
138 report.report().printMessagesTo(messager)
    [all...]
  /external/google-benchmark/tools/
compare_bench.py 3 compare_bench.py - Compare two benchmarks or their results and report the
8 from gbench import util, report
20 # Run the benchmarks and report the results
23 output_lines = gbench.report.generate_difference_report(json1, json2)
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/
XMLFormatter.java 12 package org.jacoco.report.xml;
22 import org.jacoco.report.IReportVisitor;
23 import org.jacoco.report.ISourceFileLocator;
24 import org.jacoco.report.internal.AbstractGroupVisitor;
25 import org.jacoco.report.internal.xml.XMLCoverageWriter;
26 import org.jacoco.report.internal.xml.XMLDocument;
27 import org.jacoco.report.internal.xml.XMLElement;
28 import org.jacoco.report.internal.xml.XMLGroupVisitor;
31 * Report formatter that creates a single XML file for a coverage session
35 private static final String PUBID = "-//JACOCO//DTD Report 1.0//EN"
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
LinkableStub.java 12 package org.jacoco.report.internal.html;
14 import org.jacoco.report.internal.ReportOutputFolder;
  /external/libcxx/utils/google-benchmark/tools/
compare_bench.py 3 compare_bench.py - Compare two benchmarks or their results and report the
8 from gbench import util, report
20 # Run the benchmarks and report the results
23 output_lines = gbench.report.generate_difference_report(json1, json2)
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineVerifier.cpp 192 void report(const char *msg, const MachineFunction *MF);
193 void report(const char *msg, const MachineBasicBlock *MBB);
194 void report(const char *msg, const MachineInstr *MI);
195 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
285 report("Bad instruction parent pointer", MFI);
314 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { function in class:MachineVerifier
326 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { function in class:MachineVerifier
328 report(msg, MBB->getParent());
338 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { function in class:MachineVerifier
340 report(msg, MI->getParent())
347 void MachineVerifier::report(const char *msg, function in class:MachineVerifier
    [all...]
  /external/autotest/client/bin/
profiler.py 24 def report(self, test): member in class:profiler
  /external/autotest/server/bin/
unit_test_server.py 13 def gen_gcov_report(report, files):
19 report)
46 report = utils.system_output('gcov ' + ''.join(self.test_files))
48 # Filter report for the files of interest
49 filtered = gen_gcov_report(report, self.test_files)
59 # Append the coverage report
  /external/emma/core/java12/com/vladium/emma/report/
IReportDataModel.java 9 package com.vladium.emma.report;
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
TextContent.java 9 package com.vladium.emma.report.html.doc;
  /external/icu/icu4c/source/samples/legacy/
Makefile 47 .PHONY: all clean distclean check report
66 # Make report: creates a 'report file' with both source and sample run
67 report: $(TARGET).report
69 $(TARGET).report: check $(TARGET).cpp
  /external/icu/icu4c/source/samples/uresb/
Makefile 47 .PHONY: all clean distclean check report
73 # Make report: creates a 'report file' with both source and sample run
74 report: $(TARGET).report
76 $(TARGET).report: check $(TARGET).cpp
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
IReportGroupVisitor.java 12 package org.jacoco.report;
19 * Output-Interface for hierarchical report structures. To allow sequential
21 * "deep first" fashion. The interface is implemented by the report formatters
22 * and can be used to emit coverage report structures.
38 * Called to add a bundle to the the report.
41 * a bundle to include in the report
45 * in case of IO problems with the report writer
51 * Called to add a new group to the report. The returned
60 * in case of IO problems with the report writer
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
CSVFormatter.java 12 package org.jacoco.report.csv;
22 import org.jacoco.report.ILanguageNames;
23 import org.jacoco.report.IReportVisitor;
24 import org.jacoco.report.JavaNames;
27 * Report formatter that will create a single CSV file. By default the filename
48 * Returns the language names call-back used in this report.
67 * Creates a new visitor to write a report to the given stream.
70 * output stream to write the report to
71 * @return visitor to emit the report data to
89 // Info not used for CSV report
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
BundlePage.java 12 package org.jacoco.report.internal.html.page;
19 import org.jacoco.report.ISourceFileLocator;
20 import org.jacoco.report.internal.ReportOutputFolder;
21 import org.jacoco.report.internal.html.IHTMLReportContext;
ClassPage.java 12 package org.jacoco.report.internal.html.page;
18 import org.jacoco.report.internal.ReportOutputFolder;
19 import org.jacoco.report.internal.html.IHTMLReportContext;
20 import org.jacoco.report.internal.html.ILinkable;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
LabelColumn.java 12 package org.jacoco.report.internal.html.table;
19 import org.jacoco.report.internal.ReportOutputFolder;
20 import org.jacoco.report.internal.html.HTMLElement;
21 import org.jacoco.report.internal.html.resources.Resources;

Completed in 3782 milliseconds

1 2 34 5 6 7 8 91011>>