/external/doclava/test/doclava/ |
D | ApiCheckTest.java | 43 Report report = apiCheck.checkApi(args); in testEquivalentApi() local 44 assertEquals(report.errors().size(), 0); in testEquivalentApi() 50 Report report = apiCheck.checkApi(args); in testMethodReturnTypeChanged() local 51 assertEquals(1, report.errors().size()); in testMethodReturnTypeChanged() 52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error()); in testMethodReturnTypeChanged() 58 Report report = apiCheck.checkApi(args); in testMethodParameterChanged() local 59 assertEquals(2, report.errors().size()); in testMethodParameterChanged() 61 Iterator<ErrorMessage> errors = report.errors().iterator(); in testMethodParameterChanged() 72 Report report = apiCheck.checkApi(args); in testConstructorParameterChanged() local 73 assertEquals(2, report.errors().size()); in testConstructorParameterChanged() [all …]
|
/external/ceres-solver/internal/ceres/ |
D | solver.cc | 45 void StringifyOrdering(const vector<int>& ordering, string* report) { in StringifyOrdering() argument 47 internal::StringAppendF(report, "AUTOMATIC"); in StringifyOrdering() 52 internal::StringAppendF(report, "%d, ", ordering[i]); in StringifyOrdering() 54 internal::StringAppendF(report, "%d", ordering.back()); in StringifyOrdering() 130 string report = "Ceres Solver Report: "; in BriefReport() local 136 return report + "Termination: DID_NOT_RUN, because " + error; in BriefReport() 139 internal::StringAppendF(&report, "Iterations: %d", in BriefReport() 141 internal::StringAppendF(&report, ", Initial cost: %e", initial_cost); in BriefReport() 147 internal::StringAppendF(&report, ", Final cost: %e", final_cost); in BriefReport() 150 internal::StringAppendF(&report, ", Termination: %s.", in BriefReport() [all …]
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
D | statscollector.cc | 184 const StatsReport& report, in ExtractValueFromReport() argument 187 StatsReport::Values::const_iterator it = report.values.begin(); in ExtractValueFromReport() 188 for (; it != report.values.end(); ++it) { in ExtractValueFromReport() 202 StatsReport report; in CreateTrackReports() local 203 report.type = StatsReport::kStatsReportTypeTrack; in CreateTrackReports() 204 report.id = StatsId(StatsReport::kStatsReportTypeTrack, track->id()); in CreateTrackReports() 205 report.AddValue(StatsReport::kStatsValueNameTrackId, in CreateTrackReports() 207 (*reports)[report.id] = report; in CreateTrackReports() 211 void ExtractStats(const cricket::VoiceReceiverInfo& info, StatsReport* report) { in ExtractStats() argument 212 report->AddValue(StatsReport::kStatsValueNameAudioOutputLevel, in ExtractStats() [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
D | 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 ] [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 208 void report(const char *msg, const MachineFunction *MF); 209 void report(const char *msg, const MachineBasicBlock *MBB); 210 void report(const char *msg, const MachineInstr *MI); 211 void report(const char *msg, const MachineOperand *MO, unsigned MONum); 212 void report(const char *msg, const MachineFunction *MF, 214 void report(const char *msg, const MachineBasicBlock *MBB, 318 report("Bad instruction parent pointer", MFI); in runOnMachineFunction() 325 report("Missing BundledPred flag, " in runOnMachineFunction() 328 report("BundledPred flag is set, " in runOnMachineFunction() 338 report("No bundle header", MBBI); in runOnMachineFunction() [all …]
|
/external/emma/core/res/ |
D | emma_default.properties | 16 # -Demma.report.txt.out.file=coverage.txt 63 # common report defaults: 65 report.units: instr 66 report.depth: method 67 report.columns: name,class,method,block,line 68 report.sort: +block,+name,+method,+class 69 report.metrics: method:70,block:80,line:80,class:100 72 # txt report properties: 74 report.txt.depth: all 75 report.txt.columns: class,method,block,line,name [all …]
|
/external/chromium_org/content/browser/resources/media/ |
D | stats_table.js | 35 addStatsReport: function(peerConnectionElement, report) { argument 36 var statsTable = this.ensureStatsTable_(peerConnectionElement, report); 38 if (report.stats) { 40 report.stats.timestamp, report.stats.values); 79 ensureStatsTable_: function(peerConnectionElement, report) { argument 80 var tableId = peerConnectionElement.id + '-table-' + report.id; 87 summary.textContent = report.id; 96 table.rows[0].cells[0].textContent = 'Statistics ' + report.id; 97 if (report.type == 'ssrc') { 101 table.rows[1].cells[0], GetSsrcFromReport(report));
|
D | stats_graph_helper.js | 104 function drawSingleReport(peerConnectionElement, report) { argument 105 var reportType = report.type; 106 var reportId = report.id; 107 var stats = report.stats; 158 report, 194 function ensureStatsGraphTopContainer(peerConnectionElement, report) { argument 196 report.type + '-' + report.id + '-graph-container'; 208 'Stats graphs for ' + report.id; 210 if (report.type == 'ssrc') { 214 GetSsrcFromReport(report)); [all …]
|
D | ssrc_info_manager.js | 16 function GetSsrcFromReport(report) { argument 17 if (report.type != 'ssrc') { 29 if (report.stats && report.stats.values) { 30 for (var i = 0; i < report.stats.values.length - 1; i += 2) { 31 if (report.stats.values[i] == 'ssrc') { 32 return report.stats.values[i + 1]; 36 return report.id;
|
/external/chromium_org/tools/gyp/ |
D | PRESUBMIT.py | 69 report = [] 70 report.extend(input_api.canned_checks.PanProjectChecks( 72 return report 76 report = [] 93 report.extend(input_api.canned_checks.PanProjectChecks( 95 report.extend(input_api.canned_checks.CheckTreeIsOpen( 109 report.extend(input_api.canned_checks.RunPylint( 116 return report
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
D | DirectiveParser.cpp | 175 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in lex() 188 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in lex() 236 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, in lex() 271 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, in parseDirective() 322 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, in parseDirective() 334 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in parseDefine() 340 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in parseDefine() 346 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, in parseDefine() 371 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in parseDefine() 399 mDiagnostics->report(Diagnostics::PP_MACRO_REDEFINED, in parseDefine() [all …]
|
/external/chromium_org/tools/perf/ |
D | 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/kernel-headers/original/linux/ |
D | qic117.h | 112 unused, mode, motion, report enumerator 130 /* 2*/ {"report next bit", 0x00, 0x00, report, 0, required},\ 134 /* 6*/ {"report drive status", 0x00, 0x00, report, 0, required},\ 135 /* 7*/ {"report error code", 0x01, 0x01, report, 0, required},\ 136 /* 8*/ {"report drive configuration",0x00, 0x00, report, 0, required},\ 137 /* 9*/ {"report rom version", 0x00, 0x00, report, 0, required},\ 160 /*32*/ {"report vendor id", 0x00, 0x00, report, 0, required},\ 161 /*33*/ {"report tape status", 0x04, 0x04, report, 0, ccs1},\ 165 /*37*/ {"report format segments", 0x17, 0x05, report, 0, ccs2},\
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCAtSyncChecker.cpp | 50 BugReport *report = in checkPreStmt() local 52 bugreporter::trackNullOrUndefValue(N, Ex, *report); in checkPreStmt() 53 C.emitReport(report); in checkPreStmt() 73 BugReport *report = in checkPreStmt() local 75 bugreporter::trackNullOrUndefValue(N, Ex, *report); in checkPreStmt() 77 C.emitReport(report); in checkPreStmt()
|
D | UndefResultChecker.cpp | 86 BugReport *report = new BugReport(*BT, OS.str(), N); in checkPostStmt() local 88 report->addRange(Ex->getSourceRange()); in checkPostStmt() 89 bugreporter::trackNullOrUndefValue(N, Ex, *report); in checkPostStmt() 92 bugreporter::trackNullOrUndefValue(N, B, *report); in checkPostStmt() 94 C.emitReport(report); in checkPostStmt()
|
/external/chromium_org/tools/mac/ |
D | symbolicate_crash.py | 428 def PrettyPrintReport(report): argument 430 print 'Process : ' + report.report_info['Process'] 431 print 'Version : ' + report.report_info['Version'] 432 print 'Date : ' + report.report_info['Date/Time'] 433 print 'OS Version : ' + report.report_info['OS Version'] 435 if 'Crashed Thread' in report.report_info: 436 print 'Crashed Thread : ' + report.report_info['Crashed Thread'] 438 if 'Event' in report.report_info: 439 print 'Event : ' + report.report_info['Event'] 442 for thread in report.threads: [all …]
|
/external/tremolo/Tremolo/ |
D | bitwise.c | 367 void report(char *in){ in report() function 400 report("out of data!\n"); in cliptest() 403 report("looked at incorrect value!\n"); in cliptest() 406 report("premature end of data when reading!\n"); in cliptest() 410 report("read incorrect value!\n"); in cliptest() 415 report("wrong number of bits while reading!\n"); in cliptest() 417 report("wrong number of bytes while reading!\n"); in cliptest() 422 report("leftover bytes after read!\n"); in cliptest() 433 report("\nERROR: too many bits reported left over.\n"); in _end_verify() 437 report("\nERROR: read to but not past exact end tripped EOF.\n"); in _end_verify() [all …]
|
/external/chromium_org/chrome/browser/safe_browsing/ |
D | ping_manager.cc | 71 net::URLFetcher* report = net::URLFetcher::Create( in ReportSafeBrowsingHit() local 75 report->SetLoadFlags(net::LOAD_DISABLE_CACHE); in ReportSafeBrowsingHit() 76 report->SetRequestContext(request_context_getter_.get()); in ReportSafeBrowsingHit() 78 report->SetUploadData("text/plain", post_data); in ReportSafeBrowsingHit() 79 safebrowsing_reports_.insert(report); in ReportSafeBrowsingHit() 80 report->Start(); in ReportSafeBrowsingHit() 85 const std::string& report) { in ReportMalwareDetails() argument 91 fetcher->SetUploadData("application/octet-stream", report); in ReportMalwareDetails()
|
/external/clang/tools/scan-view/ |
D | ScanView.py | 86 def __init__(self, report, reporter, parameters, server): argument 88 self.report = report 100 self.status = self.reporter.fileReport(self.report, self.parameters) 244 def load_report(self, report): argument 245 path = os.path.join(self.server.root, 'report-%s.html'%report) 283 report = self.get_scalar_field('report') 316 if report != 'None': 338 report = self.get_scalar_field('report') 339 c = self.get_report_context(report) 346 report) [all …]
|
D | Reporter.py | 109 def fileReport(self, report, parameters): argument 115 """%(report.title, report.description) 123 msg['Subject'] = 'BUG REPORT: %s'%(report.title) 130 for file in report.files: 150 def fileReport(self, report, parameters): argument 196 def fileReport(self, report, parameters): argument 210 … args = ['osascript', script, component, componentVersion, classification, personID, report.title, 211 report.description, diagnosis, config] + map(os.path.abspath, report.files)
|
/external/stlport/etc/ |
D | ChangeLog-4.0 | 22 (Thanks to Sathish T C for the report) 35 conflict (thanks to Alberto Barbati for the report) 40 …_streambuf.c : added "typename" to out-of-line functions (thanks to Michael Tsirkin for the report) 42 * README fixed to be consistent about SGI iostreams setting (thanks to Ed Brey for the report) 44 * _bitset.h : fixed SUN CC 4.2 crash with -g option (thanks to Alex Vanic for the report), 53 * config/msvc.h - addidional level 4 warnings suppressed (thanks to Ed Brey for the report) 54 * _ios.h : fixed DLL export decl for MSVC (thanks to Alberto Barbati for the report) 59 (thanks to Raphael Bossek for the report) 61 * INSTALL : added some exaples and fixed typos (thanks to Beman Dawes for the report) 65 * _messages_facets.h : added DLL export decls (thanks to John Maddock for the report) [all …]
|
/external/chromium/chrome/browser/resources/ |
D | bug_report.css | 1 .bug-report-label { 7 .bug-report-text { 11 .bug-report-dropdown { 15 .bug-report-table { 20 .bug-report-field { 26 .bug-report-fieldlabel { 31 .bug-report-button { 160 .bug-report-input {
|
/external/libogg/src/ |
D | bitwise.c | 506 void report(char *in){ in report() function 520 if(bytes!=compsize)report("wrong number of bytes!\n"); in cliptest() 523 report("wrote incorrect value!\n"); in cliptest() 529 report("out of data!\n"); in cliptest() 531 report("looked at incorrect value!\n"); in cliptest() 534 report("looked at single bit incorrect value!\n"); in cliptest() 537 report("read incorrect single bit value!\n"); in cliptest() 540 report("read incorrect value!\n"); in cliptest() 543 if(oggpack_bytes(&r)!=bytes)report("leftover bytes after read!\n"); in cliptest() 555 if(bytes!=compsize)report("wrong number of bytes!\n"); in cliptestB() [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
D | RTCStatsResponse.cpp | 55 void RTCStatsResponse::addStatistic(size_t report, String name, String value) in addStatistic() argument 57 ASSERT_WITH_SECURITY_IMPLICATION(report >= 0 && report < m_result.size()); in addStatistic() 58 m_result[report]->addStatistic(name, value); in addStatistic()
|
/external/chromium_org/content/renderer/media/ |
D | mock_peer_connection_impl.cc | 271 webrtc::StatsReport report; in GetStats() local 272 report.id = "1234"; in GetStats() 273 report.type = "ssrc"; in GetStats() 274 report.timestamp = 42; in GetStats() 278 report.values.push_back(value); in GetStats() 279 reports.push_back(report); in GetStats() 283 report.id = "nontrack"; in GetStats() 284 report.type = "generic"; in GetStats() 285 report.timestamp = 44; in GetStats() 288 report.values.push_back(value); in GetStats() [all …]
|