| /src/external/bsd/ntp/dist/sntp/unity/auto/ |
| colour_reporter.rb | 11 def report(message) method
|
| /src/external/gpl3/gdb/dist/gdb/contrib/ari/ |
| gdb_ari.sh | 61 -Wall Report all problems. 62 -Wari Report problems that should be fixed in new code. 63 -WCATEGORY Report problems in the specifed category. The category 889 function report(name) { function 897 # Report it 912 report(name)
|
| /src/external/gpl3/gdb.old/dist/gdb/contrib/ari/ |
| gdb_ari.sh | 61 -Wall Report all problems. 62 -Wari Report problems that should be fixed in new code. 63 -WCATEGORY Report problems in the specifed category. The category 889 function report(name) { function 897 # Report it 912 report(name)
|
| /src/external/bsd/kyua-atf-compat/dist/ |
| atf-report.sh | 30 # \file atf-report.sh 31 # Kyua-based compatibility replacement for atf-report. 49 # Generates an HTML report. 51 # The original atf-report generates HTML reports that are made up of solely a 56 # than one HTML page), we cannot perfectly emulate atf-report. Instead, we 61 # \param output_file The name of the file to which to write the HTML report. 62 # This file will end up being a symlink to the real report. 73 kyua report-html --action="$(get_action /dev/stdin)" \ 81 # Genereates an XML report. 83 # For our compatibility purposes, we assume that the XML report is just an HTM 135 report() { function [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Analysis/plugins/SampleAnalyzer/ |
| MainCallChecker.cpp | 39 auto report = local 41 report->addRange(Callee->getSourceRange()); 42 C.emitReport(std::move(report));
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| TaintTesterChecker.cpp | 55 auto report = std::make_unique<PathSensitiveBugReport>(*BT, "tainted", N); local 56 report->addRange(E->getSourceRange()); 57 C.emitReport(std::move(report));
|
| ArrayBoundChecker.cpp | 77 // Generate a report for this bug. 78 auto report = local 81 report->addRange(LoadS->getSourceRange()); 82 C.emitReport(std::move(report));
|
| ObjCAtSyncChecker.cpp | 49 auto report = std::make_unique<PathSensitiveBugReport>( local 51 bugreporter::trackExpressionValue(N, Ex, *report); 52 C.emitReport(std::move(report)); 73 auto report = std::make_unique<PathSensitiveBugReport>( local 75 bugreporter::trackExpressionValue(N, Ex, *report); 77 C.emitReport(std::move(report));
|
| ReturnPointerRangeChecker.cpp | 86 // Generate a report for this bug. 87 auto report = local 90 report->addRange(RetE->getSourceRange()); 91 C.emitReport(std::move(report));
|
| MacOSXAPIChecker.cpp | 143 auto report = local 145 report->addRange(CE->getArg(0)->getSourceRange()); 146 C.emitReport(std::move(report));
|
| UndefResultChecker.cpp | 80 // Do not report assignments of uninitialized values inside swap functions. 174 auto report = std::make_unique<PathSensitiveBugReport>(*BT, OS.str(), N); local 176 report->addRange(Ex->getSourceRange()); 177 bugreporter::trackExpressionValue(N, Ex, *report); 180 bugreporter::trackExpressionValue(N, B, *report); 182 C.emitReport(std::move(report));
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/lib/perftest/ |
| reporter.py | 20 # Raw data that went into the report is written here. 26 """Base class of reporter to report test results in a certain format. 28 Subclass, which is specific to a report format, should overwrite 29 methods report, start and end. 40 def report(self, *args): member in class:Reporter 41 raise NotImplementedError("Abstract Method:report.") 57 """Report results in a plain text file 'perftest.log'.""" 64 def report(self, test_name, measurement_name, data_points): member in class:TextReporter
|
| testresult.py | 18 """Base class to record and report test results. 20 Method record is to record the results of test case, and report 21 method is to report the recorded results by a given reporter. 27 def report(self, reporter, name): member in class:TestResult 28 """Report the test results by reporter.""" 29 raise NotImplementedError("Abstract Method:report.") 45 def report(self, reporter, name): member in class:SingleStatisticTestResult 48 reporter.report(name, key, self.results[key])
|
| measure.py | 61 def report(self, reporter, name): member in class:Measure 62 """Report the measured results.""" 64 m.report(reporter, name) 90 def report(self, reporter, name): member in class:Measurement 91 """Report the measured data by argument reporter.""" 92 self.result.report(reporter, name + " " + self.name)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/lib/perftest/ |
| reporter.py | 20 # Raw data that went into the report is written here. 26 """Base class of reporter to report test results in a certain format. 28 Subclass, which is specific to a report format, should overwrite 29 methods report, start and end. 40 def report(self, *args): member in class:Reporter 41 raise NotImplementedError("Abstract Method:report.") 57 """Report results in a plain text file 'perftest.log'.""" 64 def report(self, test_name, measurement_name, data_points): member in class:TextReporter
|
| testresult.py | 18 """Base class to record and report test results. 20 Method record is to record the results of test case, and report 21 method is to report the recorded results by a given reporter. 27 def report(self, reporter, name): member in class:TestResult 28 """Report the test results by reporter.""" 29 raise NotImplementedError("Abstract Method:report.") 45 def report(self, reporter, name): member in class:SingleStatisticTestResult 48 reporter.report(name, key, self.results[key])
|
| measure.py | 61 def report(self, reporter, name): member in class:Measure 62 """Report the measured results.""" 64 m.report(reporter, name) 90 def report(self, reporter, name): member in class:Measurement 91 """Report the measured data by argument reporter.""" 92 self.result.report(reporter, name + " " + self.name)
|
| /src/usr.sbin/bootp/common/ |
| report.c | 1 /* $NetBSD: report.c,v 1.8 2025/12/10 21:33:03 andvar Exp $ */ 5 __RCSID("$NetBSD: report.c,v 1.8 2025/12/10 21:33:03 andvar Exp $"); 9 * report() - calls syslog 18 #include "report.h" 95 report(int priority, const char *fmt,...) function
|
| /src/bin/sleep/ |
| sleep.c | 61 static void report(const time_t, const time_t, const char *const); 204 report(ntime.tv_sec, original, msg); 210 report(const time_t remain, const time_t original, const char * const msg) function
|
| /src/crypto/external/bsd/openssl/dist/util/ |
| check-format.pl | 32 # -l | --sloppy-bodylen do not report function body length > 200 33 # -s | --sloppy-space do not report whitespace nits 34 # -c | --sloppy-comment do not report indentation of comments 42 # -h | --sloppy-hang when checking hanging indentation, do not report 47 # -e | --eol-comment report needless intermediate multiple consecutive spaces also before end-of-line comments 317 sub report { subroutine 374 report("indent = $count != $comment_indent within multi-line comment") 378 report("indent = ".($count + $tweak)." != $comment_indent at end of multi-line comment") 412 report("intra-line comment indent = $count != $ref_indent") if $in_comment == 0; 413 report("multi-line comment indent = $count != $ref_indent") if $in_comment < 0 [all...] |
| /src/external/gpl3/gcc/dist/contrib/ |
| patch_tester.sh | 183 REPORT=$TESTING/report 208 report () { function 209 echo "$@" >> $REPORT 214 report "(cat $1" 215 cat $1 >> $REPORT 216 report "tac)" 245 report "failed to update svn sources with" 246 report "svn switch -r $svn_revision $svnpath/trunk" 254 report "failed to update svn sources with [all...] |
| /src/external/gpl3/gcc.old/dist/contrib/ |
| patch_tester.sh | 183 REPORT=$TESTING/report 208 report () { function 209 echo "$@" >> $REPORT 214 report "(cat $1" 215 cat $1 >> $REPORT 216 report "tac)" 245 report "failed to update svn sources with" 246 report "svn switch -r $svn_revision $svnpath/trunk" 254 report "failed to update svn sources with [all...] |
| /src/external/lgpl2/userspace-rcu/dist/tests/utils/ |
| tap-driver.sh | 11 # This file is maintained in Automake, please report 246 function report(result, details) function 259 abort("in function report()") 275 report("ERROR", "- " error_message) 304 report(stringify_result_obj(result_obj), details) 330 # with SKIP" specification, and should report it as a particular kind 336 report("SKIP", skip_reason); 454 # We used to report an "abnormal termination" here, but some Korn 458 # prepared to handle them both. See also Austing Group report ID 592 report("#", comment) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| State.cpp | 75 DiagnosticBuilder State::report(SourceLocation Loc, diag::kind DiagId) { function in class:State 76 return getCtx().getDiagnostics().Report(Loc, DiagId);
|
| /src/external/mpl/bind/dist/ |
| configure | 5 # Report bugs to <https://gitlab.isc.org/isc-projects/bind9/-/issues/new?issuable_template=Bug>. 1505 as_fn_error $? "pwd does not report name of working directory" 1568 # Report the --help message. 1703 --enable-full-report report values of all configure options 1831 Report bugs to <https://gitlab.isc.org/isc-projects/bind9/-/issues/new?issuable_template=Bug>. 1838 # If there are subdirs, report their specific --help. 2678 #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) 2687 report (x>y, "x is %d but y is %d", x, y); 2933 # we report the set of missing files from the *first* directory i 32292 report() { function [all...] |