/third_party/node/test/report/ |
D | test-report-config.js | 7 assert.strictEqual(process.report.directory, ''); 8 process.report.directory = __dirname; 9 assert.strictEqual(process.report.directory, __dirname); 11 process.report.directory = {}; 13 assert.strictEqual(process.report.directory, __dirname); 16 assert.strictEqual(process.report.filename, ''); 17 process.report.filename = 'test-report.json'; 18 assert.strictEqual(process.report.filename, 'test-report.json'); 20 process.report.filename = {}; 22 assert.strictEqual(process.report.filename, 'test-report.json'); [all …]
|
D | test-report-worker.js | 20 const report = process.report.getReport(); 21 helper.validateContent(report); 22 assert.strictEqual(report.workers.length, 1); 23 helper.validateContent(report.workers[0]); 24 assert.strictEqual(report.workers[0].header.threadId, w.threadId); 38 const report = process.report.getReport(); 39 helper.validateContent(report); 40 assert.strictEqual(report.workers.length, 1); 41 helper.validateContent(report.workers[0]);
|
D | test-report-writereport.js | 13 process.report.directory = tmpdir.path; 25 process.report.writeReport(); 31 process.report.writeReport(new Error('test error')); 39 process.report.writeReport(error); 46 process.report.writeReport(error); 52 const file = process.report.writeReport('custom-name-1.json'); 62 const file = process.report.writeReport('custom-name-2.json', 73 process.report.filename = 'custom-name-3.json'; 74 const file = process.report.writeReport(); 76 const filename = path.join(process.report.directory, 'custom-name-3.json'); [all …]
|
D | test-report-fatal-error.js | 44 const report = reports[0]; constant 45 helper.validate(report); 50 assert.strictEqual(require(report).header.threadId, null); 74 const report = reports[0]; constant 75 helper.validate(report); 76 assert.strictEqual(require(report).header.threadId, null); 77 const lines = fs.readFileSync(report, 'utf8').split('\n').length - 1; 91 const report = reports[0]; constant 92 helper.validate(report); 93 assert.strictEqual(require(report).header.threadId, null); [all …]
|
/third_party/node/deps/npm/node_modules/npm-audit-report/ |
D | CHANGELOG.md | 6 ## [1.3.3](https://github.com/npm/npm-audit-report/compare/v1.3.2...v1.3.3) (2020-03-26) 11 ## [1.3.2](https://github.com/npm/npm-audit-report/compare/v1.3.1...v1.3.2) (2018-12-18) 16 …n ([#28](https://github.com/npm/npm-audit-report/issues/28)) ([5e27893](https://github.com/npm/npm… 17 * **security:** audit fix ([ff9faf3](https://github.com/npm/npm-audit-report/commit/ff9faf3)) 18 …e ([#34](https://github.com/npm/npm-audit-report/issues/34)) ([e2fe95b](https://github.com/npm/npm… 23 ## [1.3.1](https://github.com/npm/npm-audit-report/compare/v1.3.0...v1.3.1) (2018-07-10) 28 # [1.3.0](https://github.com/npm/npm-audit-report/compare/v1.2.1...v1.3.0) (2018-07-09) 33 * **deps:** remove object.values dependency ([2c5374a](https://github.com/npm/npm-audit-report/comm… 34 …y ([#18](https://github.com/npm/npm-audit-report/issues/18)) ([807db5a](https://github.com/npm/npm… 35 …s ([#23](https://github.com/npm/npm-audit-report/issues/23)) ([a94449f](https://github.com/npm/npm… [all …]
|
D | README.md | 1 # npm audit security report 5 …atus](https://travis-ci.org/npm/npm-audit-report.svg?branch=master)](https://travis-ci.org/npm/npm… 6 …branch/master?svg=true)](https://ci.appveyor.com/project/evilpacket/npm-audit-report/branch/master) 7 …ralls.io/repos/github/npm/npm-audit-report/badge.svg?branch=master)](https://coveralls.io/github/n… 9 The response is an object that contains an output string (the report) and a suggested exitCode. 12 report: 'string that contains the security report', 22 const Report = require('npm-audit-report') 28 console.log(result.report) 39 | withColor | `true`, `false` | `true` | indicates if some report eleme…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 244 void report(const char *msg, const MachineFunction *MF); 245 void report(const char *msg, const MachineBasicBlock *MBB); 246 void report(const char *msg, const MachineInstr *MI); 247 void report(const char *msg, const MachineOperand *MO, unsigned MONum, 358 report("Function has NoVRegs property but there are VReg operands", &MF); in verifyProperties() 415 report("Bad instruction parent pointer", &*MFI); in verify() 422 report("Missing BundledPred flag, " in verify() 426 report("BundledPred flag is set, " in verify() 437 report("No bundle header", &*MBBI); in verify() 445 report("Instruction has operand with wrong parent set", &MI); in verify() [all …]
|
/third_party/node/test/common/ |
D | report.js | 27 const report = fs.readFileSync(filepath, 'utf8'); 28 if (process.report.compact) { 29 const end = report.indexOf('\n'); 30 assert.strictEqual(end, report.length - 1); 32 validateContent(JSON.parse(report), fields); 35 function validateContent(report, fields = []) { argument 36 if (typeof report === 'string') { 38 report = JSON.parse(report); 45 _validateContent(report, fields); 48 err.stack += util.format('\n------\nFailing Report:\n%O', report); [all …]
|
/third_party/node/doc/api/ |
D | report.md | 1 # Diagnostic report 8 <!-- name=report --> 12 The report is intended for development, test and production use, to capture 15 usage etc. With the report option enabled, diagnostic reports can be triggered 19 A complete example report that was generated on an uncaught exception 28 "filename": "report.20181221.005011.8974.0.001.json", 35 "--report-uncaught-exception", 36 "/home/nodeuser/project/node/test/report/test-exception.js", 99 "at myException (/home/nodeuser/project/node/test/report/test-exception.js:9:11)", 100 "at Object.<anonymous> (/home/nodeuser/project/node/test/report/test-exception.js:12:3)", [all …]
|
/third_party/curl/lib/ |
D | mk-ca-bundle.pl | 201 sub report($@) { subroutine 301 report "SHA256 of old file: $oldhash"; 304 report "Downloading $txt ..."; 310 report "Get certdata with curl!"; 316 report "Downloaded $txt"; 319 report "Failed downloading via HTTPS with curl"; 321 report "Failed to remove '$txt': $!"; 326 report "curl lacks https support"; 330 report "curl not found"; 337 report "Falling back to HTTP"; [all …]
|
/third_party/benchmark/src/ |
D | benchmark_runner.cc | 73 BenchmarkReporter::Run report; in CreateRunReport() local 75 report.run_name = b.name(); in CreateRunReport() 76 report.family_index = b.family_index(); in CreateRunReport() 77 report.per_family_instance_index = b.per_family_instance_index(); in CreateRunReport() 78 report.error_occurred = results.has_error_; in CreateRunReport() 79 report.error_message = results.error_message_; in CreateRunReport() 80 report.report_label = results.report_label_; in CreateRunReport() 82 report.iterations = results.iterations; in CreateRunReport() 83 report.time_unit = b.time_unit(); in CreateRunReport() 84 report.threads = b.threads(); in CreateRunReport() [all …]
|
/third_party/unity/auto/ |
D | unity_test_summary.py | 15 self.report = '' 46 self.report += "\n" 47 self.report += "--------------------------\n" 48 self.report += "UNITY IGNORED TEST SUMMARY\n" 49 self.report += "--------------------------\n" 50 self.report += "\n".join(ignore_output) 53 self.report += "\n" 54 self.report += "--------------------------\n" 55 self.report += "UNITY FAILED TEST SUMMARY\n" 56 self.report += "--------------------------\n" [all …]
|
/third_party/cJSON/tests/unity/auto/ |
D | unity_test_summary.py | 15 self.report = '' 46 self.report += "\n" 47 self.report += "--------------------------\n" 48 self.report += "UNITY IGNORED TEST SUMMARY\n" 49 self.report += "--------------------------\n" 50 self.report += "\n".join(ignore_output) 53 self.report += "\n" 54 self.report += "--------------------------\n" 55 self.report += "UNITY FAILED TEST SUMMARY\n" 56 self.report += "--------------------------\n" [all …]
|
/third_party/boost/libs/geometry/doc/ |
D | compiling.qbk | 40 * 14.0 (__msvc__ 14 CTP) [/reported by develop report on March, 2015] 41 * 12.0 (__msvc__ 2013) [/reported by develop report on March, 2015] 42 * 11.0 (__msvc__ 2012) [/reported by develop report on March, 2015] 43 * 10.0 (__msvc__ 2010) [/reported by Trunk report May 8, 2011] 44 * 9.0 (__msvc__ 2008) [/reported by Trunk report May 8, 2011] 45 * 8.0 (__msvc__ 2005) [/reported by Trunk report May 8, 2011] 47 * gcc 5.0.0 [/reported by develop report on March, 2015] 48 * gcc 4.9.2 [/reported by develop report on March, 2015] 49 * gcc 4.9.0 [/reported by develop report on March, 2015] 50 * gcc 4.8.4 [/reported by develop report on March, 2015] [all …]
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | no-unused-vars-experimental.ts | 86 function report(type: string): void { 92 context.report({ 103 context.report({ 120 report('Destructured Variable'); 124 report('Class'); 128 report('Enum'); 132 report('Function'); 145 report('Import'); 149 report('Interface'); 153 report('Method'); [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
D | DirectiveParser.cpp | 183 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, block.location, in lex() 218 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, token->location, in parseDirective() 269 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, token->location, token->text); in parseDirective() 280 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in parseDefine() 285 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, token->location, in parseDefine() 291 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, token->location, token->text); in parseDefine() 301 mDiagnostics->report(Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, token->location, in parseDefine() 323 mDiagnostics->report(Diagnostics::PP_MACRO_DUPLICATE_PARAMETER_NAMES, in parseDefine() 335 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in parseDefine() 361 mDiagnostics->report(Diagnostics::PP_MACRO_REDEFINED, token->location, macro->name); in parseDefine() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | DirectiveParser.cpp | 178 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in lex() 190 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in lex() 250 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, in lex() 285 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, in parseDirective() 336 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, in parseDirective() 348 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in parseDefine() 354 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in parseDefine() 360 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, in parseDefine() 371 mDiagnostics->report(Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, token->location, in parseDefine() 391 mDiagnostics->report(Diagnostics::PP_MACRO_DUPLICATE_PARAMETER_NAMES, in parseDefine() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
D | DirectiveParser.cpp | 183 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, block.location, in lex() 218 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, token->location, in parseDirective() 269 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, token->location, token->text); in parseDirective() 280 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in parseDefine() 285 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, token->location, in parseDefine() 291 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, token->location, token->text); in parseDefine() 301 mDiagnostics->report(Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, token->location, in parseDefine() 323 mDiagnostics->report(Diagnostics::PP_MACRO_DUPLICATE_PARAMETER_NAMES, in parseDefine() 335 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in parseDefine() 361 mDiagnostics->report(Diagnostics::PP_MACRO_REDEFINED, token->location, macro->name); in parseDefine() [all …]
|
/third_party/boost/libs/test/doc/test_output/ |
D | report_format.qbk | 10 [section:report_human_readable_format Human readable report format] 12 The human readable report format is designed to produce the most human friendly description of the 15 Depending on the framework's report level the output looks like this: 22 [ [no report] 23 [On this level the framework does not produce result report at all. It make sense 42 …[On this level we report result for each test units hierarchically (each test unit is reported as … 43 report. Test cases are reported like this: 51 …ppear. If test case does not have failing assertions corresponding line in the report is not shown. 53 Test suite in addition to above lines also report these: 65 [Short report format is similar to detailed, but only reports information for master test suite] [all …]
|
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/ |
D | MigrationJobTest.java | 57 MigrationReport report = job.getMigrationReportForCountry(); in customRecipesMigration_expectMigrations() local 58 assertThat(report.getValidMigrations()).isNotEmpty(); in customRecipesMigration_expectMigrations() 69 MigrationReport report = job.getMigrationReportForCountry(); in customRecipesMigration_noRecipesFromCountry_expectNoMigrations() local 70 assertThat(report.getValidMigrations()).isEmpty(); in customRecipesMigration_noRecipesFromCountry_expectNoMigrations() 173 MigrationReport report = job.getMigrationReportForCountry(); in standardMigration_invalidNumberNoRecipe_expectNoMigration() local 174 assertThat(report.getValidUntouchedEntries()).isEmpty(); in standardMigration_invalidNumberNoRecipe_expectNoMigration() 175 assertThat(report.getUntouchedEntries().stream().map(MigrationEntry::getOriginalNumber)) in standardMigration_invalidNumberNoRecipe_expectNoMigration() 185 MigrationReport report = job.getMigrationReportForCountry(); in standardMigration_numberAlreadyValid_expectNoMigration() local 186 assertThat(report.getValidMigrations()).isEmpty(); in standardMigration_numberAlreadyValid_expectNoMigration() 187 assertThat(report.getValidUntouchedEntries().stream().map(MigrationEntry::getOriginalNumber)) in standardMigration_numberAlreadyValid_expectNoMigration() [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/ |
D | PRESUBMIT.py | 93 report = [] 94 report.extend(input_api.canned_checks.PanProjectChecks( 96 return report 100 report = [] 102 report.extend(input_api.canned_checks.PanProjectChecks( 104 report.extend(input_api.canned_checks.CheckTreeIsOpen( 118 report.extend(input_api.canned_checks.RunPylint( 125 return report
|
/third_party/libxml2/test/schematron/ |
D | zvon1.sct | 5 <report test="BBB">BBB element is present.</report> 7 <report test="@name">AAA contains attribute name.</report> 12 <report test="BBB">BBB element is present.</report> 13 <report test="@name">AAA contains attribute name.</report>
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
D | AnalyzerActivity.java | 93 StringBuffer report = new StringBuffer(); in getCommonTestReport() local 95 report.append("build.fingerprint = " + Build.FINGERPRINT + "\n"); in getCommonTestReport() 98 report.append(String.format("test.version = %s\n", pinfo.versionName)); in getCommonTestReport() 99 report.append(String.format("test.version.code = %d\n", pinfo.versionCode)); in getCommonTestReport() 102 report.append("time.millis = " + System.currentTimeMillis() + "\n"); in getCommonTestReport() 105 report.append(mAudioInputTester.actualConfiguration.dump()); in getCommonTestReport() 107 report.append(String.format("in.burst.frames = %d\n", inStream.getFramesPerBurst())); in getCommonTestReport() 108 report.append(String.format("in.xruns = %d\n", inStream.getXRunCount())); in getCommonTestReport() 111 report.append(mAudioOutTester.actualConfiguration.dump()); in getCommonTestReport() 113 report.append(String.format("out.burst.frames = %d\n", outStream.getFramesPerBurst())); in getCommonTestReport() [all …]
|
/third_party/boost/libs/smart_ptr/test/ |
D | collector_test.cpp | 19 std::size_t find_unreachable_objects(bool report); 28 void report() in report() function 69 report(); in main() 80 report(); in main() 85 report(); in main() 90 report(); in main() 95 report(); in main() 98 report(); in main()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
D | vktSampleVerifier.cpp | 459 std::ostream& report) const in verifySampleFiltered() 477 …report << "Testing at base texel " << baseTexelHi << ", " << baseTexelLo << " offset " << texelGri… in verifySampleFiltered() 499 report << "Computed weights: " << roundedWeightsHi << ", " << roundedWeightsLo << "\n"; in verifySampleFiltered() 503 report << "Ideal hi sample: " << idealSampleHiMin << " through " << idealSampleHiMax << "\n"; in verifySampleFiltered() 509 report << "Ideal lo sample: " << idealSampleLoMin << " through " << idealSampleLoMax << "\n"; in verifySampleFiltered() 516 report << "Ideal hi sample: " << idealSampleHiMin << " through " << idealSampleHiMax << "\n"; in verifySampleFiltered() 522 report << "Ideal lo sample: " << idealSampleLoMin << " through " << idealSampleLoMax << "\n"; in verifySampleFiltered() 534 report << "Testing at mipmap weight " << weight << "\n"; in verifySampleFiltered() 551 report << "Ideal sample: " << idealSampleMin << " through " << idealSampleMax << "\n"; in verifySampleFiltered() 559 report << "Failed comparison\n"; in verifySampleFiltered() [all …]
|