Lines Matching defs:string
65 "string", /* A string token, such as "MonthNames" */
108 getToken(NULL, NULL, status); bad - value is now a different string
406 /* terminate the string */
572 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
578 /* create the string now - tokenValue doesn't survive a call to getToken (and therefore
610 /* create the string now - tokenValue doesn't survive a call to getToken (and therefore
1312 /* string arrays are a special case */
1362 char *string;
1380 /* '{' . string [','] '}' */
1399 string = getInvariantString(state, NULL, NULL, status);
1408 value = uprv_strtoul(string, &stopstring, 0);/* make intvector support decimal,hexdigit,octal digit ranging from -2^31-2^32-1*/
1409 len=(uint32_t)(stopstring-string);
1411 if(len==uprv_strlen(string))
1414 uprv_free(string);
1419 uprv_free(string);
1450 char *string;
1458 string = getInvariantString(state, &line, NULL, status);
1460 if (string == NULL || U_FAILURE(*status))
1469 uprv_free(string);
1477 count = (uint32_t)uprv_strlen(string);
1484 uprv_free(string);
1491 toConv[0] = string[i];
1492 toConv[1] = string[i + 1];
1499 uprv_free(string);
1512 uprv_free(string);
1513 error(line, "Encountered invalid binary string");
1522 uprv_free(string);
1532 char *string;
1536 string = getInvariantString(state, NULL, NULL, status);
1538 if (string == NULL || U_FAILURE(*status))
1547 uprv_free(string);
1555 if (uprv_strlen(string) <= 0)
1562 value = uprv_strtoul(string, &stopstring, 0);
1563 len=(uint32_t)(stopstring-string);
1564 if(len==uprv_strlen(string))
1572 uprv_free(string);
1781 U_STRING_DECL(k_type_string, "string", 6);
1826 {"string", k_type_string, parseString},
1845 U_STRING_INIT(k_type_string, "string", 6);
1972 { string , => string array
1974 { string { => table
1976 { string :/{ => table
1977 { string } => string
2008 error(line, "Unexpected token after string, expected ',', '{' or '}'");