Lines Matching refs:link_path
165 link_path = flags.url + '/' + normalized_path
167 link_path += flags.separator + line_number_str
168 return link_path
178 link_path = None
192 link_path = remove_prefix(raw_path, '/src/third_party/')
194 link_path = remove_prefix(raw_path, '/chrome_root/src_internal/')
195 link_path = link_path[len('/chrome_root'):] # remove chrome_root
197 link_path = remove_prefix(raw_path, '/chrome_root/src/')
198 link_path = link_path[len('/chrome_root'):] # remove chrome_root
202 link_path = remove_prefix(normalized_path, '/libassistant/')
204 link_path = '/src/out/Debug/gen/' + normalized_path
208 if not link_path and (raw_path.startswith('src/') or
210 link_path = '/%s' % raw_path
212 if not link_path: # can't find specific link, send a query
216 link = '%s%s%s?l=%d' % (link_base, link_add, link_path, line_number)