/external/doclava/test/doclava/ |
D | ApiCheckTest.java | 23 import com.google.doclava.apicheck.ApiCheck.Report; 43 Report report = apiCheck.checkApi(args); in testEquivalentApi() 50 Report report = apiCheck.checkApi(args); in testMethodReturnTypeChanged() 58 Report report = apiCheck.checkApi(args); in testMethodParameterChanged() 72 Report report = apiCheck.checkApi(args); in testConstructorParameterChanged() 85 Report report = apiCheck.checkApi(args); in testAddedClass() 93 Report report = apiCheck.checkApi(args); in testRemovedClass() 101 Report report = apiCheck.checkApi(args); in testRemovedDeprecatedClass() 109 Report report = apiCheck.checkApi(args); in testChangedSuper() 120 Report report = apiCheck.checkApi(args); in testChangedAssignableReturn() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
D | MPIBugReporter.cpp | 34 auto Report = llvm::make_unique<BugReport>(*DoubleNonblockingBugType, in reportDoubleNonblocking() local 37 Report->addRange(MPICallEvent.getSourceRange()); in reportDoubleNonblocking() 41 Report->addRange(Range); in reportDoubleNonblocking() 43 Report->addVisitor(llvm::make_unique<RequestNodeVisitor>( in reportDoubleNonblocking() 45 Report->markInteresting(RequestRegion); in reportDoubleNonblocking() 47 BReporter.emitReport(std::move(Report)); in reportDoubleNonblocking() 57 auto Report = in reportMissingWait() local 62 Report->addRange(Range); in reportMissingWait() 63 Report->addVisitor(llvm::make_unique<RequestNodeVisitor>( in reportMissingWait() 65 Report->markInteresting(RequestRegion); in reportMissingWait() [all …]
|
/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/sparkfun_edge/ |
D | audio_provider.cc | 71 error_reporter->Report("Error - configuring ADC DMA failed."); in adc_start_dma() 86 error_reporter->Report("Error - reservation of the ADC0 instance failed."); in adc_config0() 92 error_reporter->Report("Error - ADC0 power on failed."); in adc_config0() 106 error_reporter->Report("Error - configuring ADC0 failed."); in adc_config0() 117 error_reporter->Report("Error - configuring ADC Slot 2 failed."); in adc_config0() 128 error_reporter->Report("Error - configuring ADC Slot 1 failed."); in adc_config0() 141 error_reporter->Report("Error - enabling ADC0 failed."); in adc_config0() 174 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in enable_burst_mode() 176 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in enable_burst_mode() 179 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in enable_burst_mode() [all …]
|
/external/tensorflow/tensorflow/lite/experimental/micro/testing/ |
D | micro_test.h | 83 micro_test::reporter->Report( \ 87 micro_test::reporter->Report("~~~ALL TESTS PASSED~~~\n"); \ 89 micro_test::reporter->Report("~~~SOME TESTS FAILED~~~\n"); \ 95 micro_test::reporter->Report("Testing %s", #name); \ 105 micro_test::reporter->Report(#x " failed at %s:%d", __FILE__, __LINE__); \ 113 micro_test::reporter->Report(#x " == " #y " failed at %s:%d (%d vs %d)", \ 122 micro_test::reporter->Report(#x " != " #y " failed at %s:%d", __FILE__, \ 132 micro_test::reporter->Report(#x " near " #y " failed at %s:%d", \ 141 micro_test::reporter->Report(#x " > " #y " failed at %s:%d", __FILE__, \ 150 micro_test::reporter->Report(#x " < " #y " failed at %s:%d", __FILE__, \ [all …]
|
/external/pdfium/fxjs/ |
D | cjs_report.cpp | 23 pEngine->DefineObj("Report", eObjType, JSConstructor<CJS_Report, Report>, in DefineJSObjects() 28 Report::Report(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {} in Report() function in Report 30 Report::~Report() {} in ~Report() 32 CJS_Return Report::writeText(CJS_Runtime* pRuntime, in writeText() 38 CJS_Return Report::save(CJS_Runtime* pRuntime, in save()
|
D | cjs_report.h | 14 class Report : public CJS_EmbedObj { 16 explicit Report(CJS_Object* pJSObject); 17 ~Report() override; 33 JS_STATIC_METHOD(save, Report) 34 JS_STATIC_METHOD(writeText, Report);
|
/external/clang/lib/Basic/ |
D | Warnings.cpp | 39 Diags.Report(diag::warn_unknown_diag_option) in EmitUnknownDiagWarning() 80 for (unsigned Report = 0, ReportEnd = 2; Report != ReportEnd; ++Report) { in ProcessWarningOptions() local 81 bool SetDiagnostic = (Report == 0); in ProcessWarningOptions() 138 if (Report) in ProcessWarningOptions() 139 Diags.Report(diag::warn_unknown_warning_specifier) in ProcessWarningOptions() 166 if (Report) in ProcessWarningOptions() 167 Diags.Report(diag::warn_unknown_warning_specifier) in ProcessWarningOptions() 189 if (Report) { in ProcessWarningOptions() 219 if (Report) { in ProcessWarningOptions()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MacOSKeychainAPIChecker.cpp | 262 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N); in generateDeallocatorMismatchReport() local 263 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport() 264 Report->addRange(ArgExpr->getSourceRange()); in generateDeallocatorMismatchReport() 265 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport() 266 C.emitReport(std::move(Report)); in generateDeallocatorMismatchReport() 307 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N); in checkPreStmt() local 308 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(V)); in checkPreStmt() 309 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt() 310 Report->markInteresting(AS->Region); in checkPreStmt() 311 C.emitReport(std::move(Report)); in checkPreStmt() [all …]
|
D | PthreadLockChecker.cpp | 210 auto Report = llvm::make_unique<BugReport>( in ReleaseLock() local 212 Report->addRange(CE->getArg(0)->getSourceRange()); in ReleaseLock() 213 C.emitReport(std::move(Report)); in ReleaseLock() 278 auto Report = llvm::make_unique<BugReport>(*BT_destroylock, Message, N); in DestroyLock() local 279 Report->addRange(CE->getArg(0)->getSourceRange()); in DestroyLock() 280 C.emitReport(std::move(Report)); in DestroyLock() 313 auto Report = llvm::make_unique<BugReport>(*BT_initlock, Message, N); in InitLock() local 314 Report->addRange(CE->getArg(0)->getSourceRange()); in InitLock() 315 C.emitReport(std::move(Report)); in InitLock() 326 auto Report = llvm::make_unique<BugReport>( in reportUseDestroyedBug() local [all …]
|
/external/clang/unittests/Basic/ |
D | DiagnosticTest.cpp | 30 Diags.Report(diag::err_target_unknown_triple) << "unknown"; in TEST() 33 Diags.Report(diag::err_cannot_open_file) << "file" << "error"; in TEST() 37 Diags.Report(diag::warn_mt_message) << "warning"; in TEST() 57 Diags.Report(diag::err_target_unknown_triple) << "unknown"; in TEST() 60 Diags.Report(diag::err_cannot_open_file) << "file" << "error"; in TEST() 64 Diags.Report(diag::warn_mt_message) << "warning"; in TEST()
|
/external/syzkaller/pkg/report/ |
D | freebsd.go | 30 func (ctx *freebsd) Parse(output []byte) *Report { 31 rep := &Report{ 61 rep.Report = append(rep.Report, output[pos:lineEnd]...) 62 rep.Report = append(rep.Report, '\n') 76 func (ctx *freebsd) Symbolize(rep *Report) error {
|
D | fuchsia.go | 65 func (ctx *fuchsia) Parse(output []byte) *Report { 66 rep := &Report{ 111 rep.Report = append(rep.Report, line...) 112 rep.Report = append(rep.Report, '\n') 120 func (ctx *fuchsia) processPC(rep *Report, symb *symbolizer.Symbolizer, 158 rep.Report = append(rep.Report, frameLine...) 177 func (ctx *fuchsia) Symbolize(rep *Report) error {
|
D | report_test.go | 37 Report []byte member 107 test.Report = append(test.Report, s.Bytes()...) 108 test.Report = append(test.Report, '\n') 157 fmt.Fprintf(buf, "REPORT:\n%s", test.Report) 168 if title != "" && len(rep.Report) == 0 { 176 func checkReport(t *testing.T, rep *Report, test *ParseTest) { argument 177 if test.HasReport && !bytes.Equal(rep.Report, test.Report) { 178 t.Fatalf("extracted wrong report:\n%s\nwant:\n%s", rep.Report, test.Report)
|
/external/tensorflow/tensorflow/lite/ |
D | model.cc | 107 error_reporter->Report("The model is not a valid Flatbuffer file"); in VerifyAndBuildFromFile() 143 error_reporter->Report("The model is not a valid Flatbuffer buffer"); in VerifyAndBuildFromBuffer() 169 error_reporter_->Report( in CheckModelIdentifier() 259 error_reporter_->Report("Missing registration for opcode_index %d\n", in ParseNodes() 268 error_reporter_->Report("Skipping op for opcode_index %d\n", index); in ParseNodes() 277 error_reporter_->Report( in ParseNodes() 311 error_reporter_->Report( in ParseQuantization() 319 error_reporter_->Report( in ParseQuantization() 341 error_reporter_->Report( in ParseQuantization() 390 error_reporter_->Report( in ParseTensors() [all …]
|
/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/ |
D | frontend_util.cc | 36 error_reporter->Report("Failed to populate window state"); in FrontendPopulateState() 41 error_reporter->Report("Failed to populate fft state"); in FrontendPopulateState() 49 error_reporter->Report("Failed to populate filterbank state"); in FrontendPopulateState() 56 error_reporter->Report("Failed to populate noise reduction state"); in FrontendPopulateState() 66 error_reporter->Report("Failed to populate pcan gain control state"); in FrontendPopulateState() 72 error_reporter->Report("Failed to populate log scale state"); in FrontendPopulateState()
|
/external/clang/lib/Lex/ |
D | ModuleMap.cpp | 63 Diags.Report(Id[0].second, diag::err_mmap_missing_module_unqualified) in resolveModuleId() 74 Diags.Report(Id[I].second, diag::err_mmap_missing_module_qualified) in resolveModuleId() 280 Diags.Report(FilenameLoc, diag::warn_use_of_private_header_outside_module) in diagnoseHeaderInclusion() 287 Diags.Report(FilenameLoc, diag::err_undeclared_use_of_module) in diagnoseHeaderInclusion() 298 Diags.Report(FilenameLoc, diag::err_undeclared_use_of_module) in diagnoseHeaderInclusion() 304 Diags.Report(FilenameLoc, DiagID) << RequestingModule->getFullModuleName(); in diagnoseHeaderInclusion() 1172 Diags.Report(LToken.getLocation(), diag::err_invalid_string_udl); in consumeToken() 1200 Diags.Report(LToken.getLocation(), diag::err_mmap_unknown_token); in consumeToken() 1268 Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module_name); in parseModuleId() 1339 Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module); in parseModuleDecl() [all …]
|
/external/tensorflow/tensorflow/lite/experimental/micro/ |
D | micro_interpreter.cc | 55 interpreter->error_reporter()->Report(format, args); in ReportOpError() 74 error_reporter->Report("Only 1 subgraph is currently supported.\n"); in MicroInterpreter() 160 error_reporter_->Report("Invoke() called after initialization failed\n"); in Invoke() 169 error_reporter_->Report("Missing registration for opcode_index %d\n", in Invoke() 181 error_reporter_->Report("Skipping op for opcode_index %d\n", index); in Invoke() 188 error_reporter_->Report( in Invoke() 224 error_reporter_->Report("Too many inputs (%d)\n", op->inputs()->Length()); in Invoke() 237 error_reporter_->Report("Too many outputs (%d)\n", in Invoke() 264 error_reporter_->Report( in Invoke() 274 error_reporter_->Report( in Invoke() [all …]
|
D | micro_error_reporter_test.cc | 21 error_reporter->Report("Number: %d", 42); in main() 22 error_reporter->Report("Badly-formed format string %"); in main() 23 error_reporter->Report("Another % badly-formed %% format string"); in main() 24 error_reporter->Report("~~~%s~~~", "ALL TESTS PASSED"); in main()
|
/external/syzkaller/pkg/instance/ |
D | instance.go | 132 Report *report.Report member 140 Report *report.Report member 144 return err.Report.Title 210 testErr.Report = inst.reporter.Parse(output) 211 if testErr.Report != nil { 212 testErr.Title = testErr.Report.Title 214 testErr.Report = &report.Report{ 219 if err := inst.reporter.Symbolize(testErr.Report); err != nil { 283 Report: rep, 363 return &CrashError{Report: rep}
|
/external/catch2/docs/ |
D | list-of-examples.md | 13 - Report: [Catch-provided main](../examples/200-Rpt-CatchMain.cpp) 14 - Report: [TeamCity reporter](../examples/207-Rpt-TeamCityReporter.cpp) 36 - Report: [User-defined type](../examples/190-Rpt-ReportUserDefinedType.cpp) 37 - Report: [User-defined reporter](../examples/202-Rpt-UserDefinedReporter.cpp) 38 - Report: [Automake reporter](../examples/205-Rpt-AutomakeReporter.cpp) 39 - Report: [TAP reporter](../examples/206-Rpt-TapReporter.cpp) 40 - Report: [Multiple reporter](../examples/208-Rpt-MultipleReporters.cpp)
|
/external/grpc-grpc/tools/http2_interop/ |
D | http2interop_test.go | 72 defer Report(t) 84 defer Report(t) 96 defer Report(t) 107 defer Report(t) 117 defer Report(t) 127 defer Report(t) 139 defer Report(t)
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_win.cc | 59 Report("*** WARNING: Failed to initialize DbgHelp! ***\n"); in InitializeDbgHelpIfNeeded() 60 Report("*** Most likely this means that the app is already ***\n"); in InitializeDbgHelpIfNeeded() 61 Report("*** using DbgHelp, possibly with incompatible flags. ***\n"); in InitializeDbgHelpIfNeeded() 62 Report("*** Due to technical reasons, symbolization might crash ***\n"); in InitializeDbgHelpIfNeeded() 63 Report("*** or produce wrong results. ***\n"); in InitializeDbgHelpIfNeeded() 76 Report("*** WARNING: Failed to SymGetSearchPathW ***\n"); in InitializeDbgHelpIfNeeded() 86 Report("*** WARNING: Failed to getting the EXE directory ***\n"); in InitializeDbgHelpIfNeeded() 95 Report("*** WARNING: Failed to SymSetSearchPathW\n"); in InitializeDbgHelpIfNeeded()
|
/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/ |
D | main.cc | 38 error_reporter->Report( in main() 66 error_reporter->Report("Bad input tensor parameters in model"); in main() 86 error_reporter->Report("Feature generation failed"); in main() 99 error_reporter->Report("Invoke failed"); in main() 123 error_reporter->Report( in main()
|
/external/tensorflow/tensorflow/lite/core/api/ |
D | op_resolver.cc | 30 error_reporter->Report( in GetRegistrationFromOpCode() 38 error_reporter->Report( in GetRegistrationFromOpCode() 44 error_reporter->Report( in GetRegistrationFromOpCode() 51 error_reporter->Report( in GetRegistrationFromOpCode()
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.23-complete-20130614_065717 | 20 Report rate: 95.42 Hz 49 Report rate: 106.84 Hz 78 Report rate: 99.68 Hz 107 Report rate: 93.98 Hz 136 Report rate: 93.96 Hz 165 Report rate: 90.00 Hz 194 Report rate: 85.00 Hz 223 Report rate: 91.58 Hz 252 Report rate: 89.14 Hz 287 Report rate: 91.60 Hz [all …]
|