/external/scudo/standalone/ |
D | report.cpp | 47 ScopedErrorReport Report; in reportCheckFailed() local 48 Report.append("CHECK failed @ %s:%d %s (%llu, %llu)\n", File, Line, Condition, in reportCheckFailed() 54 ScopedErrorReport Report; in reportError() local 55 Report.append("%s\n", Message); in reportError() 59 ScopedErrorReport Report; in reportInvalidFlag() local 60 Report.append("invalid value for %s option: '%s'\n", FlagType, Value); in reportInvalidFlag() 66 ScopedErrorReport Report; in reportHeaderCorruption() local 67 Report.append("corrupted chunk header at address %p\n", Ptr); in reportHeaderCorruption() 74 ScopedErrorReport Report; in reportHeaderRace() local 75 Report.append("race on chunk header at address %p\n", Ptr); in reportHeaderRace() [all …]
|
/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/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__, \ 136 micro_test::reporter->Report( \ 149 micro_test::reporter->Report( \ 159 micro_test::reporter->Report(#x " > " #y " failed at %s:%d", __FILE__, \ [all …]
|
/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/sparkfun_edge/ |
D | audio_provider.cc | 70 error_reporter->Report("Error - configuring ADC DMA failed."); in adc_start_dma() 85 error_reporter->Report("Error - reservation of the ADC0 instance failed."); in adc_config0() 91 error_reporter->Report("Error - ADC0 power on failed."); in adc_config0() 105 error_reporter->Report("Error - configuring ADC0 failed."); in adc_config0() 116 error_reporter->Report("Error - configuring ADC Slot 2 failed."); in adc_config0() 127 error_reporter->Report("Error - configuring ADC Slot 1 failed."); in adc_config0() 140 error_reporter->Report("Error - enabling ADC0 failed."); in adc_config0() 173 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in enable_burst_mode() 175 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in enable_burst_mode() 178 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in enable_burst_mode() [all …]
|
/external/tensorflow/tensorflow/lite/micro/examples/person_detection/arduino/ |
D | image_provider.cc | 67 error_reporter->Report("Attempting to start Arducam"); in InitCamera() 85 error_reporter->Report("Can't communicate with Arducam"); in InitCamera() 101 error_reporter->Report("Starting capture"); in PerformCapture() 110 error_reporter->Report("Image captured"); in PerformCapture() 121 error_reporter->Report("Reading %d bytes from Arducam", jpeg_length); in ReadData() 124 error_reporter->Report("Too many bytes in FIFO buffer (%d)", in ReadData() 129 error_reporter->Report("No data in Arducam FIFO buffer"); in ReadData() 138 error_reporter->Report("Finished reading"); in ReadData() 147 error_reporter->Report("Decoding JPEG and converting to greyscale"); in DecodeAndProcessImage() 224 error_reporter->Report("Image decoded and processed"); in DecodeAndProcessImage() [all …]
|
/external/tensorflow/tensorflow/lite/micro/examples/person_detection_experimental/arduino/ |
D | image_provider.cc | 67 error_reporter->Report("Attempting to start Arducam"); in InitCamera() 85 error_reporter->Report("Can't communicate with Arducam"); in InitCamera() 101 error_reporter->Report("Starting capture"); in PerformCapture() 110 error_reporter->Report("Image captured"); in PerformCapture() 121 error_reporter->Report("Reading %d bytes from Arducam", jpeg_length); in ReadData() 124 error_reporter->Report("Too many bytes in FIFO buffer (%d)", in ReadData() 129 error_reporter->Report("No data in Arducam FIFO buffer"); in ReadData() 138 error_reporter->Report("Finished reading"); in ReadData() 147 error_reporter->Report("Decoding JPEG and converting to greyscale"); in DecodeAndProcessImage() 227 error_reporter->Report("Image decoded and processed"); in DecodeAndProcessImage() [all …]
|
/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/tensorflow/tensorflow/lite/micro/examples/micro_speech/apollo3evb/ |
D | audio_provider.cc | 147 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in enable_burst_mode() 149 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in enable_burst_mode() 152 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in enable_burst_mode() 158 error_reporter->Report("Apollo3 operating in Burst Mode (96MHz)\n"); in enable_burst_mode() 161 error_reporter->Report("Failed to Enable Burst Mode operation\n"); in enable_burst_mode() 245 error_reporter->Report("Error - configuring PDM DMA failed."); in pdm_start_dma() 312 g_pdm_dma_error_reporter->Report("Error reading PDM0 interrupt status."); in am_pdm0_isr() 318 g_pdm_dma_error_reporter->Report("Error clearing PDM interrupt status."); in am_pdm0_isr() 373 error_reporter->Report("Error - configuring the system clock failed."); in InitAudioRecording() 383 error_reporter->Report("Error - configuring the system cache failed."); in InitAudioRecording() [all …]
|
/external/tensorflow/tensorflow/lite/micro/examples/person_detection_experimental/apollo3evb/ |
D | image_provider.cc | 90 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in boost_mode_enable() 92 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in boost_mode_enable() 96 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in boost_mode_enable() 102 error_reporter->Report("Apollo3 operating in Normal Mode (48MHz)\n"); in boost_mode_enable() 105 error_reporter->Report("Failed to Disable Burst Mode operation\n"); in boost_mode_enable() 112 error_reporter->Report("Apollo3 operating in Burst Mode (96MHz)\n"); in boost_mode_enable() 115 error_reporter->Report("Failed to Enable Burst Mode operation\n"); in boost_mode_enable() 123 error_reporter->Report("Initializing HM01B0...\n"); in InitCamera()
|
/external/tensorflow/tensorflow/lite/micro/examples/person_detection/apollo3evb/ |
D | image_provider.cc | 90 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in boost_mode_enable() 92 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in boost_mode_enable() 96 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in boost_mode_enable() 102 error_reporter->Report("Apollo3 operating in Normal Mode (48MHz)\n"); in boost_mode_enable() 105 error_reporter->Report("Failed to Disable Burst Mode operation\n"); in boost_mode_enable() 112 error_reporter->Report("Apollo3 operating in Burst Mode (96MHz)\n"); in boost_mode_enable() 115 error_reporter->Report("Failed to Enable Burst Mode operation\n"); in boost_mode_enable() 123 error_reporter->Report("Initializing HM01B0...\n"); in InitCamera()
|
/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/tensorflow/tensorflow/lite/micro/examples/person_detection/sparkfun_edge/ |
D | image_provider.cc | 90 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in burst_mode_enable() 92 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in burst_mode_enable() 96 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in burst_mode_enable() 102 error_reporter->Report("Apollo3 operating in Normal Mode (48MHz)\n"); in burst_mode_enable() 105 error_reporter->Report("Failed to Disable Burst Mode operation\n"); in burst_mode_enable() 112 error_reporter->Report("Apollo3 operating in Burst Mode (96MHz)\n"); in burst_mode_enable() 115 error_reporter->Report("Failed to Enable Burst Mode operation\n"); in burst_mode_enable() 123 error_reporter->Report("Initializing HM01B0...\n"); in InitCamera()
|
/external/tensorflow/tensorflow/lite/micro/examples/person_detection_experimental/sparkfun_edge/ |
D | image_provider.cc | 90 error_reporter->Report("Apollo3 Burst Mode is Available\n"); in burst_mode_enable() 92 error_reporter->Report("Apollo3 Burst Mode is Not Available\n"); in burst_mode_enable() 96 error_reporter->Report("Failed to Initialize for Burst Mode operation\n"); in burst_mode_enable() 102 error_reporter->Report("Apollo3 operating in Normal Mode (48MHz)\n"); in burst_mode_enable() 105 error_reporter->Report("Failed to Disable Burst Mode operation\n"); in burst_mode_enable() 112 error_reporter->Report("Apollo3 operating in Burst Mode (96MHz)\n"); in burst_mode_enable() 115 error_reporter->Report("Failed to Enable Burst Mode operation\n"); in burst_mode_enable() 123 error_reporter->Report("Initializing HM01B0...\n"); in InitCamera()
|
/external/tensorflow/tensorflow/lite/ |
D | model.cc | 103 error_reporter->Report("The model is not a valid Flatbuffer file"); in VerifyAndBuildFromFile() 139 error_reporter->Report("The model is not a valid Flatbuffer buffer"); in VerifyAndBuildFromBuffer() 181 error_reporter_->Report( in CheckModelIdentifier() 248 error_reporter_->Report( in BuildLocalIndexToRegistrationMapping() 299 error_reporter_->Report("Missing registration for opcode_index %d\n", in ParseNodes() 308 error_reporter_->Report("Skipping op for opcode_index %d\n", index); in ParseNodes() 317 error_reporter_->Report( in ParseNodes() 362 error_reporter_->Report( in ParseQuantization() 370 error_reporter_->Report( in ParseQuantization() 384 error_reporter_->Report( in ParseQuantization() [all …]
|
D | allocation.cc | 41 error_reporter_->Report("Could not open '%s'.", filename); in FileCopyAllocation() 55 error_reporter_->Report("Failed to get file size of '%s'.", filename); in FileCopyAllocation() 62 error_reporter_->Report("Malloc of buffer to hold copy of '%s' failed.", in FileCopyAllocation() 69 error_reporter_->Report("Read of '%s' failed (too few bytes read).", in FileCopyAllocation() 101 error_reporter->Report("The supplied buffer is not 4-bytes aligned"); in MemoryAllocation()
|
/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/tensorflow/tensorflow/lite/micro/examples/magic_wand/sparkfun_edge/ |
D | accelerometer_handler.cc | 120 error_reporter->Report("Failed to initialize the accelerometer. (code %d)", in SetupAccelerometer() 130 error_reporter->Report("Failed to enable FIFO buffer."); in SetupAccelerometer() 134 error_reporter->Report("Failed to clear FIFO buffer."); in SetupAccelerometer() 139 error_reporter->Report("Failed to set streaming mode."); in SetupAccelerometer() 143 error_reporter->Report("Magic starts!"); in SetupAccelerometer() 161 error_reporter->Report("Failed to get FIFO status."); in ReadAccelerometer() 182 error_reporter->Report("Failed to get raw data."); in ReadAccelerometer()
|
/external/tensorflow/tensorflow/lite/micro/ |
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/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/micro/examples/micro_speech/ |
D | main_functions.cc | 62 error_reporter->Report( in setup() 94 error_reporter->Report("AllocateTensors() failed"); in setup() 104 error_reporter->Report("Bad input tensor parameters in model"); in setup() 130 error_reporter->Report("Feature generation failed"); in loop() 148 error_reporter->Report("Invoke failed"); in loop() 161 error_reporter->Report("RecognizeCommands::ProcessLatestResults() failed"); in loop()
|
/external/tensorflow/tensorflow/lite/tools/optimize/ |
D | quantize_model.cc | 69 error_reporter->Report("Expected bias tensor shape to be 1."); in QuantizeBias() 79 error_reporter->Report( in QuantizeBias() 86 error_reporter->Report("Input tensor missing quantization information"); in QuantizeBias() 91 error_reporter->Report("Mismatch weight scale dimension: %d", in QuantizeBias() 100 error_reporter->Report( in QuantizeBias() 250 error_reporter->Report( in SetInputAndOutputTypes() 267 error_reporter->Report( in SetInputAndOutputTypes() 311 error_reporter->Report( in ApplyConstraints() 321 error_reporter->Report( in ApplyConstraints() 412 error_reporter->Report( in QuantizeOpInput() [all …]
|
/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/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) 37 - Report: [User-defined type](../examples/190-Rpt-ReportUserDefinedType.cpp) 38 - Report: [User-defined reporter](../examples/202-Rpt-UserDefinedReporter.cpp) 39 - Report: [Automake reporter](../examples/205-Rpt-AutomakeReporter.cpp) 40 - Report: [TAP reporter](../examples/206-Rpt-TapReporter.cpp) 41 - Report: [Multiple reporter](../examples/208-Rpt-MultipleReporters.cpp)
|