Lines Matching refs:locale
2 Test setlocale() function : usage variations - setting system locale as null
16 /*If locale is NULL, the locale names will be set from the values of environment variables with the…
18 echo "*** Testing setlocale() : usage variations - Setting system locale = null ***\n";
20 //initially setting the locale
23 echo "Locale info, before setting the locale\n";
24 //returns current locale,before executing setlocale() .
28 //Testing setlocale() by giving locale = null
29 echo "Setting system locale, category = LC_ALL and locale = null\n";
32 echo "Locale info, after setting the locale\n";
33 //Returns Current locale,after executing setlocale().
37 echo "Checking new locale in the system, Expected : the locale names will be set from the values of…
48 *** Testing setlocale() : usage variations - Setting system locale = null ***
49 Locale info, before setting the locale
98 Setting system locale, category = LC_ALL and locale = null
99 Locale info, after setting the locale
148 Checking new locale in the system, Expected : the locale names will be set from the values of envir…