Lines Matching refs:converted
596 char* converted = NULL; in convertToSvoxPitch() local
599 converted = new char[4]; in convertToSvoxPitch()
600 if (!converted) in convertToSvoxPitch()
605 strcpy(converted, SSML_PITCH_XLOW); in convertToSvoxPitch()
609 converted = new char[4]; in convertToSvoxPitch()
610 if (!converted) in convertToSvoxPitch()
615 strcpy(converted, SSML_PITCH_LOW); in convertToSvoxPitch()
619 converted = new char[4]; in convertToSvoxPitch()
620 if (!converted) in convertToSvoxPitch()
625 strcpy(converted, SSML_PITCH_MEDIUM); in convertToSvoxPitch()
629 converted = new char[4]; in convertToSvoxPitch()
630 if (!converted) in convertToSvoxPitch()
635 strcpy(converted, SSML_PITCH_MEDIUM); in convertToSvoxPitch()
639 converted = new char[4]; in convertToSvoxPitch()
640 if (!converted) in convertToSvoxPitch()
645 strcpy(converted, SSML_PITCH_HIGH); in convertToSvoxPitch()
649 converted = new char[4]; in convertToSvoxPitch()
650 if (!converted) in convertToSvoxPitch()
655 strcpy(converted, SSML_PITCH_XHIGH); in convertToSvoxPitch()
657 return converted; in convertToSvoxPitch()
666 char* converted = NULL; in convertToSvoxRate() local
669 converted = new char[4]; in convertToSvoxRate()
670 if (!converted) in convertToSvoxRate()
675 strcpy(converted, SSML_RATE_XSLOW); in convertToSvoxRate()
679 converted = new char[4]; in convertToSvoxRate()
680 if (!converted) in convertToSvoxRate()
685 strcpy(converted, SSML_RATE_SLOW); in convertToSvoxRate()
689 converted = new char[4]; in convertToSvoxRate()
690 if (!converted) in convertToSvoxRate()
695 strcpy(converted, SSML_RATE_MEDIUM); in convertToSvoxRate()
699 converted = new char[4]; in convertToSvoxRate()
700 if (!converted) in convertToSvoxRate()
705 strcpy(converted, SSML_RATE_MEDIUM); in convertToSvoxRate()
709 converted = new char[4]; in convertToSvoxRate()
710 if (!converted) in convertToSvoxRate()
715 strcpy(converted, SSML_RATE_FAST); in convertToSvoxRate()
719 converted = new char[4]; in convertToSvoxRate()
720 if (!converted) in convertToSvoxRate()
725 strcpy(converted, SSML_RATE_XFAST); in convertToSvoxRate()
727 return converted; in convertToSvoxRate()
736 char* converted = NULL; in convertToSvoxVolume() local
739 converted = new char[4]; in convertToSvoxVolume()
740 if (!converted) in convertToSvoxVolume()
745 strcpy(converted, SSML_VOLUME_SILENT); in convertToSvoxVolume()
749 converted = new char[4]; in convertToSvoxVolume()
750 if (!converted) in convertToSvoxVolume()
755 strcpy(converted, SSML_VOLUME_XLOW); in convertToSvoxVolume()
759 converted = new char[4]; in convertToSvoxVolume()
760 if (!converted) in convertToSvoxVolume()
765 strcpy(converted, SSML_VOLUME_LOW); in convertToSvoxVolume()
769 converted = new char[4]; in convertToSvoxVolume()
770 if (!converted) in convertToSvoxVolume()
775 strcpy(converted, SSML_VOLUME_MEDIUM); in convertToSvoxVolume()
779 converted = new char[4]; in convertToSvoxVolume()
780 if (!converted) in convertToSvoxVolume()
785 strcpy(converted, SSML_VOLUME_MEDIUM); in convertToSvoxVolume()
789 converted = new char[4]; in convertToSvoxVolume()
790 if (!converted) in convertToSvoxVolume()
795 strcpy(converted, SSML_VOLUME_LOUD); in convertToSvoxVolume()
799 converted = new char[4]; in convertToSvoxVolume()
800 if (!converted) in convertToSvoxVolume()
805 strcpy(converted, SSML_VOLUME_XLOUD); in convertToSvoxVolume()
807 return converted; in convertToSvoxVolume()
816 char* converted = NULL; in convertBreakStrengthToTime() local
819 converted = new char[6]; in convertBreakStrengthToTime()
820 if (!converted) in convertBreakStrengthToTime()
825 strcpy(converted, SSML_BREAK_NONE); in convertBreakStrengthToTime()
829 converted = new char[6]; in convertBreakStrengthToTime()
830 if (!converted) in convertBreakStrengthToTime()
835 strcpy(converted, SSML_BREAK_XWEAK); in convertBreakStrengthToTime()
839 converted = new char[6]; in convertBreakStrengthToTime()
840 if (!converted) in convertBreakStrengthToTime()
845 strcpy(converted, SSML_BREAK_WEAK); in convertBreakStrengthToTime()
849 converted = new char[6]; in convertBreakStrengthToTime()
850 if (!converted) in convertBreakStrengthToTime()
855 strcpy(converted, SSML_BREAK_MEDIUM); in convertBreakStrengthToTime()
859 converted = new char[6]; in convertBreakStrengthToTime()
860 if (!converted) in convertBreakStrengthToTime()
865 strcpy(converted, SSML_BREAK_STRONG); in convertBreakStrengthToTime()
869 converted = new char[6]; in convertBreakStrengthToTime()
870 if (!converted) in convertBreakStrengthToTime()
875 strcpy(converted, SSML_BREAK_XSTRONG); in convertBreakStrengthToTime()
877 return converted; in convertBreakStrengthToTime()