Searched defs:newlocale (Results 1 - 6 of 6) sorted by relevance

/external/libcxx/include/support/xlocale/
H A D__nop_locale_mgmt.h27 static inline locale_t newlocale(int, const char *, locale_t) { function
/external/libcxx/include/support/ibm/
H A Dlocale_mgmt_aix.h39 locale_t newlocale(int category_mask, const char *locale, locale_t base) function
/external/libcxx/src/support/win32/
H A Dlocale_win32.cpp22 locale_t newlocale( int mask, const char * locale, locale_t /*base*/ ) function
/external/libexif/test/nls/
H A Dtest-codeset.c143 const char *newlocale = setlocale(LC_ALL, ""); local
152 if (newlocale == NULL) {
153 printf("Locale not available: \"%s\"\n", newlocale);
163 newlocale
168 if (strncmp(newlocale, testcases[i].locale, localelen) == 0) {
173 printf("No test case found for locale: %s\n", newlocale);
/external/fmtlib/fmt/
H A Dposix.h319 static locale_t newlocale(int category_mask, const char *locale, locale_t) { function in class:fmt::Locale
339 Locale() : locale_(newlocale(LC_NUMERIC_MASK, "C", FMT_NULL)) {
/external/fmtlib/test/
H A Dposix-mock-test.cc475 MOCK_METHOD3(newlocale, LocaleType (int category_mask, const char *locale,
488 return LocaleMock::instance->newlocale(category, locale, 0);
501 LocaleType newlocale(int category_mask, const char *locale, LocaleType base) { function
502 return LocaleMock::instance->newlocale(category_mask, locale, base);
523 EXPECT_CALL(mock, newlocale(222, StrEq("foo"), locale));
524 newlocale(222, "foo", locale);
533 EXPECT_CALL(mock, newlocale(LC_NUMERIC_MASK, StrEq("C"), 0))
542 EXPECT_CALL(mock, newlocale(_, _, _))

Completed in 208 milliseconds