HomeSort by relevance Sort by last modified time
    Searched full:report (Results 226 - 250 of 8682) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 9 package com.vladium.emma.report.xml;
31 import com.vladium.emma.report.AbstractReportGenerator;
32 import com.vladium.emma.report.AllItem;
33 import com.vladium.emma.report.ClassItem;
34 import com.vladium.emma.report.IItem;
35 import com.vladium.emma.report.IItemAttribute;
36 import com.vladium.emma.report.IItemMetadata;
37 import com.vladium.emma.report.ItemComparator;
38 import com.vladium.emma.report.MethodItem;
39 import com.vladium.emma.report.PackageItem
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 39 * A report has a type, which is one of
55 // System property defining error report receiver for system apps
58 // System property defining default error report receiver
62 * Uninitialized error report.
67 * An error report about an application crash.
72 * An error report about an application that's not responding.
77 * An error report about an application that's consuming too much battery.
82 * A report from a user to a developer about a running service that the
88 * Type of this report. Can be one of {@link #TYPE_NONE},
101 * report pertains to
    [all...]
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/
CtsHostJankTest.java 120 // Create and deliver the report.
121 HostReportLog report = local
123 report.printValue(
125 report.printValue("Average of Maximum Accumulated Frames", avgMaxAccFrames,
127 report.printValue(
129 report.printSummary(
131 report.deliverReportToHost();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_query.c 96 uint32_t report; member in struct:nv30_query
120 q->report = 1;
124 q->report = 1;
131 q->report = 2 + (q->type - NV30_QUERY_ZCULL_0);
159 PUSH_DATA (push, (q->report << 24) | q->qo[0]->hw->start);
166 PUSH_DATA (push, q->report);
187 PUSH_DATA (push, (q->report << 24) | q->qo[1]->hw->start);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix.cc 59 // The Report() and CHECK calls below may call mmap recursively and fail.
65 Report("ERROR: %s failed to allocate 0x%zx (%zd) bytes of %s: %d\n",
77 Report("ERROR: %s failed to deallocate 0x%zx (%zd) bytes at address %p\n",
92 Report("ERROR: "
107 Report("ERROR:"
163 Report("Process memory map follows:\n");
168 Report("End of process memory map.\n");
  /external/kernel-headers/original/linux/
hid.h 98 * HID report item format
111 * HID report descriptor item type (prefix bit 2,3)
120 * HID report descriptor main item tags
130 * HID report descriptor main item contents
144 * HID report descriptor collection item types
152 * HID report descriptor global item tags
169 * HID report descriptor local item tags
278 * HID report types --- Ouch! HID spec says 1 2 3!
385 unsigned report_offset; /* bit offset in the report */
386 unsigned report_size; /* size of this field in the report */
396 struct hid_report *report; \/* associated report *\/ member in struct:hid_field
430 struct hid_report *report; member in struct:hid_control_fifo
435 struct hid_report *report; member in struct:hid_output_fifo
448 struct hid_report *report; member in struct:hid_input
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_query.c 96 uint32_t report; member in struct:nv30_query
120 q->report = 1;
124 q->report = 1;
131 q->report = 2 + (q->type - NV30_QUERY_ZCULL_0);
159 PUSH_DATA (push, (q->report << 24) | q->qo[0]->hw->start);
166 PUSH_DATA (push, q->report);
187 PUSH_DATA (push, (q->report << 24) | q->qo[1]->hw->start);
  /frameworks/base/docs/html/
support.jd 9 <p>A variety of support resources are available to help you report and resolve issues while you are developing apps for Android. </p>
29 <a href="http://code.google.com/p/android/issues/entry?template=Developer%20Documentation">Report documentation bug</a><br />
30 <a href="https://code.google.com/p/android/issues/entry?template=User%20bug%20report">Report device bug</a><br />
31 <a href="https://code.google.com/p/android/issues/entry?template=Developer%20bug%20report">Report platform bug</a><br />
53 <a href="http://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=1085703&topic=15868&ctx=topic">Report a Google Play policy violation</a>
  /external/clang/lib/StaticAnalyzer/Checkers/
StackAddrEscapeChecker.cpp 106 // Generate a report for this bug.
111 BugReport *report = new BugReport(*BT_returnstack, os.str(), N); local
112 report->addRange(RetE->getSourceRange());
114 report->addRange(range);
116 C.emitReport(report);
226 // Generate a report for this bug.
234 BugReport *report = new BugReport(*BT_stackleak, os.str(), N); local
236 report->addRange(range);
238 Ctx.emitReport(report);
  /external/compiler-rt/lib/asan/tests/
asan_mac_test.cc 49 p[100] = 'A'; // ASan should report an error here.
90 // Make sure the whole ASan report is printed, i.e. that we don't die
96 // Make sure the whole ASan report is printed, i.e. that we don't die
103 // Make sure the whole ASan report is printed, i.e. that we don't die
109 // Make sure the whole ASan report is printed, i.e. that we don't die
115 // Make sure the whole ASan report is printed, i.e. that we don't die
121 // Make sure the whole ASan report is printed, i.e. that we don't die
127 // Make sure the whole ASan report is printed, i.e. that we don't die
133 // Make sure the whole ASan report is printed, i.e. that we don't die
  /frameworks/base/services/java/com/android/server/am/
NativeCrashListener.java 58 * Spin the actual work of handling a debuggerd crash report into a
67 NativeCrashReporter(ProcessRecord app, int signal, String report) {
71 mCrashReport = report;
89 Slog.e(TAG, "Unable to report native crash", e);
197 // Read the crash report from the debuggerd connection
232 Slog.v(TAG, "Skipping report for persistent app " + pr);
256 // Okay, we've got the report.
260 // cleanup mechanism knows we're still submitting the report
280 Slog.e(TAG, "Exception dealing with report", e);
  /art/test/023-many-interfaces/src/
ManyInterfaces.java 167 /** whether to report timing information */
171 * Report on a section.
173 private static void report(String label, long start, long end, int iter, method in class:ManyInterfaces
208 report("testIface001", start, end, iter, rept);
213 report("testIface049", start, end, iter, rept);
218 report("testIface099", start, end, iter, rept);
223 report("testVirt001", start, end, iter, rept);
228 report("testVirt049", start, end, iter, rept);
233 report("testVirt099", start, end, iter, rept);
238 report("testInst001", start, end, iter, rept)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListActivity.java 76 TestResultsReport report = new TestResultsReport(this, mAdapter); local
78 intent.putExtra(ReportViewerActivity.EXTRA_REPORT_CONTENTS, report.getContents());
82 Log.e(TAG, "Couldn't copy test results report", e);
  /dalvik/tests/023-many-interfaces/src/
ManyInterfaces.java 153 /** whether to report timing information */
157 * Report on a section.
159 private static void report(String label, long start, long end, int iter, method in class:ManyInterfaces
194 report("testIface001", start, end, iter, rept);
199 report("testIface049", start, end, iter, rept);
204 report("testIface099", start, end, iter, rept);
209 report("testVirt001", start, end, iter, rept);
214 report("testVirt049", start, end, iter, rept);
219 report("testVirt099", start, end, iter, rept);
224 report("testInst001", start, end, iter, rept)
    [all...]
  /docs/source.android.com/src/source/
life-of-a-bug.jd 27 can report bugs and request features for the core Android software stack.
29 <a href="report-bugs.html">Reporting Bugs</a> page).
30 Reporting bugs is great (thank you!), but what happens to a bug report once
75 The bug report has not yet been triaged (that is, reviewed by an AOSP maintainer.)</p>
79 The bug report has insufficient information to act
92 The bug report has been recognized as an adequately
93 detailed report of a legitimate issue, but has not yet been assigned to an
123 There was already an identical report in the issue tracker. Any actual
124 action will be reported on that report.</p>
154 The report didn't have enough information to be able to take any action.</p
    [all...]
  /external/chromium/chrome/browser/
bug_report_util.h 60 // Send the feedback report after the specified delay
65 // Generates bug report data.
95 // Send the feedback report
  /external/chromium/chrome/browser/safe_browsing/
report.proto 41 // bodydigest and bodylength can be useful if the report does not
58 // bodydigest and bodylength can be useful if the report does not
91 // Whether the report has HTTP Responses.
  /external/chromium_org/chrome/browser/profile_resetter/
resettable_settings_snapshot.h 88 // Sends |report| as a feedback. |report| is supposed to be result of
90 void SendSettingsFeedback(const std::string& report,
  /external/chromium_org/chrome/browser/resources/safe_browsing/
malware_block_v2.js 18 var checkBox = $('check-report');
76 $('report-error-link').onclick = function(e) {
85 $('check-report').onclick = savePreference;
  /external/chromium_org/chrome/browser/safe_browsing/
report.proto 41 // bodydigest and bodylength can be useful if the report does not
58 // bodydigest and bodylength can be useful if the report does not
91 // Whether the report has HTTP Responses.
  /external/chromium_org/chromeos/network/
network_change_notifier_chromeos.h 53 // |connection_type_changed| is set to true if we must report a connection
55 // |ip_address_changed| is set to true if we must report an IP address change.
56 // |dns_changed| is set to true if we must report a DNS config change.
  /external/chromium_org/content/test/data/media/
webrtc_test_audio.js 65 var report = reports[i];
66 if (report.names().indexOf('audioOutputLevel') != -1) {
67 audioOutputLevels.push(report.stat('audioOutputLevel'));
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Preprocessor.cpp 98 // Convert preprocessing tokens to compiler tokens or report
104 mImpl->diagnostics->report(Diagnostics::PP_INVALID_NUMBER,
108 mImpl->diagnostics->report(Diagnostics::PP_INVALID_CHARACTER,
  /external/chromium_org/third_party/skia/src/ports/
SkOSFile_win.cpp 78 //TODO: use SK_TRACEHR(GetLastError(), "Could not get file size.") to report.
87 //TODO: use SK_TRACEHR(GetLastError(), "Could not create file mapping.") to report.
94 //TODO: use SK_TRACEHR(GetLastError(), "Could not map view of file.") to report.
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 71 return report("Error opening file: " + infoFile, Diag);
80 return report("Invalid file data: '" + lines[idx+1] + "' not a number",
88 return report("File does not exist: " + fromFilename, Diag);
94 return report("File does not exist: " + toFilename, Diag);
100 return report("File was modified: " + fromFilename, Diag);
117 return report("Could not create directory: " + outputDir, Diag);
131 return report(errMsg, Diag);
153 return report("Could not create file: " + tempPath.str(), Diag);
181 return report(StringRef("File does not exist: ") + origFE->getName(),
188 return report(errMsg, Diag)
274 bool FileRemapper::report(const Twine &err, DiagnosticsEngine &Diag) { function in class:FileRemapper
    [all...]

Completed in 3918 milliseconds

1 2 3 4 5 6 7 8 91011>>