Searched refs:char_count (Results 1 – 6 of 6) sorted by relevance
| /GUIX-v6.2.1/guix_studio/ |
| D | gx_studio_font_util.cpp | 675 int char_count; in MakeFontPage() local 697 char_count = lastchar - firstchar + 1; in MakeFontPage() 712 compressed_glyph_array = new GX_COMPRESSED_GLYPH[char_count]; in MakeFontPage() 713 memset(compressed_glyph_array, 0, char_count * sizeof(GX_COMPRESSED_GLYPH)); in MakeFontPage() 723 kerning_glyph_array = new GX_KERNING_GLYPH[char_count]; in MakeFontPage() 724 memset(kerning_glyph_array, 0, char_count * sizeof(GX_KERNING_GLYPH)); in MakeFontPage() 732 glyph_array = new GX_GLYPH[char_count]; in MakeFontPage() 733 memset(glyph_array, 0, char_count * sizeof(GX_GLYPH)); in MakeFontPage() 739 glyph_array = new GX_GLYPH[char_count]; in MakeFontPage() 740 memset(glyph_array, 0, char_count * sizeof(GX_GLYPH)); in MakeFontPage() [all …]
|
| D | xml_writer.cpp | 254 int char_count = _tcslen(str) * 6 + 1; in StringToFile() local 255 char *utf8buf = new char[char_count]; in StringToFile() 256 strcpy_s(utf8buf, char_count, CT2A(str, CP_UTF8)); in StringToFile()
|
| D | csv_read_write.cpp | 229 int char_count = _tcslen(string) * 6 + 1; in WriteString() local 230 char *utf8buf = new char[char_count]; in WriteString() 231 strcpy_s(utf8buf, char_count, CT2A(string, CP_UTF8)); in WriteString()
|
| D | widget_service_provider.cpp | 313 int char_count = val.GetLength(); in GetStringText() local 315 if (char_count) in GetStringText() 318 int buffer_size = char_count * 6 + 1; in GetStringText() 850 int char_count; in CalculateTextFitSize() local 854 char_count = string.GetLength() * 6 + 1; in CalculateTextFitSize() 855 utf8buf = new char[char_count]; in CalculateTextFitSize() 856 strcpy_s(utf8buf, char_count, CT2A(string.GetString(), CP_UTF8)); in CalculateTextFitSize()
|
| D | string_table_edit_dlg.cpp | 34 int char_count; in GetUtf8Text() local 36 char_count = edit->GetTextLength(); in GetUtf8Text() 38 if (char_count) in GetUtf8Text() 40 char_count++; in GetUtf8Text() 41 mybuf = new wchar_t[char_count]; in GetUtf8Text() 42 gte.cb = char_count * 2; in GetUtf8Text() 50 char *utf8buf = new char[char_count * 6]; in GetUtf8Text() 51 WideCharToMultiByte(CP_UTF8, 0, mybuf, -1, utf8buf, char_count * 6, NULL, NULL); in GetUtf8Text()
|
| D | resource_item.cpp | 387 int char_count = mpRes->name.GetLength() * 6 + 1; in MakeFontPreview() local 388 char *utf8buf = new char[char_count]; in MakeFontPreview() 391 … WideCharToMultiByte(CP_UTF8, 0, mpRes->name.GetString(), -1, utf8buf, char_count, NULL, NULL); in MakeFontPreview()
|