/ndk/sources/cxx-stl/stlport/src/ |
D | locale_impl.cpp | 51 size_t locale::id::_S_max = 27; 76 facets_vec.reserve( locale::id::_S_max ); in _Locale_impl() 120 void _Locale_impl::insert(_Locale_impl *from, const locale::id& n) { in insert() 126 locale::facet* _Locale_impl::insert(locale::facet *f, const locale::id& n) { in insert() 156 this->insert(i2, ctype<char>::id); in insert_ctype_facets() 157 this->insert(i2, codecvt<char, char, mbstate_t>::id); in insert_ctype_facets() 159 this->insert(i2, ctype<wchar_t>::id); in insert_ctype_facets() 160 this->insert(i2, codecvt<wchar_t, char, mbstate_t>::id); in insert_ctype_facets() 212 this->insert(ct, ctype<char>::id); in insert_ctype_facets() 213 this->insert(cvt, codecvt<char, char, mbstate_t>::id); in insert_ctype_facets() [all …]
|
D | locale.cpp | 103 static const locale::id& _Stl_loc_get_index(locale::id& id) { in _Stl_loc_get_index() argument 104 if (id._M_index == 0) { in _Stl_loc_get_index() 106 … static _STLP_VOLATILE __stl_atomic_t _S_index = __STATIC_CAST(__stl_atomic_t, locale::id::_S_max); in _Stl_loc_get_index() 107 id._M_index = _STLP_ATOMIC_INCREMENT(&_S_index); in _Stl_loc_get_index() 111 size_t new_index = locale::id::_S_max++; in _Stl_loc_get_index() 112 id._M_index = new_index; in _Stl_loc_get_index() 115 return id; in _Stl_loc_get_index() 128 void locale::_M_insert(facet* f, locale::id& n) { in _M_insert() 150 impl = new _Locale_impl(locale::id::_S_max, name); in locale() 309 impl->insert( i2, _STLP_STD::collate<char>::id); in locale() [all …]
|
D | locale_impl.h | 98 locale::facet* insert(locale::facet*, const locale::id& n); 99 void insert(_Locale_impl* from, const locale::id& n);
|
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
D | c_locale_win32.c | 180 LCID id; member 319 if (__GetLCIDFromName(name, <ype->lc.id, cp_name, lc_hint) == -1) in _Locale_ctype_create() 323 if ( ltype->lc.id == INVARIANT_LCID && name[0] == 'C' && name[1] == 0 ) in _Locale_ctype_create() 324 { ltype->lc.id = 0x409; } in _Locale_ctype_create() 329 NativeCP = __GetDefaultCP(ltype->lc.id); in _Locale_ctype_create() 360 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ctable); in _Locale_ctype_create() 381 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ltype->ctable); in _Locale_ctype_create() 396 if (__GetLCIDFromName(name, &lnum->lc.id, lnum->cp, lc_hint) == -1) in _Locale_numeric_create() 400 if (lnum->lc.id != INVARIANT_LCID) { in _Locale_numeric_create() 402 __GetLocaleInfoUsingACP(lnum->lc.id, lnum->cp, LOCALE_SDECIMAL, lnum->decimal_point, 4, wbuf, 4); in _Locale_numeric_create() [all …]
|
D | c_wlocale_win32.c | 49 LCMapStringW(ltype->lc.id, LCMAP_LOWERCASE, &in_c, 1, &res, 1); in _WLocale_tolower() 57 LCMapStringW(ltype->lc.id, LCMAP_UPPERCASE, &in_c, 1, &res, 1); in _WLocale_toupper() 72 if (__GetLCIDFromName(name, &lcodecvt->lc.id, cp_name, lc_hint) == -1) in _Locale_codecvt_create() 95 return __GetLocaleName(lcodecvt->lc.id, cp_buf, buf); in _Locale_codecvt_name() 204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2); in _WLocale_strcmp_aux() 236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size); in _WLocale_strxfrm() 248 GetLocaleInfoW(lnum->lc.id, LOCALE_SDECIMAL, buf, 4); in _WLocale_decimal_point() 254 GetLocaleInfoW(lnum->lc.id, LOCALE_STHOUSAND, buf, 4); in _WLocale_thousands_sep() 274 { GetLocaleInfoW(lmon->lc.id, LOCALE_SINTLSYMBOL, buf, (int)bufSize); return buf; } in _WLocale_int_curr_symbol() 277 { GetLocaleInfoW(lmon->lc.id, LOCALE_SCURRENCY, buf, (int)bufSize); return buf; } in _WLocale_currency_symbol() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _locale.h | 103 _STLP_CLASS_DECLSPEC id { struct 190 facet* _M_get_facet(const id&) const; 192 facet* _M_use_facet(const id&) const; 199 void _M_insert(facet* __f, id& __id); 326 inline locale::id& _GetFacetId(const _Facet*) in _GetFacetId() 327 { return _Facet::id; } in _GetFacetId() 329 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const money_get<char, istreambuf_iterator<char, c… 330 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const money_put<char, ostreambuf_iterator<char, c… 331 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const num_get<char, istreambuf_iterator<char, cha… 332 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const num_put<char, ostreambuf_iterator<char, cha… [all …]
|
D | _monetary.h | 70 static locale::id id; variable 102 static _STLP_STATIC_DECLSPEC locale::id id; variable 142 static _STLP_STATIC_DECLSPEC locale::id id; variable 183 static _STLP_STATIC_DECLSPEC locale::id id; variable 222 static _STLP_STATIC_DECLSPEC locale::id id; variable 403 static locale::id id; variable
|
D | _numpunct.h | 62 static _STLP_STATIC_DECLSPEC locale::id id; variable 91 static _STLP_STATIC_DECLSPEC locale::id id; variable
|
D | _codecvt.h | 112 static locale::id id; 164 locale::id codecvt<_InternT, _ExternT, _StateT>::id; 229 static _STLP_STATIC_DECLSPEC locale::id id; variable 326 static _STLP_STATIC_DECLSPEC locale::id id; variable
|
D | _collate.h | 62 static _STLP_STATIC_DECLSPEC locale::id id; variable 98 static _STLP_STATIC_DECLSPEC locale::id id; variable
|
D | _messages_facets.h | 71 static _STLP_STATIC_DECLSPEC locale::id id; variable 104 static _STLP_STATIC_DECLSPEC locale::id id; variable
|
D | _ctype.h | 114 static _STLP_STATIC_DECLSPEC locale::id id; variable 217 static _STLP_STATIC_DECLSPEC locale::id id; variable
|
D | _time_facets.h | 156 static locale::id id; variable 264 static locale::id id; variable
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | regex.h | 426 # define _REG_RE_NAME(id) id argument 427 # define _REG_RM_NAME(id) id argument 429 # define _REG_RE_NAME(id) re_##id argument 430 # define _REG_RM_NAME(id) rm_##id argument
|
D | regex_internal.c | 1056 Idx i1, i2, is, id, delta, sbase; in re_node_set_add_intersect() local 1077 id = dest->nelem - 1; in re_node_set_add_intersect() 1083 while (REG_VALID_INDEX (id) && dest->elems[id] > src1->elems[i1]) in re_node_set_add_intersect() 1084 --id; in re_node_set_add_intersect() 1086 if (! REG_VALID_INDEX (id) || dest->elems[id] != src1->elems[i1]) in re_node_set_add_intersect() 1106 id = dest->nelem - 1; in re_node_set_add_intersect() 1114 if (delta > 0 && REG_VALID_INDEX (id)) in re_node_set_add_intersect() 1117 if (dest->elems[is] > dest->elems[id]) in re_node_set_add_intersect() 1120 dest->elems[id + delta--] = dest->elems[is--]; in re_node_set_add_intersect() 1127 dest->elems[id + delta] = dest->elems[id]; in re_node_set_add_intersect() [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | codecvt_test.cpp | 131 static locale::id id; member 136 locale::id eater_codecvt::id; member in eater_codecvt 138 locale::id& _GetFacetId(const eater_codecvt*) in _GetFacetId() 139 { return eater_codecvt::id; } in _GetFacetId() 275 static locale::id id; member 280 locale::id generator_codecvt::id; member in generator_codecvt 282 locale::id& _GetFacetId(const generator_codecvt*) in _GetFacetId() 283 { return generator_codecvt::id; } in _GetFacetId()
|
D | hash_test.cpp | 266 for ( int id = 400; id != 1; id-- ) { in hmmap2() local 268 int key = (id % 3 == 0 ? 3 : id); in hmmap2() 271 h.insert(make_pair(key, id)); in hmmap2() 272 m.insert(make_pair(key, id)); in hmmap2()
|
D | locale_test.cpp | 231 static locale::id id; member in dummy_facet 234 locale::id dummy_facet::id; member in dummy_facet
|
/ndk/tests/device/test-stlport/unit/ |
D | codecvt_test.cpp | 131 static locale::id id; member 136 locale::id eater_codecvt::id; member in eater_codecvt 138 locale::id& _GetFacetId(const eater_codecvt*) in _GetFacetId() 139 { return eater_codecvt::id; } in _GetFacetId() 275 static locale::id id; member 280 locale::id generator_codecvt::id; member in generator_codecvt 282 locale::id& _GetFacetId(const generator_codecvt*) in _GetFacetId() 283 { return generator_codecvt::id; } in _GetFacetId()
|
D | hash_test.cpp | 266 for ( int id = 400; id != 1; id-- ) { in hmmap2() local 268 int key = (id % 3 == 0 ? 3 : id); in hmmap2() 271 h.insert(make_pair(key, id)); in hmmap2() 272 m.insert(make_pair(key, id)); in hmmap2()
|
D | locale_test.cpp | 231 static locale::id id; member in dummy_facet 234 locale::id dummy_facet::id; member in dummy_facet
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | distrib.inp | 2 …edu (s1.msi.umn.edu [128.101.24.1]) by cygnus.com (8.6.9/8.6.9) with ESMTP id SAA21692 for <crash@… 3 …gint.cygnus.com [140.174.1.1]) by s1.msi.umn.edu (8.6.10/8.6.9) with ESMTP id TAA13398 for <molend… 4 …(phydeaux.cygnus.com [140.174.1.85]) by cygnus.com (8.6.9/8.6.9) with SMTP id SAA21688 for <molend… 6 Received: by phydeaux.cygnus.com (5.65/4.7) id AA06931; Wed, 8 Mar 1995 18:02:28 -0800
|
D | runtests.c | 56 run_a_test (int id, const struct a_test * t) in run_a_test() argument 87 printf ("test %d\n", id); in run_a_test() 101 printf ("test %d\n", id); in run_a_test()
|
/ndk/sources/host-tools/make-3.81/ |
D | remote-cstms.c | 220 permit.id); in start_remote_job() 243 (void) sprintf (id_buf, "%x", permit.id); in start_remote_job() 298 remote_kill (int id, int sig) in remote_kill() argument
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | ChangeLog | 16 * cat-id-tbl.c: Remove file. 17 * stamp-cat-id: Remove file.
|