• Home
  • Raw
  • Download

Lines Matching refs:strcmp

115     if (strcmp(element, "speak") == 0)  in startElement()
136 if (strcmp(attributes[i], "xml:lang") == 0) in startElement()
147 else if (strcmp(element, "p") == 0) /* currently no attributes are supported for <p> */ in startElement()
159 else if (strcmp(element, "s") == 0) /* currently no attributes are supported for <s> */ in startElement()
171 else if (strcmp(element, "phoneme") == 0) /* only ipa and xsampa alphabets are supported */ in startElement()
182 if (strcmp(attributes[i], "alphabet") == 0) in startElement()
184 if (strcmp(attributes[i+1], "xsampa") == 0) in startElement()
189 if (strcmp(attributes[i], "ph") == 0) in startElement()
277 else if (strcmp(element, "break") == 0) in startElement()
292 if (strcmp(attributes[i], "time") == 0) in startElement()
302 else if (strcmp(attributes[i], "strength") == 0 && !time) in startElement()
329 …else if (strcmp(element, "prosody") == 0) /* only pitch, rate and volume attributes are supported … in startElement()
333 if (strcmp(attributes[i], "pitch") == 0) in startElement()
376 else if (strcmp(attributes[i], "rate") == 0) in startElement()
419 else if (strcmp(attributes[i], "volume") == 0) in startElement()
459 else if (strcmp(element, "audio") == 0) /* only 16kHz 16bit wav files are supported as src */ in startElement()
473 if (strcmp(attributes[i], "src") == 0) in startElement()
497 if (strcmp(element, "speak") == 0) in endElement()
501 else if (strcmp(element, "p") == 0) in endElement()
513 else if (strcmp(element, "s") == 0) in endElement()
525 else if (strcmp(element, "phoneme") == 0) in endElement()
529 else if (strcmp(element, "break") == 0) in endElement()
533 else if (strcmp(element, "prosody") == 0) in endElement()
550 else if (strcmp(element, "audio") == 0) in endElement()
604 if (strcmp(value, "x-low") == 0) in convertToSvoxPitch()
614 else if (strcmp(value, "low") == 0) in convertToSvoxPitch()
624 else if (strcmp(value, "medium") == 0) in convertToSvoxPitch()
634 else if (strcmp(value, "default") == 0) in convertToSvoxPitch()
644 else if (strcmp(value, "high") == 0) in convertToSvoxPitch()
654 else if (strcmp(value, "x-high") == 0) in convertToSvoxPitch()
674 if (strcmp(value, "x-slow") == 0) in convertToSvoxRate()
684 else if (strcmp(value, "slow") == 0) in convertToSvoxRate()
694 else if (strcmp(value, "medium") == 0) in convertToSvoxRate()
704 else if (strcmp(value, "default") == 0) in convertToSvoxRate()
714 else if (strcmp(value, "fast") == 0) in convertToSvoxRate()
724 else if (strcmp(value, "x-fast") == 0) in convertToSvoxRate()
744 if (strcmp(value, "silent") == 0) in convertToSvoxVolume()
754 else if (strcmp(value, "x-low") == 0) in convertToSvoxVolume()
764 else if (strcmp(value, "low") == 0) in convertToSvoxVolume()
774 else if (strcmp(value, "medium") == 0) in convertToSvoxVolume()
784 else if (strcmp(value, "default") == 0) in convertToSvoxVolume()
794 else if (strcmp(value, "loud") == 0) in convertToSvoxVolume()
804 else if (strcmp(value, "x-loud") == 0) in convertToSvoxVolume()
824 if (strcmp(value, "none") == 0) in convertBreakStrengthToTime()
834 else if (strcmp(value, "x-weak") == 0) in convertBreakStrengthToTime()
844 else if (strcmp(value, "weak") == 0) in convertBreakStrengthToTime()
854 else if (strcmp(value, "medium") == 0) in convertBreakStrengthToTime()
864 else if (strcmp(value, "strong") == 0) in convertBreakStrengthToTime()
874 else if (strcmp(value, "x-strong") == 0) in convertBreakStrengthToTime()