Lines Matching refs:property
531 int textlen; /* property string length */
551 /* Compose the property strings. */
1305 * Set property. The supported properties are: language, rate, pitch and volume.
1306 * @property - name of property to set
1311 tts_result TtsEngine::setProperty( const char * property, const char * value, const size_t size )
1317 /* Set a specific property for the engine.
1320 if (property == NULL) {
1321 LOGE("setProperty called with property NULL");
1330 if (strncmp(property, "language", 8) == 0) {
1344 } else if (strncmp(property, "rate", 4) == 0) {
1354 } else if (strncmp(property, "pitch", 5) == 0) {
1364 } else if (strncmp(property, "volume", 6) == 0) {
1381 * Get the property. Supported properties are: language, rate, pitch and volume.
1382 * @propertyproperty to get
1383 * @value - buffer which will receive value of property
1387 tts_result TtsEngine::getProperty( const char * property, char * value, size_t * iosize )
1389 /* Get the property for the engine.
1390 This property was previously set by setProperty or by default. */
1392 if (property == NULL) {
1393 LOGE("getProperty called with property NULL");
1402 if (strncmp(property, "language", 8) == 0) {
1413 } else if (strncmp(property, "rate", 4) == 0) {
1422 } else if (strncmp(property, "pitch", 5) == 0) {
1431 } else if (strncmp(property, "volume", 6) == 0) {
1442 /* Unknown property */
1443 LOGE("Unsupported property");
1496 /* Add property tags to the string - if any. */
1538 /* Add property tags to the string - if any. */