Lines Matching refs:full_path
341 full_path = os.path.join(gn_utils.repo_root(), rel_path)
342 if os.path.exists(full_path):
345 with open(full_path) as f:
347 '// %s begin header: %s' % (tool_name, normalize_path(full_path)))
362 full_path = os.path.join(gn_utils.repo_root(), source_name)
363 if not os.path.exists(full_path):
365 with open(full_path) as f:
367 '// %s begin source: %s' % (tool_name, normalize_path(full_path)))
381 full_path = os.path.join(gn_utils.repo_root(), include_dir, header_name)
382 if os.path.exists(full_path):
383 with open(full_path) as f:
385 '// %s begin header: %s' % (tool_name, normalize_path(full_path)))
398 full_path = os.path.join(gn_utils.repo_root(), header_name)
399 if not os.path.exists(full_path):
403 with open(full_path) as f:
405 '// %s begin header: %s' % (tool_name, normalize_path(full_path)))