Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTextEncoding.cpp198 iconv_t ConvDesc; member in __anonf264d0e80111::TextEncodingConverterIconv::UniqueIconvT
201 operator iconv_t() const { return ConvDesc; } in operator iconv_t()
202 UniqueIconvT(iconv_t CD) : ConvDesc(CD) {} in UniqueIconvT()
204 if (ConvDesc != (iconv_t)-1) { in ~UniqueIconvT()
205 iconv_close(ConvDesc); in ~UniqueIconvT()
206 ConvDesc = (iconv_t)-1; in ~UniqueIconvT()
209 UniqueIconvT(UniqueIconvT &&Other) : ConvDesc(Other.ConvDesc) { in UniqueIconvT()
210 Other.ConvDesc = (iconv_t)-1; in UniqueIconvT()
214 ConvDesc = Other.ConvDesc; in operator =()
215 Other.ConvDesc = (iconv_t)-1; in operator =()
[all …]