Lines Matching defs:time
280 strcat(m_data, "<break time='");
281 char* time = NULL;
285 if (strcmp(attributes[i], "time") == 0)
287 time = new char[strlen(attributes[i+1]) + 1];
288 if (!time)
293 strcpy(time, attributes[i+1]);
295 else if (strcmp(attributes[i], "strength") == 0 && !time)
297 time = convertBreakStrengthToTime(attributes[i+1]);
300 if (!time)
302 time = new char[6];
303 if (!time)
308 strcpy(time, SSML_BREAK_WEAK); /* if no time or strength attributes are specified, default to weak break */
310 if (strlen(m_data) + strlen(time) + 4 > (size_t)m_datasize)
318 strcat(m_data, time);
812 Converts SSML break strength labels to SVOX break time