Searched refs:LogRecord (Results 1 – 4 of 4) sorted by relevance
37 struct LogRecord { struct43 bool operator==(const LogRecord &a, const LogRecord &b); argument44 bool operator!=(const LogRecord &a, const LogRecord &b);84 llvm::SmallVector<LogRecord> constructClauses;
28 LLVM_YAML_IS_SEQUENCE_VECTOR(LogRecord)40 template <> struct MappingTraits<LogRecord> {41 static void mapping(IO &io, LogRecord &info) { in mapping()
22 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()
41 def filter(self, record: logging.LogRecord) -> bool: argument