Searched defs:suffix (Results 1 - 6 of 6) 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.cc971 const char* suffix = dex_location + base_location.size(); local
972 DCHECK(suffix[0] == 0 || suffix[0] == kMultiDexSeparator);
975 return std::string(path.get()) + suffix;
976 } 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;
H A Dclass_linker.cc4536 const char* suffix) {
4538 os << dex_file.GetClassDescriptor(dex_class_def) << suffix << ":\n";
4534 DumpClass(std::ostream& os, const DexFile& dex_file, const DexFile::ClassDef& dex_class_def, const char* suffix) argument
/art/compiler/dex/
H A Dmir_graph.cc874 void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) { argument
885 suffix == nullptr ? "" : suffix,

Completed in 219 milliseconds