Home | History | Annotate | Download | only in common

Lines Matching refs:keywords

91             char *keywords, int32_t keywordCapacity,
890 char *keywords;
901 : keywords((char *)&fgClassID), current((char *)&fgClassID), length(0) {
906 keywords = (char *)uprv_malloc(keywordLen+1);
907 if (keywords == NULL) {
911 uprv_memcpy(keywords, keys, keywordLen);
912 keywords[keywordLen] = 0;
913 current = keywords + currentIndex;
925 return new KeywordEnumeration(keywords, length, (int32_t)(current - keywords), status);
929 char *kw = keywords;
964 current = keywords;
971 uprv_free(keywords);
977 char keywords[256];
985 int32_t keyLen = locale_getKeywords(variantStart+1, '@', keywords, keywordCapacity, NULL, 0, NULL, FALSE, &status);
987 result = new KeywordEnumeration(keywords, keyLen, 0, status);