• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/

Lines Matching refs:convMem

414                                 wxMBConv *WXUNUSED_IN_UNICODE(convMem) = NULL, wxMBConv *convFile = NULL)
433 wxString str2(str.wc_str(*convMem), *convFile);
442 wxMBConv *convMem = NULL, wxMBConv *convFile = NULL)
461 OutputString(stream, str.Mid(last, i - last), convMem, convFile);
482 OutputString(stream, str.Mid(last, i - last), convMem, convFile);
495 OutputString(stream, str.Mid(last, i - last), convMem, convFile);
630 wxMBConv* convMem = wxConvCurrent;
632 wxMBConv* convMem = NULL;
651 OutputString(stream, wxString(wxT("<stylesheet")) + nameAndDescr + wxT(">"), convMem, convFile);
658 ExportStyleDefinition(stream, convMem, convFile, def, level + 1);
664 ExportStyleDefinition(stream, convMem, convFile, def, level + 1);
670 ExportStyleDefinition(stream, convMem, convFile, def, level + 1);
674 OutputString(stream, wxT("</stylesheet>"), convMem, convFile);
678 bool success = ExportXML(stream, convMem, convFile, *buffer, level);
690 bool wxRichTextXMLHandler::ExportXML(wxOutputStream& stream, wxMBConv* convMem, wxMBConv* convFile, wxRichTextObject& obj, int indent)
721 OutputString(stream, wxT("<") + objectName, convMem, convFile);
722 OutputString(stream, style + wxT(">"), convMem, convFile);
723 OutputString(stream, wxT("</text>"), convMem, convFile);
740 OutputString(stream, wxT("<") + objectName, convMem, convFile);
742 OutputString(stream, style + wxT(">"), convMem, convFile);
746 OutputString(stream, wxT("\""), convMem, convFile);
747 OutputStringEnt(stream, fragment, convMem, convFile);
748 OutputString(stream, wxT("\""), convMem, convFile);
751 OutputStringEnt(stream, fragment, convMem, convFile);
753 OutputString(stream, wxT("</text>"), convMem, convFile);
761 OutputString(stream, wxT("<symbol"), convMem, convFile);
763 OutputString(stream, style + wxT(">"), convMem, convFile);
764 OutputString(stream, wxString::Format(wxT("%d"), c), convMem, convFile);
766 OutputString(stream, wxT("</symbol>"), convMem, convFile);
779 OutputString(stream, wxT("<") + objectName, convMem, convFile);
781 OutputString(stream, style + wxT(">"), convMem, convFile);
785 OutputString(stream, wxT("\""), convMem, convFile);
786 OutputStringEnt(stream, fragment, convMem, convFile);
787 OutputString(stream, wxT("\""), convMem, convFile);
790 OutputStringEnt(stream, fragment, convMem, convFile);
805 OutputString(stream, wxT("<") + objectName, convMem, convFile);
809 OutputString(stream, style + wxT(">"), convMem, convFile);
817 OutputString(stream, wxT("<data>"), convMem, convFile);
821 OutputString(stream, wxT("</data>"), convMem, convFile);
826 OutputString(stream, wxT("<") + objectName, convMem, convFile);
837 OutputString(stream, style + wxT(">"), convMem, convFile);
844 ExportXML(stream, convMem, convFile, *child, indent+1);
852 OutputString(stream, wxT("</") + objectName + wxT(">"), convMem, convFile);
857 bool wxRichTextXMLHandler::ExportStyleDefinition(wxOutputStream& stream, wxMBConv* convMem, wxMBConv* convFile, wxRichTextStyleDefinition* def, int level)
876 OutputString(stream, wxT("<characterstyle") + baseStyleProp + descrProp + wxT(">"), convMem, convFile);
883 OutputString(stream, wxT("<style ") + style + wxT(">"), convMem, convFile);
886 OutputString(stream, wxT("</style>"), convMem, convFile);
891 OutputString(stream, wxT("</characterstyle>"), convMem, convFile);
900 OutputString(stream, wxT("<liststyle") + baseStyleProp + descrProp + wxT(">"), convMem, convFile);
907 OutputString(stream, wxT("<style ") + style + wxT(">"), convMem, convFile);
910 OutputString(stream, wxT("</style>"), convMem, convFile);
922 OutputString(stream, wxT("<style ") + levelStr + style + wxT(">"), convMem, convFile);
925 OutputString(stream, wxT("</style>"), convMem, convFile);
932 OutputString(stream, wxT("</liststyle>"), convMem, convFile);
941 OutputString(stream, wxT("<paragraphstyle") + baseStyleProp + descrProp + wxT(">"), convMem, convFile);
948 OutputString(stream, wxT("<style ") + style + wxT(">"), convMem, convFile);
951 OutputString(stream, wxT("</style>"), convMem, convFile);
956 OutputString(stream, wxT("</paragraphstyle>"), convMem, convFile);