Home
last modified time | relevance | path

Searched refs:source_stream (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/llvm/tools/opt-viewer/
Dopt-viewer.py59 self.source_stream = io.open(existing_filename, encoding='utf-8')
61 self.source_stream = None
144 if not self.source_stream:
184 self.render_source_lines(self.source_stream, line_remarks)
/external/vulkan-validation-layers/layers/
Dgpu_validation.cpp954 std::ostringstream source_stream; in GenerateSourceMessages() local
1044source_stream << "\n" << reported_line_number << ": " << opsource_lines[opsource_index].c_str(); in GenerateSourceMessages()
1046source_stream << "Internal error: calculated source line of " << opsource_index << " for source si… in GenerateSourceMessages()
1050 source_stream << "Unable to find suitable #line directive in SPIR-V OpSource."; in GenerateSourceMessages()
1053 source_stream << "Unable to find SPIR-V OpSource."; in GenerateSourceMessages()
1056 source_msg = source_stream.str(); in GenerateSourceMessages()