Home | History | Annotate | Download | only in cintltst

Lines Matching full:maxresultsize

858     int32_t maxresultsize;
884 maxresultsize=0;
885 maxresultsize=uloc_getDisplayLanguage(testLocale, displayLocale, NULL, maxresultsize, &status);
889 testLang=(UChar*)malloc(sizeof(UChar) * (maxresultsize+1));
890 uloc_getDisplayLanguage(testLocale, displayLocale, testLang, maxresultsize + 1, &status);
900 maxresultsize=0;
901 maxresultsize=uloc_getDisplayScript(testLocale, displayLocale, NULL, maxresultsize, &status);
905 testScript=(UChar*)malloc(sizeof(UChar) * (maxresultsize+1));
906 uloc_getDisplayScript(testLocale, displayLocale, testScript, maxresultsize + 1, &status);
916 maxresultsize=0;
917 maxresultsize=uloc_getDisplayCountry(testLocale, displayLocale, NULL, maxresultsize, &status);
921 testCtry=(UChar*)malloc(sizeof(UChar) * (maxresultsize+1));
922 uloc_getDisplayCountry(testLocale, displayLocale, testCtry, maxresultsize + 1, &status);
932 maxresultsize=0;
933 maxresultsize=uloc_getDisplayVariant(testLocale, displayLocale, NULL, maxresultsize, &status);
937 testVar=(UChar*)malloc(sizeof(UChar) * (maxresultsize+1));
938 uloc_getDisplayVariant(testLocale, displayLocale, testVar, maxresultsize + 1, &status);
948 maxresultsize=0;
949 maxresultsize=uloc_getDisplayName(testLocale, displayLocale, NULL, maxresultsize, &status);
953 testName=(UChar*)malloc(sizeof(UChar) * (maxresultsize+1));
954 uloc_getDisplayName(testLocale, displayLocale, testName, maxresultsize + 1, &status);