Home | History | Annotate | Download | only in tts

Lines Matching refs:SvoxSsmlParser

50 SvoxSsmlParser::SvoxSsmlParser() : m_isInBreak(0), m_appendix(NULL), m_docLanguage(NULL)
64 SvoxSsmlParser::~SvoxSsmlParser()
76 int SvoxSsmlParser::initSuccessful()
81 int SvoxSsmlParser::parseDocument(const char* ssmldoc, int isFinal)
93 char* SvoxSsmlParser::getParsedDocument()
98 char* SvoxSsmlParser::getParsedDocumentLanguage()
103 void SvoxSsmlParser::starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes)
105 ((SvoxSsmlParser*)data)->startElement(element, attributes);
108 void SvoxSsmlParser::startElement(const XML_Char* element, const XML_Char** attributes)
483 void SvoxSsmlParser::endtagHandler(void* data, const XML_Char* element)
485 ((SvoxSsmlParser*)data)->endElement(element);
488 void SvoxSsmlParser::endElement(const XML_Char* element)
557 void SvoxSsmlParser::textHandler(void* data, const XML_Char* text, int length)
559 ((SvoxSsmlParser*)data)->textElement(text, length);
562 void SvoxSsmlParser::textElement(const XML_Char* text, int length)
594 char* SvoxSsmlParser::convertToSvoxPitch(const char* value)
664 char* SvoxSsmlParser::convertToSvoxRate(const char* value)
734 char* SvoxSsmlParser::convertToSvoxVolume(const char* value)
814 char* SvoxSsmlParser::convertBreakStrengthToTime(const char* value)
884 int SvoxSsmlParser::growDataSize(int sizeToGrow)