Lines Matching refs:source_file
365 , source_file = None argument
433 cpp = self._source_file_path(source_file, source_suffix)
436 built_file = self._output_file_path(source_file, extension)
562 , source_file = 'example.cpp' argument
590 cpp = os.path.join(dir, source_file)
685 py = self._source_file_path(source_file = None, source_suffix = 'py')
721 def _source_file_path(self, source_file, source_suffix): argument
722 if source_file is None:
725 cpp = os.path.join(tempfile.gettempdir(), source_file)
728 def _output_file_path(self, source_file, extension): argument
760 def _source_file_path(self, source_file, source_suffix): argument
761 if source_file is None:
762 source_file = 'example%s%s' % (self.example_index, source_suffix)
765 cpp = os.path.join(config.dump_dir, source_file)
768 def _output_file_path(self, source_file, extension): argument