Lines Matching refs:locale
2 Test setlocale() function : usage variations - setting system locale as null
17 /*If locale is NULL, the locale names will be set from the values of environment variables with the…
19 echo "*** Testing setlocale() : usage variations - Setting system locale = null ***\n";
21 //initially setting the locale
24 echo "Locale info, before setting the locale\n";
25 //returns current locale,before executing setlocale() .
29 //Testing setlocale() by giving locale = null
30 echo "Setting system locale, category = LC_ALL and locale = null\n";
33 echo "Locale info, after setting the locale\n";
34 //Returns Current locale,after executing setlocale().
38 echo "Checking new locale in the system, Expected : the locale names will be set from the values of…
49 *** Testing setlocale() : usage variations - Setting system locale = null ***
50 Locale info, before setting the locale
95 Setting system locale, category = LC_ALL and locale = null
96 Locale info, after setting the locale
141 Checking new locale in the system, Expected : the locale names will be set from the values of envir…