< prev index next >

src/hotspot/share/utilities/stringUtils.hpp

Print this page
rev 59083 : DRAFT 8236522: NonTearable marker interface for inline classes to enforce atomicity

*** 38,45 **** --- 38,49 ---- // Returns the count of substrings that have been replaced. static int replace_no_expand(char* string, const char* from, const char* to); // Compute string similarity based on Dice's coefficient static double similarity(const char* str1, size_t len1, const char* str2, size_t len2); + + // Match a wildcarded class list to a proposed class name (in internal form). + // Commas separate multiple possible matches; stars are shell-style wildcards. + static bool class_list_match(const char* class_list, const char* class_name); }; #endif // SHARE_UTILITIES_STRINGUTILS_HPP
< prev index next >