Lines Matching defs:one

151     __imp(const __imp& other, const __imp& one, locale::category c);
398 locale::__imp::install_from(const locale::__imp& one)
401 install(const_cast<F*>(static_cast<const F*>(one.use_facet(id))), id);
404 locale::__imp::__imp(const __imp& other, const __imp& one, locale::category c)
418 install_from<_VSTD::collate<char> >(one);
420 install_from<_VSTD::collate<wchar_t> >(one);
425 install_from<_VSTD::ctype<char> >(one);
427 install_from<_VSTD::ctype<wchar_t> >(one);
429 install_from<_VSTD::codecvt<char, char, mbstate_t> >(one);
431 install_from<_VSTD::codecvt<char16_t, char, mbstate_t> >(one);
432 install_from<_VSTD::codecvt<char32_t, char, mbstate_t> >(one);
435 install_from<_VSTD::codecvt<char16_t, char8_t, mbstate_t> >(one);
436 install_from<_VSTD::codecvt<char32_t, char8_t, mbstate_t> >(one);
439 install_from<_VSTD::codecvt<wchar_t, char, mbstate_t> >(one);
444 install_from<moneypunct<char, false> >(one);
445 install_from<moneypunct<char, true> >(one);
447 install_from<moneypunct<wchar_t, false> >(one);
448 install_from<moneypunct<wchar_t, true> >(one);
450 install_from<money_get<char> >(one);
452 install_from<money_get<wchar_t> >(one);
454 install_from<money_put<char> >(one);
456 install_from<money_put<wchar_t> >(one);
461 install_from<numpunct<char> >(one);
463 install_from<numpunct<wchar_t> >(one);
465 install_from<num_get<char> >(one);
467 install_from<num_get<wchar_t> >(one);
469 install_from<num_put<char> >(one);
471 install_from<num_put<wchar_t> >(one);
476 install_from<time_get<char> >(one);
478 install_from<time_get<wchar_t> >(one);
480 install_from<time_put<char> >(one);
482 install_from<time_put<wchar_t> >(one);
487 install_from<_VSTD::messages<char> >(one);
489 install_from<_VSTD::messages<wchar_t> >(one);
549 // only one thread can get in here and it only gets in once
566 // only one thread can get in here and it only gets in once
631 locale::locale(const locale& other, const locale& one, category c)
632 : __locale_(new __imp(*other.__locale_, *one.__locale_, c))