Searched defs:suffix (Results 1 - 5 of 5) sorted by relevance

/art/compiler/utils/
H A Dassembler_thumb_test.cc119 std::string suffix = subdir.substr(eabi + strlen(TOOL_PREFIX)); local
120 double version = strtod(suffix.c_str(), nullptr);
/art/runtime/
H A Dcommon_runtime_test.cc65 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix) { argument
67 filename_ += suffix;
H A Ddex_file.cc964 const char* suffix = dex_location + base_location.size(); local
965 DCHECK(suffix[0] == 0 || suffix[0] == kMultiDexSeparator);
968 return std::string(path.get()) + suffix;
969 } else if (suffix[0] == 0) {
H A Dutils.cc977 bool EndsWith(const std::string& s, const char* suffix) { argument
978 size_t suffix_length = strlen(suffix);
984 return s.compare(offset, suffix_length, suffix) == 0;
/art/compiler/dex/
H A Dmir_graph.cc872 void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) { argument
883 suffix == nullptr ? "" : suffix,

Completed in 1094 milliseconds