Lines Matching full:m_appendix
50 SvoxSsmlParser::SvoxSsmlParser() : m_isInBreak(0), m_appendix(NULL), m_docLanguage(NULL)
70 if (m_appendix)
71 delete [] m_appendix;
360 if (!m_appendix)
362 m_appendix = new char[30];
363 m_appendix[0] = '\0';
365 strcat(m_appendix, "</pitch>");
398 if (!m_appendix)
400 m_appendix = new char[30];
401 if (!m_appendix)
406 m_appendix[0] = '\0';
408 strcat(m_appendix, "</speed>");
441 if (!m_appendix)
443 m_appendix = new char[30];
444 m_appendix[0] = '\0';
446 strcat(m_appendix, "</volume>");
528 if (m_appendix)
530 if (strlen(m_data) + strlen(m_appendix) + 1 > (size_t)m_datasize)
538 strcat(m_data, m_appendix);
539 delete [] m_appendix;
540 m_appendix = NULL;