Searched refs:parsing_path (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/grpc-grpc/tools/distrib/ |
H A D | fix_build_deps.py | 226 parsing_path = None variable 230 def _get_filename(name, parsing_path): argument 233 parsing_path + "/" 234 if (parsing_path and not name.startswith("//")) 262 global parsing_path 263 assert parsing_path is not None 264 name = "//%s:%s" % (parsing_path, name) 279 (parsing_path + "/" if parsing_path else ""), 285 vendors[_get_filename(hdr, parsing_path)].append(name) 290 for line in open(_get_filename(src, parsing_path)): [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/distrib/ |
D | fix_build_deps.py | 300 parsing_path = None variable 304 def _get_filename(name, parsing_path): argument 306 (parsing_path + '/' if 307 (parsing_path and not name.startswith('//')) else ''), name) 328 global parsing_path 329 assert (parsing_path is not None) 330 name = '//%s:%s' % (parsing_path, name) 344 proto_hdr = '%s%s' % ((parsing_path + '/' if parsing_path else ''), 349 vendors[_get_filename(hdr, parsing_path)].append(name) 354 for line in open(_get_filename(src, parsing_path)): [all …]
|