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

/art/cmdline/
H A Dcmdline_types.h775 std::string suffix = RemovePrefix(option); local
782 type_parser.Parse(suffix));
788 type_parser.Parse(suffix));
794 type_parser.Parse(suffix));
800 type_parser.Parse(suffix));
806 type_parser.Parse(suffix),
818 type_parser.Parse(suffix),
826 type_parser.Parse(suffix),
840 type_parser.Parse(suffix));
/art/runtime/
H A Dcommon_runtime_test.cc79 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix) argument
80 : ScratchFile(other.GetFilename() + suffix) {}
446 std::string suffix = host local
450 return StringPrintf("%s/framework/%s%s.jar", path.c_str(), jar_prefix.c_str(), suffix.c_str());
597 std::string CommonRuntimeTestImpl::GetCoreFileLocation(const char* suffix) { argument
598 CHECK(suffix != nullptr);
604 location = StringPrintf("%s/framework/core.%s", host_dir, suffix);
606 location = StringPrintf("/data/art-test/core.%s", suffix);
H A Ddex_file.cc1108 const char* suffix = dex_location + base_location.size(); local
1109 DCHECK(suffix[0] == 0 || suffix[0] == kMultiDexSeparator);
1112 return std::string(path.get()) + suffix;
1113 } else if (suffix[0] == 0) {
H A Dutils.cc945 bool EndsWith(const std::string& s, const char* suffix) { argument
946 size_t suffix_length = strlen(suffix);
952 return s.compare(offset, suffix_length, suffix) == 0;
H A Dclass_linker.cc3213 // For app images, the dex cache location may be a suffix of the dex file location since the
3221 // Take suffix.
5257 const char* suffix) {
5259 os << dex_file.GetClassDescriptor(dex_class_def) << suffix << ":\n";
5255 DumpClass(std::ostream& os, const DexFile& dex_file, const DexFile::ClassDef& dex_class_def, const char* suffix) argument
/art/imgdiag/
H A Dimgdiag.cc85 static bool EndsWith(const std::string& str, const std::string& suffix) { argument
86 return str.size() >= suffix.size() &&
87 str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0;
90 // Return suffix of the file path after the last /. (e.g. /foo/bar -> bar, bar -> bar)
/art/runtime/gc/space/
H A Dimage_space.cc1571 // Length of common suffix.
1593 std::string suffix = image.substr(old_prefix_length); local
1594 image_file_names->push_back(new_prefix + suffix);

Completed in 970 milliseconds