Lines Matching refs:string

74               const std::string& assembly_text,  in Driver()
75 const std::string& test_name) { in Driver()
81 std::string ref_asm_file = test_path(".ref.S"); in Driver()
85 std::string ref_obj_file = test_path(".ref.o"); in Driver()
102 std::string art_obj_file = test_path(".art.o"); in Driver()
110 std::string art_disassembly; in Driver()
113 std::string ref_disassembly; in Driver()
133 std::string FindTool(const std::string& tool_name) { in FindTool()
137 virtual std::vector<std::string> GetAssemblerCommand() { in GetAssemblerCommand()
150 virtual std::vector<std::string> GetDisassemblerCommand() { in GetDisassemblerCommand()
159 bool Assemble(const std::string& asm_file, const std::string& obj_file) { in Assemble()
160 std::vector<std::string> args = GetAssemblerCommand(); in Assemble()
162 std::string output; in Assemble()
170 bool Disassemble(const std::string& obj_file, std::string* output) { in Disassemble()
171 std::vector<std::string> args = GetDisassemblerCommand(); in Disassemble()
181 std::vector<uint8_t> ReadFile(const std::string& filename) { in ReadFile()
190 void WriteFile(const std::string& filename, const void* data, size_t size) { in WriteFile()
200 void ReadElf(const std::string& filename, /*out*/ std::vector<uint8_t>* code) { in ReadElf()
211 void WriteElf(const std::string& filename, InstructionSet isa, const std::vector<uint8_t>& code) { in WriteElf()
226 static std::string GetRootPath() { in GetRootPath()
230 return std::string(build_top) + "/"; in GetRootPath()
235 return getcwd(temp, 1024) ? std::string(temp) + "/" : std::string(""); in GetRootPath()
238 std::string Replace(const std::string& str, const std::string& from, const std::string& to) { in Replace()
239 std::string output; in Replace()
251 std::string android_data_;