Lines Matching refs:unicode
2169 WCHAR* unicode = new WCHAR[unicode_length + 1]; in AnsiToUtf16() local
2171 unicode, unicode_length); in AnsiToUtf16()
2172 unicode[unicode_length] = 0; in AnsiToUtf16()
2173 return unicode; in AnsiToUtf16()
7632 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); in FileOrDirectoryExists() local
7633 const DWORD attributes = GetFileAttributes(unicode); in FileOrDirectoryExists()
7634 delete [] unicode; in FileOrDirectoryExists()
7656 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); in DirectoryExists() local
7657 const DWORD attributes = GetFileAttributes(unicode); in DirectoryExists()
7658 delete [] unicode; in DirectoryExists()
7749 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); in CreateFolder() local
7750 int result = CreateDirectory(unicode, NULL) ? 0 : -1; in CreateFolder()
7751 delete [] unicode; in CreateFolder()