Home
last modified time | relevance | path

Searched refs:report (Results 1 – 25 of 148) sorted by relevance

123456

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DFull.php51 $report, argument
56 if ($report['errors'] === 0 && $report['warnings'] === 0) {
62 if ($report['warnings'] > 0) {
77 if ($report['fixable'] > 0) {
98 $file = $report['filename'];
117 if ($report['errors'] !== 1) {
121 if ($report['warnings'] > 0) {
123 if ($report['warnings'] !== 1) {
129 if (count($report['messages']) !== 1) {
171 if ($report['fixable'] > 0) {
[all …]
H A DJunit.php48 * @param array $report Prepared report data.
56 $report, argument
61 if (count($report['messages']) === 0) {
64 $this->_tests += ($report['errors'] + $report['warnings']);
72 $out->writeAttribute('name', $report['filename']);
74 if (count($report['messages']) === 0) {
79 $out->writeAttribute('name', $report['filename']);
82 $failures = ($report['errors'] + $report['warnings']);
86 foreach ($report['messages'] as $line => $lineErrors) {
90 … $out->writeAttribute('name', $error['source'].' at '.$report['filename']." ($line:$column)");
H A DXml.php43 * @param array $report Prepared report data.
51 $report, argument
60 if ($report['errors'] === 0 && $report['warnings'] === 0) {
66 $out->writeAttribute('name', $report['filename']);
67 $out->writeAttribute('errors', $report['errors']);
68 $out->writeAttribute('warnings', $report['warnings']);
69 $out->writeAttribute('fixable', $report['fixable']);
71 foreach ($report['messages'] as $line => $lineErrors) {
H A DSummary.php57 * @param array $report Prepared report data.
65 $report, argument
71 && $report['errors'] === 0
72 && $report['warnings'] === 0
78 $this->_reportFiles[$report['filename']] = array(
79 'errors' => $report['errors'],
80 'warnings' => $report['warnings'],
81 'strlen' => strlen($report['filename']),
H A DEmacs.php43 * @param array $report Prepared report data.
51 $report, argument
56 if ($report['errors'] === 0 && $report['warnings'] === 0) {
61 foreach ($report['messages'] as $line => $lineErrors) {
70 … echo $report['filename'].':'.$line.':'.$column.': '.$type.' - '.$message.PHP_EOL;
H A DCsv.php43 * @param array $report Prepared report data.
51 $report, argument
56 if ($report['errors'] === 0 && $report['warnings'] === 0) {
61 foreach ($report['messages'] as $line => $lineErrors) {
64 $filename = str_replace('"', '\"', $report['filename']);
H A DCheckstyle.php43 * @param array $report Prepared report data.
51 $report, argument
60 if ($report['errors'] === 0 && $report['warnings'] === 0) {
66 $out->writeAttribute('name', $report['filename']);
68 foreach ($report['messages'] as $line => $lineErrors) {
H A DJson.php41 * @param array $report Prepared report data.
49 $report, argument
54 $filename = str_replace('\\', '\\\\', $report['filename']);
58 echo '"errors":'.$report['errors'].',"warnings":'.$report['warnings'].',"messages":[';
61 foreach ($report['messages'] as $line => $lineErrors) {
H A DCbf.php47 * @param array $report Prepared report data.
55 $report, argument
102 $newFilename = $report['filename'].$cliValues['phpcbf-suffix'];
106 if ($newFilename === $report['filename']) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DReporting.php156 $reportClass = $this->factory($report);
157 $report = get_class($reportClass);
211 * @param string $report Report type.
220 $report, argument
226 $reportClass = $this->factory($report);
227 $report = get_class($reportClass);
304 $report = array(
312 if ($report['errors'] === 0 && $report['warnings'] === 0) {
314 return $report;
378 $report['messages'] = $errors;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DText.php61 $report = $coverage->getReport();
79 $report->getNumTestedMethods(),
80 $report->getNumMethods()
83 $report->getNumExecutedLines(),
99 $report->getNumClassesAndTraits()
106 $report->getNumMethods(),
109 $report->getNumTestedMethods(),
110 $report->getNumMethods()
120 $report->getNumExecutedLines(),
121 $report->getNumExecutableLines()
[all …]
H A DClover.php47 $report = $coverage->getReport();
50 foreach ($report as $item) {
222 $linesOfCode = $report->getLinesOfCode();
225 $xmlMetrics->setAttribute('files', count($report));
228 $xmlMetrics->setAttribute('classes', $report->getNumClassesAndTraits());
229 $xmlMetrics->setAttribute('methods', $report->getNumMethods());
230 $xmlMetrics->setAttribute('coveredmethods', $report->getNumTestedMethods());
233 $xmlMetrics->setAttribute('statements', $report->getNumExecutableLines());
234 $xmlMetrics->setAttribute('coveredstatements', $report->getNumExecutedLines());
235 …$xmlMetrics->setAttribute('elements', $report->getNumMethods() + $report->getNumExecutableLines() …
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DFreeBusyReportTest.php107 $report = $this->server->xml->parse($reportXML, null, $rootElem);
108 $this->plugin->report($rootElem, $report);
129 $report = $this->server->xml->parse($reportXML, null, $rootElem);
130 $this->plugin->report($rootElem, $report);
151 $report = $this->server->xml->parse($reportXML, null, $rootElem);
152 $this->plugin->report($rootElem, $report);
172 $report = $this->server->xml->parse($reportXML, null, $rootElem);
173 $this->plugin->report($rootElem, $report);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php237 * @param mixed $report
241 function report($reportName, $report, $path) { function in Sabre\\CalDAV\\Plugin
432 * @param CalendarMultiGetReport $report
435 function calendarMultiGetReport($report) { argument
444 $report->hrefs
452 if ($report->expand) {
506 function calendarQueryReport($report) { argument
519 if ($report->expand) {
634 if ($report->expand) {
635 … $vObject = $vObject->expand($report->expand['start'], $report->expand['end'], $calendarTimeZone);
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php224 * @param mixed $report
227 function report($reportName, $report) { function in Sabre\\CalDAV\\Plugin
429 $report->hrefs
437 if ($report->expand) {
457 … $vObject->expand($report->expand['start'], $report->expand['end'], $timeZones[$calendarPath]);
488 function calendarQueryReport($report) { argument
501 if ($report->expand) {
562 … $vObject->expand($report->expand['start'], $report->expand['end'], $calendarTimeZone);
606 if ($report->expand) {
607 … $vObject->expand($report->expand['start'], $report->expand['end'], $calendarTimeZone);
[all …]
/plugin/dokumicrobugtracker/
H A DREADME.md8 … tracker in your wiki by displaying a small form that enable everyone to report bug and every user…
28 …play only the report form, or only the bugs list, or count the number of different status in the p…
43 **Display just the report forms for project KhtEditor :**
48 **Display all fixed bugs for project KhtEditor with a report form :**
53 **Display the number of report group by status :**
66 | 2010-08-14 | Fix bug creating first bug report |
67 | 2010-08-16 | Add report to user saying that bug is well saved (#4) |
69 | 2010-08-26 | Fix bug on the dynamic captcha, notifications, clear description area after report |
70 | 2010-08-27 | Fix bug on insert report due to deletion |
74 …form, fix multiple post occurring when displaying multiple bugs list and report in the same page. |
[all …]
H A DCHANGELOG2 Version 2010-08-14 Fix bug creating first bug report
3 Version 2010-08-16 Add report to user saying that bug is well saved (#4)
5 …sion 2010-08-26 Fix bug on the dynamic captcha, notifications, clear description area after report
6 Version 2010-08-27 Fix bug on insert report due to deletion
10 … form, fix multiple post occurring when displaying multiple bugs list and report in the same page.
11 … severity), Implement #62 (Inform user of modification on a report), Implement #64 (No report with…
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
H A DHTMLTest.php46 $report = new Facade;
47 $report->process($this->getCoverageForBankAccount(), self::$TEST_TMP_PATH);
56 $report = new Facade;
57 $report->process($this->getCoverageForFileWithIgnoredLines(), self::$TEST_TMP_PATH);
67 $report = new Facade;
68 $report->process($this->getCoverageForClassWithAnonymousFunction(), self::$TEST_TMP_PATH);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DSupportedReportSet.php56 * @param mixed $report
59 function addReport($report) { argument
61 $report = (array)$report;
63 foreach ($report as $r) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DSupportedReportSet.php56 * @param mixed $report
59 function addReport($report) { argument
61 $report = (array)$report;
63 foreach ($report as $r) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidEnterprise/
H A DDeviceReportUpdateEvent.php50 public function setReport(DeviceReport $report) argument
52 $this->report = $report;
59 return $this->report;
H A DDevice.php80 public function setReport(DeviceReport $report) argument
82 $this->report = $report;
89 return $this->report;
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php1126 * @param mixed $report
1130 function report($reportName, $report, $path) { function in Sabre\\DAVACL\\Plugin
1144 $this->expandPropertyReport($path, $report);
1148 $this->principalMatchReport($path, $report);
1288 [$report->principalProperty],
1320 if ($report->properties) {
1505 if ($report->applyToPrincipalCollectionSet) {
1512 $report->searchProperties,
1513 $report->properties,
1515 $report->test
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php193 function report($reportName, $dom) { function in Sabre\\CardDAV\\Plugin
235 function addressbookMultiGetReport($report) { argument
237 $contentType = $report->contentType;
238 $version = $report->version;
250 $report->hrefs
387 protected function addressbookQueryReport($report) { argument
402 $contentType = $report->contentType;
403 if ($report->version) {
404 $contentType .= '; version=' . $report->version;
422 if (!$this->validateFilters($blob, $report->filters, $report->test)) {
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php194 function report($reportName, $dom, $path) { function in Sabre\\CardDAV\\Plugin
236 function addressbookMultiGetReport($report) { argument
238 $contentType = $report->contentType;
239 $version = $report->version;
251 $report->hrefs
430 protected function addressbookQueryReport($report) { argument
445 $contentType = $report->contentType;
446 if ($report->version) {
465 if (!$this->validateFilters($blob, $report->filters, $report->test)) {
471 if ($report->limit && $report->limit <= count($validNodes)) {
[all …]

123456