HomeSort by: relevance | last modified time | path
    Searched defs:SLoc (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 80 SourceLocation SLoc = Loc.getSourceLocation();
81 if (!SLoc.isInvalid()) {
83 AI.file = internal_strdup(SLoc.getFilename());
84 AI.line = SLoc.getLine();
85 AI.column = SLoc.getColumn();
143 SourceLocation SLoc = Loc.getSourceLocation();
144 if (SLoc.isInvalid())
147 RenderSourceLocation(Buffer, SLoc.getFilename(), SLoc.getLine(),
148 SLoc.getColumn(), common_flags()->symbolize_vs_style
    [all...]
ubsan_handlers.cc 27 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
37 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
398 SourceLocation SLoc = Data->Loc.acquire();
399 if (ignoreReport(SLoc, Opts, ET))
401 Loc = SLoc;

Completed in 13 milliseconds