/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/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
D | statscollector.cc | 257 const StatsReport& report, in ExtractValueFromReport() argument 260 StatsReport::Values::const_iterator it = report.values.begin(); in ExtractValueFromReport() 261 for (; it != report.values.end(); ++it) { in ExtractValueFromReport() 275 StatsReport report; in CreateTrackReports() local 276 report.type = StatsReport::kStatsReportTypeTrack; in CreateTrackReports() 277 report.id = StatsId(StatsReport::kStatsReportTypeTrack, track->id()); in CreateTrackReports() 278 report.AddValue(StatsReport::kStatsValueNameTrackId, in CreateTrackReports() 280 (*reports)[report.id] = report; in CreateTrackReports() 284 void ExtractStats(const cricket::VoiceReceiverInfo& info, StatsReport* report) { in ExtractStats() argument 285 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/ceres-solver/internal/ceres/ |
D | solver.cc | 283 void StringifyOrdering(const vector<int>& ordering, string* report) { in StringifyOrdering() argument 285 internal::StringAppendF(report, "AUTOMATIC"); in StringifyOrdering() 290 internal::StringAppendF(report, "%d, ", ordering[i]); in StringifyOrdering() 292 internal::StringAppendF(report, "%d", ordering.back()); in StringifyOrdering() 404 string report = in FullReport() local 409 StringAppendF(&report, "%45s %21s\n", "Original", "Reduced"); in FullReport() 410 StringAppendF(&report, "Parameter blocks % 25d% 25d\n", in FullReport() 412 StringAppendF(&report, "Parameters % 25d% 25d\n", in FullReport() 415 StringAppendF(&report, "Effective parameters% 25d% 25d\n", in FullReport() 418 StringAppendF(&report, "Residual blocks % 25d% 25d\n", in FullReport() [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, 216 void report(const char *msg, const MachineFunction *MF, 218 void report(const char *msg, const MachineBasicBlock *MBB, 324 report("Bad instruction parent pointer", MFI); in runOnMachineFunction() 331 report("Missing BundledPred flag, " 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/fonttools/MetaTools/ |
D | roundTrip.py | 32 def roundTrip(ttFile1, options, report): argument 56 report.write("=============================================================\n") 57 report.write(" \"%s\" differs after round tripping\n" % ttFile1) 58 report.write("-------------------------------------------------------------\n") 59 report.writelines(lines) 77 report = open("report.txt", "a+") 81 roundTrip(ttFile, options, report) 88 report.write("=============================================================\n") 89 report.write(" An exception occurred while round tripping") 90 report.write(" \"%s\"\n" % ttFile) [all …]
|
/external/chromium_org/components/feedback/ |
D | feedback_common_unittest.cc | 34 userfeedback::ExtensionSubmit report; member in FeedbackCommonTest 43 feedback->PrepareReport(&report); in TEST_F() 45 EXPECT_EQ(kOne, report.bucket()); in TEST_F() 46 EXPECT_EQ(kTwo, report.common_data().description()); in TEST_F() 47 EXPECT_EQ(kThree, report.web_data().url()); in TEST_F() 48 EXPECT_EQ(kFour, report.common_data().user_email()); in TEST_F() 63 feedback->PrepareReport(&report); in TEST_F() 65 EXPECT_EQ(1, report.web_data().product_specific_data_size()); in TEST_F() 66 EXPECT_EQ(kOne, report.web_data().product_specific_data(0).key()); in TEST_F() 75 feedback->PrepareReport(&report); in TEST_F() [all …]
|
/external/chromium_org/content/browser/resources/media/ |
D | stats_graph_helper.js | 109 function drawSingleReport(peerConnectionElement, report) { argument 110 var reportType = report.type; 111 var reportId = report.id; 112 var stats = report.stats; 121 peerConnectionElement, report, stats.values[i + 1]); 173 report, 213 function drawReceivedPropagationDelta(peerConnectionElement, report, deltas) { argument 214 var reportId = report.id; 215 var stats = report.stats; 252 report, [all …]
|
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; 88 summary.textContent = report.id; 97 table.rows[0].cells[0].textContent = 'Statistics ' + report.id; 98 if (report.type == 'ssrc') { 102 table.rows[1].cells[0], GetSsrcFromReport(report));
|
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 | 67 report = [] 68 report.extend(input_api.canned_checks.PanProjectChecks( 70 return report 74 report = [] 91 report.extend(input_api.canned_checks.PanProjectChecks( 93 report.extend(input_api.canned_checks.CheckTreeIsOpen( 107 report.extend(input_api.canned_checks.RunPylint( 114 return report
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
D | DirectiveParser.cpp | 176 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in lex() 189 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in lex() 237 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, in lex() 273 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, in parseDirective() 324 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, in parseDirective() 336 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in parseDefine() 342 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in parseDefine() 348 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, in parseDefine() 375 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in parseDefine() 403 mDiagnostics->report(Diagnostics::PP_MACRO_REDEFINED, in parseDefine() [all …]
|
/external/chromium_org/chrome/common/extensions/api/ |
D | hid.idl | 51 // |data|: The content of the report. 76 // Receive an Input report from an HID device. 79 // |connectionId|: The connection from which to receive a report. 80 // |size|: The size of the Input report to receive. 81 // |callback|: The callback to invoke with received report. 86 // Send an Output report to an HID device. 88 // exists. If one does not exist, the report will be sent through the 91 // |connectionId|: The connection to which to send a report. 92 // |reportId|: The report ID to use, or <code>0</code> if none. 93 // |data|: The report data. [all …]
|
/external/chromium_org/tools/perf/ |
D | PRESUBMIT.py | 53 report = [] 54 report.extend(_CommonChecks(input_api, output_api)) 55 return report 59 report = [] 60 report.extend(_CommonChecks(input_api, output_api)) 61 return report
|
/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() 74 BugReport *report = in checkPreStmt() local 76 bugreporter::trackNullOrUndefValue(N, Ex, *report); in checkPreStmt() 78 C.emitReport(report); in checkPreStmt()
|
/external/chromium_org/device/hid/ |
D | hid_connection_linux.cc | 110 PendingHidReport report; in OnFileCanReadWithoutBlocking() local 111 report.buffer = new net::IOBufferWithSize(bytes_read); in OnFileCanReadWithoutBlocking() 112 memcpy(report.buffer->data(), buffer, bytes_read); in OnFileCanReadWithoutBlocking() 113 pending_reports_.push(report); in OnFileCanReadWithoutBlocking() 199 PendingHidReport report = pending_reports_.front(); in ProcessReadQueue() local 200 if (report.buffer->size() > read.buffer->size()) { in ProcessReadQueue() 201 read.callback.Run(false, report.buffer->size()); in ProcessReadQueue() 203 memcpy(read.buffer->data(), report.buffer->data(), report.buffer->size()); in ProcessReadQueue() 205 read.callback.Run(true, report.buffer->size()); in ProcessReadQueue()
|
D | hid_connection_mac.cc | 124 PendingHidReport report = pending_reports_.front(); in ProcessReadQueue() local 125 if (read.buffer->size() < report.buffer->size()) { in ProcessReadQueue() 126 read.callback.Run(false, report.buffer->size()); in ProcessReadQueue() 128 memcpy(read.buffer->data(), report.buffer->data(), report.buffer->size()); in ProcessReadQueue() 130 read.callback.Run(true, report.buffer->size()); in ProcessReadQueue() 139 PendingHidReport report; in ProcessInputReport() local 140 report.buffer = buffer; in ProcessInputReport() 141 pending_reports_.push(report); in ProcessInputReport()
|
/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 | 369 void report(char *in){ in report() function 402 report("out of data!\n"); in cliptest() 405 report("looked at incorrect value!\n"); in cliptest() 408 report("premature end of data when reading!\n"); in cliptest() 412 report("read incorrect value!\n"); in cliptest() 417 report("wrong number of bits while reading!\n"); in cliptest() 419 report("wrong number of bytes while reading!\n"); in cliptest() 424 report("leftover bytes after read!\n"); in cliptest() 435 report("\nERROR: too many bits reported left over.\n"); in _end_verify() 439 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 …]
|
/external/chromium_org/content/shell/renderer/ |
D | leak_detector.cc | 43 LeakDetectionResult report; in onLeakDetectionComplete() local 44 report.leaked = in onLeakDetectionComplete() 48 if (report.leaked) { in onLeakDetectionComplete() 62 report.detail = detail_str; in onLeakDetectionComplete() 66 test_runner_->ReportLeakDetectionResult(report); in onLeakDetectionComplete()
|
/external/chromium_org/components/rappor/ |
D | rappor_metric_unittest.cc | 44 const ByteVector report = metric.GetReport( in TEST() local 46 EXPECT_EQ(16u, report.size()); in TEST() 60 const ByteVector report = metric.GetReport(secret); in TEST() local 64 ByteVector from_true_reports = report; in TEST() 71 ByteVector from_false_reports = report; in TEST()
|
/external/chromium_org/third_party/webrtc/tools/loopback_test/ |
D | stat_tracker.js | 45 samplingFunctions[varName] = function (report, rowIndex) { argument 47 var record = report.namedItem(recordName); 63 pc.getStats(function (report) { argument 66 var result = report.result(); 72 samplingFunctions[v](report, rowIndex);
|