Searched refs:charcount (Results 1 - 8 of 8) sorted by relevance

/external/chromium/base/
H A Dsys_string_conversions_win.cc38 int charcount = MultiByteToWideChar(code_page, 0, local
40 if (charcount == 0)
44 wide.resize(charcount);
45 MultiByteToWideChar(code_page, 0, mb.data(), mb_length, &wide[0], charcount);
57 int charcount = WideCharToMultiByte(code_page, 0, wide.data(), wide_length, local
59 if (charcount == 0)
63 mb.resize(charcount);
65 &mb[0], charcount, NULL, NULL);
/external/chromium_org/base/strings/
H A Dsys_string_conversions_win.cc38 int charcount = MultiByteToWideChar(code_page, 0, local
40 if (charcount == 0)
44 wide.resize(charcount);
45 MultiByteToWideChar(code_page, 0, mb.data(), mb_length, &wide[0], charcount);
57 int charcount = WideCharToMultiByte(code_page, 0, wide.data(), wide_length, local
59 if (charcount == 0)
63 mb.resize(charcount);
65 &mb[0], charcount, NULL, NULL);
/external/chromium_org/sandbox/win/wow_helper/
H A Dwow_helper.cc35 int charcount = WideCharToMultiByte(code_page, 0, wide.c_str(), -1, local
37 if (charcount == 0)
43 WriteInto(&mb, charcount), charcount, NULL, NULL);
/external/chromium/googleurl/base/
H A Dlogging.cc204 int charcount = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, NULL, 0); local
205 if (!charcount)
207 scoped_array<wchar_t> cmdline(new wchar_t[charcount]);
208 if (!MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, cmdline.get(), charcount))
371 int charcount = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, local
373 if (charcount == 0)
377 scoped_array<char> buf(new char[charcount]);
378 WideCharToMultiByte(CP_UTF8, 0, wstr, -1, buf.get(), charcount, NULL, NULL);
/external/kernel-headers/original/linux/
H A Dkd.h14 unsigned short charcount; /* characters in font (256 or 512) */ member in struct:consolefontdesc
151 unsigned int charcount; member in struct:console_font_op
157 unsigned int charcount; member in struct:console_font
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcldutil.cc685 int charcount = 0; local
724 charcount = 0;
728 ++charcount;
733 if (charcount <= 8) {
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-linux.c4988 32 * cfd->charcount );
4997 32 * cfd->charcount );
5179 (op->width + 7) / 8 * 32 * op->charcount );
5185 (op->width + 7) / 8 * 32 * op->charcount );
6181 32 * ((struct vki_consolefontdesc *)ARG3)->charcount );
6309 (op->width + 7) / 8 * 32 * op->charcount );
/external/valgrind/main/include/vki/
H A Dvki-linux.h2114 unsigned short charcount; /* characters in font (256 or 512) */ member in struct:vki_consolefontdesc
2222 unsigned int charcount; member in struct:vki_console_font_op

Completed in 1795 milliseconds