Home | History | Annotate | Download | only in ubsan

Lines Matching defs:AI

77       AddressInfo AI;
78 AI.file = internal_strdup(SLoc.getFilename());
79 AI.line = SLoc.getLine();
80 AI.column = SLoc.getColumn();
81 AI.function = internal_strdup(""); // Avoid printing ?? as function name.
82 ReportErrorSummary(ErrorKind, AI);
83 AI.Clear();
87 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
88 ReportErrorSummary(ErrorKind, AI);
423 const AddressInfo &AI = Stack.get()->info;
424 return suppression_ctx->Match(AI.function, SuppType, &s) ||
425 suppression_ctx->Match(AI.file, SuppType, &s);