/libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/ |
CharsetEncoderTest.java | 90 assertEquals(CodingErrorAction.REPORT, encoder.malformedInputAction()); 91 assertEquals(CodingErrorAction.REPORT, encoder.unmappableCharacterAction()); 111 assertEquals(CodingErrorAction.REPORT, encoder.malformedInputAction()); 112 assertEquals(CodingErrorAction.REPORT, encoder 641 encoder.onMalformedInput(CodingErrorAction.REPORT); 642 encoder.onUnmappableCharacter(CodingErrorAction.REPORT); 666 encoder.onMalformedInput(CodingErrorAction.REPORT); 667 encoder.onUnmappableCharacter(CodingErrorAction.REPORT); 844 encoder.onMalformedInput(CodingErrorAction.REPORT); 845 encoder.onUnmappableCharacter(CodingErrorAction.REPORT); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 375 report = [] 376 def hooktester(count, block_size, total_size, _report=report): 381 self.assertEqual(len(report), 1) 382 self.assertEqual(report[0][2], 0) 389 report = [] 390 def hooktester(count, block_size, total_size, _report=report): 395 self.assertEqual(len(report), 2) 396 self.assertEqual(report[0][1], 8192) 397 self.assertEqual(report[0][2], 5) 403 report = [ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 375 report = [] 376 def hooktester(count, block_size, total_size, _report=report): 381 self.assertEqual(len(report), 1) 382 self.assertEqual(report[0][2], 0) 389 report = [] 390 def hooktester(count, block_size, total_size, _report=report): 395 self.assertEqual(len(report), 2) 396 self.assertEqual(report[0][1], 8192) 397 self.assertEqual(report[0][2], 5) 403 report = [ [all...] |
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | 117 Diags.Report(diag::warn_fe_cc_log_diagnostics_failure) 144 Diags.Report(diag::warn_fe_serialized_diag_failure) 360 PP.getDiagnostics().Report(diag::err_fe_invalid_code_complete_file) 388 getPreprocessor().getDiagnostics().Report(diag::err_fe_stdout_binary); 440 getDiagnostics().Report(diag::err_unable_to_rename_temp) 479 getDiagnostics().Report(diag::err_fe_unable_to_open_output) 618 Diags.Report(diag::err_fe_error_reading) << InputFile; 629 Diags.Report(diag::err_cannot_open_file) << InputFile << ec.message(); 643 Diags.Report(diag::err_fe_error_reading_stdin); 860 ImportingInstance.getDiagnostics().Report(diag::err_module_map_temp_file [all...] |
/external/chromium/chrome/browser/ui/webui/ |
bug_report_ui.cc | 186 // The handler for Javascript messages related to the "bug report" dialog 284 localized_strings.SetString(std::string("send-report"), 388 // In case we already got the syslogs and sent the report, leave 424 // Once the report has been sent, this object has no purpose in life, delete 448 // If we're deleting the report object, cancel feedback collection first 590 LOG(ERROR) << "Bug report hasn't been intialized yet."; 634 // Get the image to send in the report. 679 // (because libcros failed to load), then send the report now. 680 // Otherwise, the report will get sent when we receive sys_info. 693 // Whether we sent the report, or if it will be sent by the Syslogs complet [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
IdempotentOperationChecker.cpp | 359 // If there are no nodes accosted with the expression, nothing to report. 382 // Select the error message and SourceRanges to report. 418 // Add a report for each ExplodedNode 420 BugReport *report = new BugReport(*BT, os.str(), *I); local 425 report->addRange(LHS->getSourceRange()); 426 FindLastStoreBRVisitor::registerStatementVarDecls(*report, LHS, false); 430 report->addRange(i->first->getRHS()->getSourceRange()); 431 FindLastStoreBRVisitor::registerStatementVarDecls(*report, RHS, false); 434 BR.emitReport(report); 611 // aborted block. This path is unreachable and we can report the error [all...] |
CallAndMessageChecker.cpp | 123 // Generate a report for this bug. 208 // Generate a report for this bug. 410 BugReport *report = new BugReport(*BT_msg_ret, os.str(), N); local 411 report->addRange(ME->getReceiverRange()); 414 bugreporter::trackNullOrUndefValue(N, receiver, *report); 416 C.emitReport(report);
|
/external/compiler-rt/lib/asan/ |
asan_rtl.cc | 40 Report("Sleeping for %d second(s)\n", flags()->sleep_before_dying); 60 Report("AddressSanitizer CHECK failed: %s:%d \"%s\" (0x%zx, 0x%zx)\n", 184 Report("Using the defaults from __asan_default_options: %s\n", 193 Report("%s: detect_leaks is not supported on this platform.\n", 200 Report("%s: detect_leaks is ignored (requires use_stack_depot).\n", 229 Report("ReserveShadowMemoryRange failed while trying to map 0x%zx bytes. " 422 Report("WARNING: ASan is ignoring requested __asan_handle_no_return: " 459 Report("Parsed ASAN_OPTIONS: %s\n", options); 521 Report("Shadow memory range interleaves with an existing memory mapping. " 566 Report("AddressSanitizer Init done\n") [all...] |
/external/qemu/hw/ |
bt-sdp.c | 853 0x75, 0x01, /* Report Size (1) */ 854 0x95, 0x08, /* Report Count (8) */ 861 0x95, 0x01, /* Report Count (1) */ 862 0x75, 0x08, /* Report Size (8) */ 864 0x95, 0x05, /* Report Count (5) */ 865 0x75, 0x01, /* Report Size (1) */ 870 0x95, 0x01, /* Report Count (1) */ 871 0x75, 0x03, /* Report Size (3) */ 873 0x95, 0x06, /* Report Count (6) */ 874 0x75, 0x08, /* Report Size (8) * [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningServiceDetails.java | 117 ApplicationErrorReport report = new ApplicationErrorReport(); local 118 report.type = ApplicationErrorReport.TYPE_RUNNING_SERVICE; 119 report.packageName = mServiceItem.mServiceInfo.packageName; 120 report.installerPackageName = mInstaller.getPackageName(); 121 report.processName = mServiceItem.mRunningService.process; 122 report.time = System.currentTimeMillis(); 123 report.systemApp = (mServiceItem.mServiceInfo.applicationInfo.flags 158 report.runningServiceInfo = info; 161 result.putExtra(Intent.EXTRA_BUG_REPORT, report); 314 detail.mReportButton.setText(com.android.internal.R.string.report); [all...] |
/frameworks/base/docs/html/guide/topics/manifest/ |
uses-sdk-element.jd | 231 <td><a href="{@docRoot}sdk/api_diff/19/changes.html" title="Diff Report">19</a></td> 237 <td><a href="{@docRoot}sdk/api_diff/18/changes.html" title="Diff Report">18</a></td> 243 <td><a href="{@docRoot}sdk/api_diff/17/changes.html" title="Diff Report">17</a></td> 249 <td><a href="{@docRoot}sdk/api_diff/16/changes.html" title="Diff Report">16</a></td> 255 <td><a href="{@docRoot}sdk/api_diff/15/changes.html" title="Diff Report">15</a></td> 261 <td><a href="{@docRoot}sdk/api_diff/14/changes.html" title="Diff Report">14</a></td> 266 <td><a href="{@docRoot}sdk/api_diff/13/changes.html" title="Diff Report">13</a></td> 272 <td><a href="{@docRoot}sdk/api_diff/12/changes.html" title="Diff Report">12</a></td> 277 <td><a href="{@docRoot}sdk/api_diff/11/changes.html" title="Diff Report">11</a></td> 282 <td><a href="{@docRoot}sdk/api_diff/10/changes.html" title="Diff Report">10</a></td [all...] |
/frameworks/compile/slang/ |
slang_rs_export_type.cpp | 104 DiagEngine->Report( 109 DiagEngine->Report( 245 DiagEngine->Report( 462 DiagEngine.Report( 469 DiagEngine.Report( 486 DiagEngine.Report( 557 DiagEngine->Report( 563 DiagEngine->Report( 770 DiagEngine->Report( [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
CtsXmlResultReporter.java | 323 CLog.w("Unable to create XML report"); 359 * Creates a report file and populates it with the report data from the completed tests. 383 Log.e(LOG_TAG, "Failed to generate report data"); 419 logResult("Created xml report file at file://%s", reportFile.getAbsolutePath()); 430 InputStream configStream = getClass().getResourceAsStream(String.format("/report/%s",
|
TestPackageResult.java | 265 * Report the given test as a failure. 278 * report performance result 291 * Report that the given test has completed.
|
/external/chromium/chrome/browser/safe_browsing/ |
protocol_manager.h | 134 // For UMA users we report to Google when a SafeBrowsing interstitial is shown 145 // malware reports. |report| is the serialized report. 146 void ReportMalwareDetails(const std::string& report); 225 // newkey, report), |client_name| and |version|. When not empty, 387 // Track outstanding SafeBrowsing report fetchers for clean up.
|
/external/chromium_org/media/cast/rtcp/ |
rtcp_receiver.cc | 198 // This will be called once per report block in the Rtcp packet. 199 // We filter out all report blocks that are not for us. 202 // We can calculate RTT if we send a send report and get a report block back. 205 // which the information in this reception report block pertains. 209 // Filter out all report blocks that are not for us.
|
/external/chromium_org/webkit/browser/fileapi/ |
sandbox_file_system_backend_delegate.cc | 621 #define REPORT(report_value) \ 633 REPORT(kOK); 636 REPORT(kInvalidSchemeError); 639 REPORT(kNotFound); 643 REPORT(kUnknownError); 646 #undef REPORT
|
/external/emma/core/java12/com/vladium/emma/report/ |
ReportProperties.java | 9 package com.vladium.emma.report; 194 // * Creates a property view specific to 'reportType' report type. 348 // [assertion: columnNames contains all columns for the report (some 349 // may get removed later by individual report generators if some debug info 468 // TODO: make this more precise (actually check the report type value string) 512 // // fall back to report type-neutral namespace:
|
/external/oprofile/ |
oprofile_android | 135 print " report [args] : generate report with specified arguments to 'opreport'" 194 elif command == 'report': 408 # Generate a short summary report. 411 print '* Failed to generate summary report.' 418 print '* Failed to generate report.'
|
/external/valgrind/main/coregrind/ |
m_libcassert.c | 219 static void report_and_quit ( const Char* report, 263 "If that doesn't help, please report this bug to: %s\n\n" 264 "In the bug report, send all the above text, the valgrind\n" 266 report); 313 static void panic ( Char* name, Char* report, Char* str, 319 report_and_quit(report, startRegs);
|
/frameworks/base/docs/html/tools/debugging/ |
systrace.jd | 55 running Android 4.1 and higher, such as the report in figure 1.</p> 57 <img src="{@docRoot}images/systrace/report.png" alt="Systrace example report" id="figure1" /> 59 <strong>Figure 1.</strong> An example {@code systrace} report on 5 seconds of process execution 152 file and you can open the report using a web browser. 204 <strong>SurfaceFlinger</strong> process in the {@code systrace} report where your application is
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
LockSupport.java | 145 * <p>This method does <em>not</em> report which of these caused the 182 * <p>This method does <em>not</em> report which of these caused the 223 * <p>This method does <em>not</em> report which of these caused the 280 * <p>This method does <em>not</em> report which of these caused the 310 * <p>This method does <em>not</em> report which of these caused the 344 * <p>This method does <em>not</em> report which of these caused the
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
DOMConfigurationImpl.java | 272 * True to report invalid characters in node names, attributes, elements, 390 report(DOMError.SEVERITY_WARNING, "cdata-sections-splitted"); 392 report(DOMError.SEVERITY_ERROR, "wf-invalid-character"); 416 report(DOMError.SEVERITY_ERROR, "wf-invalid-character"); 461 report(DOMError.SEVERITY_ERROR, "wf-invalid-character"); 483 private void report(short severity, String type) {
|
/external/chromium_org/chrome/browser/profile_resetter/ |
automatic_profile_resetter_delegate.h | 162 // Sends a feedback |report|, where |report| is supposed to be result of 164 virtual void SendFeedback(const std::string& report) const;
|
resettable_settings_snapshot.cc | 30 // Dictionary keys for feedback report. 157 void SendSettingsFeedback(const std::string& report, 171 feedback_data->set_description(report);
|