• Home
  • Raw
  • Download

Lines Matching refs:strcmp

110     if (strcmp(element, "speak") == 0)  in startElement()
129 if (strcmp(attributes[i], "xml:lang") == 0) in startElement()
140 else if (strcmp(element, "p") == 0) /* currently no attributes are supported for <p> */ in startElement()
152 else if (strcmp(element, "s") == 0) /* currently no attributes are supported for <s> */ in startElement()
164 else if (strcmp(element, "phoneme") == 0) /* only ipa and xsampa alphabets are supported */ in startElement()
175 if (strcmp(attributes[i], "alphabet") == 0) in startElement()
177 if (strcmp(attributes[i+1], "xsampa") == 0) in startElement()
182 if (strcmp(attributes[i], "ph") == 0) in startElement()
270 else if (strcmp(element, "break") == 0) in startElement()
285 if (strcmp(attributes[i], "time") == 0) in startElement()
295 else if (strcmp(attributes[i], "strength") == 0 && !time) in startElement()
322 …else if (strcmp(element, "prosody") == 0) /* only pitch, rate and volume attributes are supported … in startElement()
326 if (strcmp(attributes[i], "pitch") == 0) in startElement()
369 else if (strcmp(attributes[i], "rate") == 0) in startElement()
412 else if (strcmp(attributes[i], "volume") == 0) in startElement()
452 else if (strcmp(element, "audio") == 0) /* only 16kHz 16bit wav files are supported as src */ in startElement()
466 if (strcmp(attributes[i], "src") == 0) in startElement()
490 if (strcmp(element, "speak") == 0) in endElement()
494 else if (strcmp(element, "p") == 0) in endElement()
506 else if (strcmp(element, "s") == 0) in endElement()
518 else if (strcmp(element, "phoneme") == 0) in endElement()
522 else if (strcmp(element, "break") == 0) in endElement()
526 else if (strcmp(element, "prosody") == 0) in endElement()
543 else if (strcmp(element, "audio") == 0) in endElement()
597 if (strcmp(value, "x-low") == 0) in convertToSvoxPitch()
607 else if (strcmp(value, "low") == 0) in convertToSvoxPitch()
617 else if (strcmp(value, "medium") == 0) in convertToSvoxPitch()
627 else if (strcmp(value, "default") == 0) in convertToSvoxPitch()
637 else if (strcmp(value, "high") == 0) in convertToSvoxPitch()
647 else if (strcmp(value, "x-high") == 0) in convertToSvoxPitch()
667 if (strcmp(value, "x-slow") == 0) in convertToSvoxRate()
677 else if (strcmp(value, "slow") == 0) in convertToSvoxRate()
687 else if (strcmp(value, "medium") == 0) in convertToSvoxRate()
697 else if (strcmp(value, "default") == 0) in convertToSvoxRate()
707 else if (strcmp(value, "fast") == 0) in convertToSvoxRate()
717 else if (strcmp(value, "x-fast") == 0) in convertToSvoxRate()
737 if (strcmp(value, "silent") == 0) in convertToSvoxVolume()
747 else if (strcmp(value, "x-low") == 0) in convertToSvoxVolume()
757 else if (strcmp(value, "low") == 0) in convertToSvoxVolume()
767 else if (strcmp(value, "medium") == 0) in convertToSvoxVolume()
777 else if (strcmp(value, "default") == 0) in convertToSvoxVolume()
787 else if (strcmp(value, "loud") == 0) in convertToSvoxVolume()
797 else if (strcmp(value, "x-loud") == 0) in convertToSvoxVolume()
817 if (strcmp(value, "none") == 0) in convertBreakStrengthToTime()
827 else if (strcmp(value, "x-weak") == 0) in convertBreakStrengthToTime()
837 else if (strcmp(value, "weak") == 0) in convertBreakStrengthToTime()
847 else if (strcmp(value, "medium") == 0) in convertBreakStrengthToTime()
857 else if (strcmp(value, "strong") == 0) in convertBreakStrengthToTime()
867 else if (strcmp(value, "x-strong") == 0) in convertBreakStrengthToTime()