/ndk/sources/android/support/include/ |
string.h | 32 #include <monetary.h>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.category/ |
category.pass.cpp | 33 assert(std::locale::monetary); 39 & std::locale::monetary 45 | std::locale::monetary 54 test(std::locale::monetary);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
monetary.h | 1 /* Header file for monetary value formatting functions. 39 /* Formatting a monetary value according to the current locale. */ 47 /* Formatting a monetary value according to the current locale. */ 55 # include <bits/monetary-ldbl.h> 60 #endif /* monetary.h */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
monetary.h | 1 /* Header file for monetary value formatting functions. 39 /* Formatting a monetary value according to the current locale. */ 47 /* Formatting a monetary value according to the current locale. */ 55 # include <bits/monetary-ldbl.h> 60 #endif /* monetary.h */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
monetary.h | 1 /* Header file for monetary value formatting functions. 39 /* Formatting a monetary value according to the current locale. */ 47 /* Formatting a monetary value according to the current locale. */ 55 # include <bits/monetary-ldbl.h> 60 #endif /* monetary.h */
|
/external/stlport/src/ |
facets_byname.cpp | 515 _Locale_monetary * monetary) { 516 switch (_Locale_p_sign_posn(monetary)) { 520 if (_Locale_p_cs_precedes(monetary)) { 523 if (_Locale_p_sep_by_space(monetary)) { 535 if (_Locale_p_sep_by_space(monetary)) { 547 if (_Locale_p_cs_precedes(monetary)) { 550 if (_Locale_p_sep_by_space(monetary)) { 564 if (_Locale_p_sep_by_space(monetary)) { 578 if (_Locale_p_cs_precedes(monetary)) { 582 if (_Locale_p_sep_by_space(monetary)) { [all...] |
locale.cpp | 203 L->name += string("LC_MONETARY=") + _Locale_extract_monetary_name((c & locale::monetary) ? monetary_name : name, buf, 0, &__err_code) + ";"; 281 if (c & locale::monetary) 322 if (c & monetary) { 438 const locale::category locale::monetary; member in class:locale
|
/ndk/sources/cxx-stl/stlport/src/ |
facets_byname.cpp | 515 _Locale_monetary * monetary) { 516 switch (_Locale_p_sign_posn(monetary)) { 520 if (_Locale_p_cs_precedes(monetary)) { 523 if (_Locale_p_sep_by_space(monetary)) { 535 if (_Locale_p_sep_by_space(monetary)) { 547 if (_Locale_p_cs_precedes(monetary)) { 550 if (_Locale_p_sep_by_space(monetary)) { 564 if (_Locale_p_sep_by_space(monetary)) { 578 if (_Locale_p_cs_precedes(monetary)) { 582 if (_Locale_p_sep_by_space(monetary)) { [all...] |
locale.cpp | 203 L->name += string("LC_MONETARY=") + _Locale_extract_monetary_name((c & locale::monetary) ? monetary_name : name, buf, 0, &__err_code) + ";"; 281 if (c & locale::monetary) 322 if (c & monetary) { 438 const locale::category locale::monetary; member in class:locale
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
locale.py | 61 Returns numeric and monetary locale-specific parameters. 140 def _group(s, monetary=False): 142 thousands_sep = conv[monetary and 'mon_thousands_sep' or 'thousands_sep'] 143 grouping = conv[monetary and 'mon_grouping' or 'grouping'] 185 def format(percent, value, grouping=False, monetary=False, *additional): 196 return _format(percent, value, grouping, monetary, *additional) 198 def _format(percent, value, grouping=False, monetary=False, *additional): 208 parts[0], seps = _group(parts[0], monetary=monetary) 209 decimal_point = localeconv()[monetary and 'mon_decimal_point [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
locale.py | 61 Returns numeric and monetary locale-specific parameters. 140 def _group(s, monetary=False): 142 thousands_sep = conv[monetary and 'mon_thousands_sep' or 'thousands_sep'] 143 grouping = conv[monetary and 'mon_grouping' or 'grouping'] 185 def format(percent, value, grouping=False, monetary=False, *additional): 196 return _format(percent, value, grouping, monetary, *additional) 198 def _format(percent, value, grouping=False, monetary=False, *additional): 208 parts[0], seps = _group(parts[0], monetary=monetary) 209 decimal_point = localeconv()[monetary and 'mon_decimal_point [all...] |
/ndk/sources/android/support/src/musl-locale/ |
strfmon.c | 4 #include <monetary.h>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/ |
locale_char_pointer_cat.pass.cpp | 74 std::locale loc2(loc, LOCALE_en_US_UTF_8, std::locale::monetary);
|
locale_locale_cat.pass.cpp | 74 std::locale loc2(loc, std::locale(LOCALE_en_US_UTF_8), std::locale::monetary);
|
locale_string_cat.pass.cpp | 74 std::locale loc2(loc, std::string(LOCALE_en_US_UTF_8), std::locale::monetary);
|
/external/stlport/ |
Android.mk | 16 src/monetary.cpp \
|
/external/stlport/stlport/stl/ |
_locale.h | 113 _STLP_STATIC_CONSTANT(category, monetary = 0x040); 117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 113 _STLP_STATIC_CONSTANT(category, monetary = 0x040); 117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
locale_classes.h | 92 * monetary, and messages. They form a bitmask that supports union and 102 static const category monetary = 1L << 4; member in class:locale 105 time | monetary | messages); 293 // collate, ctype, monetary, numeric, time, and messages. These
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
locale_classes.h | 95 * monetary, and messages. They form a bitmask that supports union and 105 static const category monetary = 1L << 4; member in class:locale 108 time | monetary | messages); 296 // collate, ctype, monetary, numeric, time, and messages. These
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
locale_classes.h | 95 * monetary, and messages. They form a bitmask that supports union and 105 static const category monetary = 1L << 4; member in class:locale 108 time | monetary | messages); 296 // collate, ctype, monetary, numeric, time, and messages. These
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
locale_classes.h | 92 * monetary, and messages. They form a bitmask that supports union and 102 static const category monetary = 1L << 4; member in class:locale 105 time | monetary | messages); 293 // collate, ctype, monetary, numeric, time, and messages. These
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 111 _STLP_STATIC_CONSTANT(category, monetary = 0x040); 115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
locale_classes.h | 92 * monetary, and messages. They form a bitmask that supports union and 102 static const category monetary = 1L << 4; member in class:locale 105 time | monetary | messages); 293 // collate, ctype, monetary, numeric, time, and messages. These
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 111 _STLP_STATIC_CONSTANT(category, monetary = 0x040); 115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
|