Lines Matching defs:text
64 std::string RunPass(const std::string& text) {
65 context_ = spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_2, consumer_, text);
78 // Disassembles |binary| and outputs the result in |text|. If |text| is a
81 std::string* text) {
82 if (!text) return SPV_ERROR_INVALID_POINTER;
83 return tools_.Disassemble(binary, text, disassemble_options_)
95 std::string text;
96 Disassemble(binary, &text);
97 return text;
103 std::string text;
104 Disassemble(binary, &text);
105 return text;