/external/toolchain-utils/crosperf/ |
results_report.py | 4 """A module to handle the report format.""" 93 def _FilterPerfReport(event_threshold, report): 94 """Filters out entries with `< event_threshold` percent in a perf report.""" 98 return {event: filter_dict(m) for event, m in report.iteritems()} 126 report = read_perf_report(label, bench_name, i) 127 self._ProcessPerfReport(report, label, bench_name, i) 218 """Class to handle the report format.""" 272 """Class to generate text result report.""" 313 """Generate the report for email and console.""" 319 title_contents = "Results report for '%s'" % (experiment.name, [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
AppErrorDialog.java | 120 final TextView report = findViewById(com.android.internal.R.id.aerr_report); local 121 report.setOnClickListener(this); 122 report.setVisibility(hasReceiver ? View.VISIBLE : View.GONE);
|
AppNotRespondingDialog.java | 112 final TextView report = findViewById(com.android.internal.R.id.aerr_report); local 113 report.setOnClickListener(this); 115 report.setVisibility(hasReceiver ? View.VISIBLE : View.GONE); 178 Slog.w(TAG, "bug report receiver dissappeared", e);
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
FutureTask.java | 117 private V report(int s) throws ExecutionException { method in class:FutureTask 193 return report(s); 207 return report(s); 239 * Causes this future to report an {@link ExecutionException}
|
/prebuilts/go/darwin-x86/src/cmd/fix/ |
main.go | 82 report(err) 91 report(err) 96 report(err) 164 report(err) 215 func report(err error) { func 229 report(err)
|
/prebuilts/go/darwin-x86/src/cmd/gofmt/ |
gofmt.go | 33 allErrors = flag.Bool("e", false, "report all errors (not just the first 10 on different lines)") 51 func report(err error) { func 165 report(err) 208 report(err) 217 report(err) 222 report(err)
|
/prebuilts/go/linux-x86/src/cmd/fix/ |
main.go | 82 report(err) 91 report(err) 96 report(err) 164 report(err) 215 func report(err error) { func 229 report(err)
|
/prebuilts/go/linux-x86/src/cmd/gofmt/ |
gofmt.go | 33 allErrors = flag.Bool("e", false, "report all errors (not just the first 10 on different lines)") 51 func report(err error) { func 165 report(err) 208 report(err) 217 report(err) 222 report(err)
|
/external/bison/tests/ |
testsuite | 696 104;reduce.at:124;Useless Rules;report; 697 105;reduce.at:271;Reduced Automaton;report; 698 106;reduce.at:381;Underivable Rules;report; 777 185;conflicts.at:546;Unresolved SR Conflicts;report; 778 186;conflicts.at:653;Resolved SR Conflicts;report; 779 187;conflicts.at:775;Defaulted Conflicted Reduction;report; 789 197;conflicts.at:1273;Solved conflicts report for multiple reductions in a state;; [all...] |
/cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/ |
MediaBitstreamsTest.java | 279 MetricsReportLog report = new MetricsReportLog( local 297 report.addValue(keyErrMsg, errMsg, ResultType.NEUTRAL, ResultUnit.NONE); 298 report.submit(); 313 report.addValue(name, result, ResultType.NEUTRAL, ResultUnit.NONE); 315 report.submit(); 335 CLog.e("Error parsing report; saving report to %s", device.pullFile(reportPath));
|
/external/bison/src/ |
print-xml.c | 52 | Report information on a state. | 120 | Report the shifts if DISPLAY_SHIFTS_P or the gotos of S on | 137 /* Nothing to report. */ 143 /* Report lookahead tokens and shifts. */ 177 | Report the explicit errors of S raised from %nonassoc. | 191 /* Nothing to report. */ 197 /* Report lookahead tokens and errors. */ 212 | Report a reduction of RULE on LOOKAHEAD_TOKEN (which can be `default'). | 236 | Report on OUT the reduction actions of S. | 245 int report = false local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
DOMConfigurationImpl.java | 272 * True to report invalid characters in node names, attributes, elements, 394 report(DOMError.SEVERITY_WARNING, "cdata-sections-splitted"); 396 report(DOMError.SEVERITY_ERROR, "wf-invalid-character"); 420 report(DOMError.SEVERITY_ERROR, "wf-invalid-character"); 465 report(DOMError.SEVERITY_ERROR, "wf-invalid-character"); 487 private void report(short severity, String type) {
|
/prebuilts/go/darwin-x86/src/regexp/testdata/ |
testregex.c | 287 T(" Field 5: optional comment appended to the report.\n"); 654 report(char* comment, char* fun, char* re, char* s, int len, char* msg, int flags, unsigned long test) function 720 report(comment, NiL, re, s, len, NiL, 0, test); 904 report("callout failed", NiL, re, s, len, NiL, flags, test); 951 report("failed: match was", NiL, re, s, len, NiL, flags, test); 970 report("failed: match was", NiL, re, s, len, NiL, flags, test); 981 report("failed: overran match array", NiL, re, s, len, NiL, flags, test); 1157 report("failed", "regfree", re, NiL, -1, msg, flags, test); [all...] |
/prebuilts/go/linux-x86/src/regexp/testdata/ |
testregex.c | 287 T(" Field 5: optional comment appended to the report.\n"); 654 report(char* comment, char* fun, char* re, char* s, int len, char* msg, int flags, unsigned long test) function 720 report(comment, NiL, re, s, len, NiL, 0, test); 904 report("callout failed", NiL, re, s, len, NiL, flags, test); 951 report("failed: match was", NiL, re, s, len, NiL, flags, test); 970 report("failed: match was", NiL, re, s, len, NiL, flags, test); 981 report("failed: overran match array", NiL, re, s, len, NiL, flags, test); 1157 report("failed", "regfree", re, NiL, -1, msg, flags, test); [all...] |
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/driver/ |
driver.go | 26 "cmd/pprof/internal/report" 35 // manager. Then it generates a report formatted according to the 293 value, unit := report.ScaleValue(v, ranges[0][2], ranges[0][2]) 298 sv, su := report.ScaleValue(v, u, unit) 303 sv, su := report.ScaleValue(v, u, unit) 308 sv, su := report.ScaleValue(v, u, unit) 320 value2, unit2 := report.ScaleValue(v, ranges[1][2], unit) 325 sv, su := report.ScaleValue(v, u, unit) 440 flagAddresses *bool // Report at address level 441 flagLines *bool // Report at source line leve [all...] |
/prebuilts/go/linux-x86/src/cmd/pprof/internal/driver/ |
driver.go | 26 "cmd/pprof/internal/report" 35 // manager. Then it generates a report formatted according to the 293 value, unit := report.ScaleValue(v, ranges[0][2], ranges[0][2]) 298 sv, su := report.ScaleValue(v, u, unit) 303 sv, su := report.ScaleValue(v, u, unit) 308 sv, su := report.ScaleValue(v, u, unit) 320 value2, unit2 := report.ScaleValue(v, ranges[1][2], unit) 325 sv, su := report.ScaleValue(v, u, unit) 440 flagAddresses *bool // Report at address level 441 flagLines *bool // Report at source line leve [all...] |
/external/autotest/server/cros/dynamic_suite/ |
reporting_unittest.py | 27 # test report used to generate failure 49 """Get a TestBug so we can report it. 111 bug_id, bug_count = reporting.Reporter().report(self._get_failure()) 141 bug_id, bug_count = reporting.Reporter().report(self._get_failure()) 181 bug_id, bug_count = reporting.Reporter().report(self._get_failure(), 189 """Test that we can use a Bug object to file a bug report.""" 204 bug_id, bug_count = reporting.Reporter().report(bug) 222 bug_id, bug_count = reporting.Reporter().report(bug) 455 reporter.report(mox.IgnoreArg()).AndReturn((11,1)) 476 reporter.report(mox.IgnoreArg()).AndReturn((11,1) [all...] |
/external/elfutils/libdwfl/ |
linux-kernel-modules.c | 207 bool report = true; local 215 report = want > 0; 218 if (report) 237 if (!report || result < 0) 244 /* Look for a kernel debug archive. If we find one, report all its modules. 314 /* Report a kernel and all its modules found on disk, for offline use. 329 /* First report the kernel. */ 374 /* We have a .ko file to report. Following the algorithm 634 #define report() \ macro 644 return report () == NULL ? -1 : 0 [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
BugReporterVisitors.cpp | 118 // special ranges for this report. 167 /// bug report, so it can print a note later. 210 // See if the return value is NULL. If so, suppress the report. 212 assert(Eng && "Cannot file a bug report without an owning engine"); 297 // the report is resurrected as valid later on. 353 // Don't automatically suppress a report if one of the arguments is 379 // false negatives, and continue towards marking this report invalid. 791 assert(Eng && "Cannot file a bug report without an owning engine"); [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningServiceDetails.java | 119 ApplicationErrorReport report = new ApplicationErrorReport(); local 120 report.type = ApplicationErrorReport.TYPE_RUNNING_SERVICE; 121 report.packageName = mServiceItem.mServiceInfo.packageName; 122 report.installerPackageName = mInstaller.getPackageName(); 123 report.processName = mServiceItem.mRunningService.process; 124 report.time = System.currentTimeMillis(); 125 report.systemApp = (mServiceItem.mServiceInfo.applicationInfo.flags 160 report.runningServiceInfo = info; 163 result.putExtra(Intent.EXTRA_BUG_REPORT, report); 316 detail.mReportButton.setText(com.android.internal.R.string.report); [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
gotype.go | 31 report all errors (not just the first 10) 91 allErrors = flag.Bool("e", false, "report all errors (not just the first 10)") 139 func report(err error) { func 262 report(err) 310 report(err)
|
/prebuilts/go/linux-x86/src/go/types/ |
gotype.go | 31 report all errors (not just the first 10) 91 allErrors = flag.Bool("e", false, "report all errors (not just the first 10)") 139 func report(err error) { func 262 report(err) 310 report(err)
|
/cts/common/util/tests/src/com/android/compatibility/common/util/ |
ResultHandlerTest.java | 168 // Module B: test3 fails, test4 passes with report log, test5 passes with skip 182 ReportLog report = new ReportLog(); local 185 report.setSummary(summary); 186 moduleBTest4.setReportLog(report); 324 assertNull("Unexpected report", moduleATest1.getReportLog()); 347 assertNull("Unexpected report", moduleBTest3.getReportLog()); 356 ReportLog report = moduleBTest4.getReportLog(); local 357 assertNotNull("Expected report", report); 358 ReportLog.Metric summary = report.getSummary() [all...] |
/external/webrtc/talk/app/webrtc/ |
statstypes.cc | 747 StatsReport* report = new StatsReport(id); local 748 list_.push_back(report); 749 return report; 764 StatsReport* report = new StatsReport((*it)->id()); local 766 *it = report; 767 return report; 772 // Looks for a report with the given |id|. If one is not found, NULL
|
/cts/common/util/src/com/android/compatibility/common/util/ |
ReportLog.java | 33 * Utility class to add results to the report. 69 * Creates a metric array to be included in the report. Each object has a message 175 * Adds a double array of metrics to the report. 182 * Adds a double array of metrics to the report. 190 * Adds a double metric to the report. 197 * Adds a double metric to the report. 205 * Adds an int metric to the report. 212 * Adds a long metric to the report. 219 * Adds a float metric to the report. 226 * Adds a boolean metric to the report 368 ReportLog report = new ReportLog(); local [all...] |