Lines Matching refs:location
80 local location = ("%s(%d)"):format(pp_fname, pp_lineno + offset)
81 if comments_by_location[location] == nil then
82 table.insert(comment_locations, location)
83 comments_by_location[location] = {}
86 table.insert(comments_by_location[location], trimmed_msg)
121 -- location = "file.c(18)",
135 for location, message in line:gmatch("(.+%(%d+%)): (.+)$") do
138 location = location,
233 local c_comments = c_comments_by_location[exp_message.location] or {}
250 exp_message.location, expected_message)
253 local fname = exp_message.location:match("^([^(]+)")
254 local lineno = tonumber(exp_message.location:match("%((%d+)%)$"))