Home
last modified time | relevance | path

Searched refs:StringCharsReleaser (Results 1 – 2 of 2) sorted by relevance

/external/libtextclassifier/utils/java/
Dstring_utils.h33 class StringCharsReleaser {
35 StringCharsReleaser() : env_(nullptr) {} in StringCharsReleaser() function
37 StringCharsReleaser(JNIEnv* env, jstring jstr) : env_(env), jstr_(jstr) {} in StringCharsReleaser() function
39 StringCharsReleaser(const StringCharsReleaser& orig) = default;
42 StringCharsReleaser& operator=(const StringCharsReleaser& rhs) {
68 using ScopedStringChars = std::unique_ptr<const char, StringCharsReleaser>;
Dstring_utils.cc72 StringCharsReleaser(env, string)); in GetScopedStringChars()