Home | History | Annotate | Download | only in py_vulcanize

Lines Matching refs:absolute_path

21   def __init__(self, toplevel_dir, absolute_path, fake_contents):
27 super(ResourceWithFakeContents, self).__init__(toplevel_dir, absolute_path)
46 def FindResourceGivenAbsolutePath(self, absolute_path):
49 if absolute_path.startswith(source_path):
59 longest_candidate, absolute_path,
60 self._file_contents.get(absolute_path, None))
63 absolute_path = None
65 absolute_path = os.path.join(script_path, relative_path)
66 if absolute_path in self._file_contents:
67 return ResourceWithFakeContents(script_path, absolute_path,
68 self._file_contents[absolute_path])