Searched refs:fileLine (Results 1 – 3 of 3) sorted by relevance
121 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getFileLine() local124 if (!fileLine && c->file->symtab.ctx.config.mingw) in getFileLine()125 fileLine = getFileLineDwarf(c, addr); in getFileLine()126 return fileLine; in getFileLine()139 std::pair<StringRef, uint32_t> fileLine; in getSymbolLocations() member155 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getSymbolLocations() local158 if (fileLine) in getSymbolLocations()159 locations.push_back({sym, *fileLine}); in getSymbolLocations()177 if (!loc.fileLine.first.empty()) in getSymbolLocations()178 os << loc.fileLine.first << ":" << loc.fileLine.second in getSymbolLocations()[all …]
170 if (std::optional<std::pair<std::string, unsigned>> fileLine = in getSourceLocation() local172 return createMsg(fileLine->first, fileLine->second); in getSourceLocation()
343 else if (auto fileLine = dwarf->getVariableLoc(msg.sym.getName())) in operator <<() local345 printFileLine(s, fileLine->first, fileLine->second); in operator <<()