Lines Matching refs:path
37 def add_path(path):
38 if not path in parent_map:
39 head = os.path.split(path)[0]
41 parent_map[path] = "ROOT"
44 parent_map[path] = head
45 print("['" + path + "', '" + parent_map[path] + "', 0],")
89 print("ERROR: Unexpected absolute path:\n" + filepath)
95 # Ensure that we've added intermediate nodes for all portions of this file path