Home
last modified time | relevance | path

Searched refs:LogRecord (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/examples/FlangOmpReport/
H A DFlangOmpReportVisitor.h37 struct LogRecord { struct
43 bool operator==(const LogRecord &a, const LogRecord &b); argument
44 bool operator!=(const LogRecord &a, const LogRecord &b);
84 llvm::SmallVector<LogRecord> constructClauses;
H A DFlangOmpReport.cpp28 LLVM_YAML_IS_SEQUENCE_VECTOR(LogRecord)
40 template <> struct MappingTraits<LogRecord> {
41 static void mapping(IO &io, LogRecord &info) { in mapping()
H A DFlangOmpReportVisitor.cpp22 bool operator==(const LogRecord &a, const LogRecord &b) { in operator ==()
26 bool operator!=(const LogRecord &a, const LogRecord &b) { return !(a == b); } in operator !=()
179 LogRecord r{s.file.path(), s.line, getName(*curConstruct), in PostConstructsCommon()
/llvm-project-15.0.7/llvm/utils/
H A Drevert_checker_test.py41 def filter(self, record: logging.LogRecord) -> bool: argument