/external/qemu-pc-bios/vgabios/ |
BUGS | 3 Please report any bugs to <info@vruppert.de>
|
/external/valgrind/main/drd/tests/ |
pth_cond_race3.vgtest | 3 vgopts: --report-signal-unlocked=no
|
/external/doclava/test/doclava/ |
ApiCheckTest.java | 23 import com.google.doclava.apicheck.ApiCheck.Report; 43 Report report = apiCheck.checkApi(args); local 44 assertEquals(report.errors().size(), 0); 50 Report report = apiCheck.checkApi(args); local 51 assertEquals(1, report.errors().size()); 52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error()); 58 Report report = apiCheck.checkApi(args) local 72 Report report = apiCheck.checkApi(args); local 85 Report report = apiCheck.checkApi(args); local 93 Report report = apiCheck.checkApi(args); local 101 Report report = apiCheck.checkApi(args); local 109 Report report = apiCheck.checkApi(args); local 116 Report report = apiCheck.checkApi(args); local 123 Report report = apiCheck.checkApi(args); local 131 Report report = apiCheck.checkApi(args); local 139 Report report = apiCheck.checkApi(args); local 147 Report report = apiCheck.checkApi(args); local 155 Report report = apiCheck.checkApi(args); local 163 Report report = apiCheck.checkApi(args); local 171 Report report = apiCheck.checkApi(args); local 179 Report report = apiCheck.checkApi(args); local 187 Report report = apiCheck.checkApi(args); local 195 Report report = apiCheck.checkApi(args); local 203 Report report = apiCheck.checkApi(args); local 211 Report report = apiCheck.checkApi(args); local 219 Report report = apiCheck.checkApi(args); local 227 Report report = apiCheck.checkApi(args); local 235 Report report = apiCheck.checkApi(args); local 243 Report report = apiCheck.checkApi(args); local 251 Report report = apiCheck.checkApi(args); local 259 Report report = apiCheck.checkApi(args); local 267 Report report = apiCheck.checkApi(args); local 275 Report report = apiCheck.checkApi(args); local 283 Report report = apiCheck.checkApi(args); local 291 Report report = apiCheck.checkApi(args); local 298 Report report = apiCheck.checkApi(args); local 306 Report report = apiCheck.checkApi(args); local 314 Report report = apiCheck.checkApi(args); local 322 Report report = apiCheck.checkApi(args); local 330 Report report = apiCheck.checkApi(args); local 338 Report report = apiCheck.checkApi(args); local 346 Report report = apiCheck.checkApi(args); local 354 Report report = apiCheck.checkApi(args); local 362 Report report = apiCheck.checkApi(args); local 370 Report report = apiCheck.checkApi(args); local 378 Report report = apiCheck.checkApi(args); local 386 Report report = apiCheck.checkApi(args); local 394 Report report = apiCheck.checkApi(args); local 402 Report report = apiCheck.checkApi(args); local 410 Report report = apiCheck.checkApi(args); local 418 Report report = apiCheck.checkApi(args); local [all...] |
/cts/ |
CtsCoverage.mk | 34 cts-test-coverage-report := $(coverage_out)/test-coverage.html 35 cts-verifier-coverage-report := $(coverage_out)/verifier-coverage.html 36 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html 41 $(cts-test-coverage-report): PRIVATE_TEST_CASES_APKS := $(cts_coverage_test_cases_dependencies) 42 $(cts-test-coverage-report): PRIVATE_CTS_API_COVERAGE_EXE := $(cts_api_coverage_exe) 43 $(cts-test-coverage-report): PRIVATE_DEXDEPS_EXE := $(dexdeps_exe) 44 $(cts-test-coverage-report): PRIVATE_API_XML_DESC := $(api_xml_description) 45 $(cts-test-coverage-report) : $(cts_coverage_test_cases_dependencies) $(cts_api_coverage_dependencies) | $(ACP) 46 $(call generate-coverage-report,"CTS Tests API Coverage Report",\ [all...] |
/external/ceres-solver/internal/ceres/ |
solver.cc | 45 void StringifyOrdering(const vector<int>& ordering, string* report) { 47 internal::StringAppendF(report, "AUTOMATIC"); 52 internal::StringAppendF(report, "%d, ", ordering[i]); 54 internal::StringAppendF(report, "%d", ordering.back()); 130 string report = "Ceres Solver Report: "; local 134 << "return a reason. This is a Ceres error. Please report this " 136 return report + "Termination: DID_NOT_RUN, because " + error; 139 internal::StringAppendF(&report, "Iterations: %d", 141 internal::StringAppendF(&report, ", Initial cost: %e", initial_cost) 159 string report = local [all...] |
/cts/suite/audio_quality/lib/src/ |
Report.cpp | 20 #include "Report.h" 24 Report* Report::mInstance = NULL; 26 Report* Report::Instance(const char* dirName) 29 mInstance = new Report(); 34 void Report::Finalize() 41 Report::Report() 46 Report::~Report( 58 android::String8 report; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
statscollector.cc | 184 const StatsReport& report, 187 StatsReport::Values::const_iterator it = report.values.begin(); 188 for (; it != report.values.end(); ++it) { 201 // Adds an empty track report. 202 StatsReport report; local 203 report.type = StatsReport::kStatsReportTypeTrack; 204 report.id = StatsId(StatsReport::kStatsReportTypeTrack, track->id()); 205 report.AddValue(StatsReport::kStatsValueNameTrackId, 207 (*reports)[report.id] = report; 377 StatsReport* report = collector->PrepareLocalReport(ssrc, transport_id); local 493 StatsReport* report = GetOrCreateReport(StatsReport::kStatsReportTypeSsrc, local 532 StatsReport* report = GetOrCreateReport( local 568 StatsReport report; local 609 StatsReport report; local 668 StatsReport report; local 749 StatsReport* report = &reports_[StatsReport::kStatsReportVideoBweId]; local 780 StatsReport* report = NULL; local [all...] |
/external/chromium_org/tools/perf/ |
PRESUBMIT.py | 27 report = [] 28 report.extend(_CommonChecks(input_api, output_api)) 29 return report 33 report = [] 34 report.extend(_CommonChecks(input_api, output_api)) 35 return report
|
/external/llvm/utils/lit/tests/ |
.coveragerc | 10 [report]
|
/cts/suite/audio_quality/lib/include/ |
Report.h | 28 * Class to generate report 30 class Report: public FileUtil { 33 * returns static instance of Report 34 * report without dir name, for the 1st call, will only print to stdout. 37 static Report* Instance(const char* dirName = NULL); 38 // should be called before finishing to flush the report to file system 46 Report(); 47 ~Report(); 56 static Report* mInstance;
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
profile.rb | 130 report = '+' << '-' * 78 << "+\n" 131 report << '| ' << "ANTLR Rule Profile".center( 76 ) << " |\n" 132 report << '+' << '-' * 78 << "+\n" 133 report << "| Generated at #{ Time.now }".ljust( 78 ) << " |\n" 134 report << "| Profiled #{ parser_class.name }##{ top_rule }".ljust( 78 ) << " |\n" 135 report << "| Rule source generated from grammar file #{ grammar_file }".ljust( 78 ) << " |\n" 136 report << '+' << '-' * 78 << "+\n" 138 report << '| ' << "Rule Invocations".center( 76 ) << " |\n" 139 report << '+' << '-' * 68 << '+' << '-' * 9 << "+\n" 140 report << "| %-66s | %7i |\n" % [ "Total Invocations", rule_invocations 353 def report method in class:ANTLR3.Profile.Profiler [all...] |
/cts/tools/signature-tools/ |
TODO.txt | 5 Add "plugin system" to enable different loader / differ / report engines. This can be simple as register the class name of the available loaders in a property file
|
/external/bzip2/ |
words2 | 3 report any differences, something is wrong. If you can't easily
|
/external/genext2fs/ |
NEWS | 5 Please report bugs to genext2fs-devel@lists.sourceforge.net
|
/external/harfbuzz/ |
README | 3 To report bugs or post to discussion mailing list, see:
|
/external/harfbuzz_ng/src/hb-old/ |
README | 3 To report bugs or post to discussion mailing list, see:
|
/external/chromium_org/content/renderer/media/crypto/ |
key_systems_support_uma.cc | 26 void Report(); 45 void OneTimeReporter::Report() { 59 void Report(bool has_type, bool is_supported); 79 void KeySystemsSupportUMA::Reporter::Report(bool has_type, bool is_supported) { 80 call_reporter_.Report(); 82 call_with_type_reporter_.Report(); 87 support_reporter_.Report(); 89 support_with_type_reporter_.Report(); 106 reporter->Report(has_type, false); 114 reporter->Report(has_type, true) [all...] |
/external/emma/lib/ |
emma.jar | |
/external/chromium_org/net/url_request/ |
fraudulent_certificate_reporter.h | 21 // Sends a report to the report collection server containing the |ssl_info| 24 // transport security metadata when determining policy for sending the report.
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
netcap.8 | 7 \fBnetcap\fP is a program that prints out a report of process capabilities. If the application is using tcp, udp, raw, or packet family of sockets AND has any capabilities, it will be in the report. If the process has partial capabilities, it is further examined to see if it has an open-ended bounding set. If this is found to be true, a '+' symbol is added. 9 Some directories in the /proc file system are readonly by root. The program will try to access and report what it can. But if nothing comes out, try changing to the root user and re-run this program.
|
pscap.8 | 7 \fBpscap\fP is a program that prints out a report of process capabilities. If the application has any capabilities, it will be in the report with the exception of init. By giving the \-a command line option, init will be included, too. If a process is not in the report, it has dropped all capabilities. If the process has partial capabilities, it is further examined to see if it has an open-ended bounding set. If this is found to be true, a '+' symbol is added.
|
/external/chromium/chrome/browser/ui/cocoa/ |
bug_report_window_controller.h | 18 // A window controller for managing the "Report Bug" feature. Modally 19 // presents a dialog that allows the user to either file a bug report on 20 // a broken page, or go directly to Google's "Report Phishing" page and 21 // file a report there. 43 // This button must be moved when the send report button changes title. 49 // YES sends a screenshot along with the bug report. 63 // to restore if the user switches back to a regular bug report before 85 // will not send a report if the value is null. 89 // send the report of the bug or broken web site. 96 // YES if the user has selected the phishing report option [all...] |
/dalvik/tests/028-array-write/src/ |
Main.java | 7 /** whether to report times */ 13 static public void report(long start, long end) { method in class:Main 38 report(start, end); method 56 report(start, end); method
|
/dalvik/tests/050-sync-test/src/ |
ThreadDeathHandler.java | 6 * Report death-by-uncaught-exception.
|
/dalvik/tests/054-uncaught/src/ |
ThreadDeathHandler.java | 6 * Report death-by-uncaught-exception.
|