Lines Matching refs:filepath
31 # For a given filepath "foo/bar/baz.cpp", `add_path` outputs rows to the data table
72 (filepath, symbol, vmsize, filesize) = vals
74 # Skip any entry where the filepath or symbol starts with '['
76 if filepath.startswith("[") or symbol.startswith("["):
80 while filepath.startswith("../"):
81 filepath = filepath[3:];
84 if filepath.startswith("/"):
85 rel_path_start = filepath.find("third_party")
87 filepath = filepath[rel_path_start:]
89 print("ERROR: Unexpected absolute path:\n" + filepath)
96 add_path(filepath)
104 print("['" + symbol + "', '" + filepath + "', " + filesize + "],")