/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/ |
D | c_locale_dummy.c | 50 static const wchar_t *_empty_wstr = L""; 348 { return L'.'; } in _WLocale_decimal_point() 350 { return L','; } in _WLocale_thousands_sep() 358 { return L"true"; } in _WLocale_true() 360 { return L"false"; } in _WLocale_false() 405 { return L'.'; } in _WLocale_mon_decimal_point() 407 { return L','; } in _WLocale_mon_thousands_sep() 490 { L"January", L"February", L"March", L"April", L"May", L"June", 491 L"July", L"August", L"September", L"October", L"November", L"December" }; 497 { L"Jan", L"Feb", L"Mar", L"Apr", L"May", L"Jun", [all …]
|
/ndk/sources/host-tools/toolbox/ |
D | echo_win.c | 49 while (argc > 1 && argv[1][0] == L'-') { in main() 53 case L'n': in main() 57 case L'h': in main() 58 case L'?': in main() 59 _tprintf(L"Usage: echo.exe [-n] text1 text2...\r\n"); in main() 63 _ftprintf(stderr,L"Unknown option: %s\r\n", arg); in main() 70 const TCHAR* comma = L""; in main() 72 _tprintf(L"%s%s", comma, argv[1]); in main() 73 comma = L" "; in main() 79 _tprintf(L"\r\n"); in main()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | time_facets.cpp | 47 L"Sun", L"Mon", L"Tue", L"Wed", L"Thu", L"Fri", L"Sat", 48 L"Sunday", L"Monday", L"Tuesday", L"Wednesday", L"Thursday", 49 L"Friday", L"Saturday"}; 52 L"Jan", L"Feb", L"Mar", L"Apr", L"May", L"Jun", 53 L"Jul", L"Aug", L"Sep", L"Oct", L"Nov", L"Dec", 54 L"January", L"February", L"March", L"April", L"May", L"June", 55 L"July", L"August", L"September", L"October", L"November", L"December"}; 93 table._M_am_pm[0] = L"AM"; in _Init_timeinfo() 94 table._M_am_pm[1] = L"PM"; in _Init_timeinfo()
|
D | locale.cpp | 124 locale::locale(const locale& L) _STLP_NOTHROW in locale() argument 125 : _M_impl( _get_Locale_impl( L._M_impl ) ) in locale() 190 static void _Stl_loc_combine_names_aux(_Locale_impl* L, in _Stl_loc_combine_names_aux() argument 199 …L->name = string("LC_CTYPE=") + _Locale_extract_ctype_name((c & locale::ctype) ? ctype_name : name… in _Stl_loc_combine_names_aux() 200 …L->name += string("LC_TIME=") + _Locale_extract_time_name((c & locale::time) ? time_name : name, b… in _Stl_loc_combine_names_aux() 201 …L->name += string("LC_NUMERIC=") + _Locale_extract_numeric_name((c & locale::numeric) ? numeric_na… in _Stl_loc_combine_names_aux() 202 …L->name += string("LC_COLLATE=") + _Locale_extract_collate_name((c & locale::collate) ? collate_na… in _Stl_loc_combine_names_aux() 203 …L->name += string("LC_MONETARY=") + _Locale_extract_monetary_name((c & locale::monetary) ? monetar… in _Stl_loc_combine_names_aux() 204 …L->name += string("LC_MESSAGES=") + _Locale_extract_messages_name((c & locale::messages) ? message… in _Stl_loc_combine_names_aux() 209 static void _Stl_loc_combine_names(_Locale_impl* L, in _Stl_loc_combine_names() argument [all …]
|
D | numpunct.cpp | 34 wchar_t numpunct<wchar_t>::do_decimal_point() const { return L'.'; } in do_decimal_point() 35 wchar_t numpunct<wchar_t>::do_thousands_sep() const { return L','; } in do_thousands_sep() 37 wstring numpunct<wchar_t>::do_truename() const { return L"true"; } in do_truename() 38 wstring numpunct<wchar_t>::do_falsename() const { return L"false"; } in do_falsename()
|
D | messages.cpp | 29 void _Catalog_locale_map::insert(nl_catd_type key, const locale& L) { in insert() argument 40 wctype const& wct = use_facet<wctype>(L); in insert() 46 M->insert(map_type::value_type(key, L)); in insert() 124 _Messages::catalog _Messages::do_open(const string& filename, const locale& L) const { in do_open() 130 _M_map->insert(result, L); in do_open() 230 messages_byname<wchar_t>::do_open(const string& filename, const locale& L) const in do_open() 231 { return _M_impl->do_open(filename, L); } in do_open()
|
D | monetary.cpp | 41 static const wchar_t _S_empty_wstring[] = L""; 82 wchar_t moneypunct<wchar_t, true>::do_decimal_point() const {return L' ';} in do_decimal_point() 83 wchar_t moneypunct<wchar_t, true>::do_thousands_sep() const {return L' ';} in do_thousands_sep() 102 wchar_t moneypunct<wchar_t, false>::do_decimal_point() const {return L' ';} in do_decimal_point() 103 wchar_t moneypunct<wchar_t, false>::do_thousands_sep() const {return L' ';} in do_thousands_sep()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | ctype_facets_test.cpp | 177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w() 178 CPPUNIT_CHECK( wct.is(ctype_base::upper, L'A') ); in _ctype_facet_w() 179 CPPUNIT_CHECK( wct.is(ctype_base::lower, L'a') ); in _ctype_facet_w() 180 CPPUNIT_CHECK( wct.is(ctype_base::alpha, L'A') ); in _ctype_facet_w() 181 CPPUNIT_CHECK( wct.is(ctype_base::space, L' ') ); in _ctype_facet_w() 182 CPPUNIT_CHECK( !wct.is(ctype_base::space, L'2') ); in _ctype_facet_w() 183 CPPUNIT_CHECK( wct.is(ctype_base::punct, L'.') ); in _ctype_facet_w() 184 CPPUNIT_CHECK( wct.is(ctype_base::xdigit, L'a') ); in _ctype_facet_w() 189 wchar_t values[] = L"0Aa ."; in _ctype_facet_w() 219 wchar_t range[] = L"abAc123 ."; in _ctype_facet_w() [all …]
|
D | string_test.cpp | 1164 wstring one(L"one"), two(L"two"), three(L"three"); in template_wexpression() 1165 wstring space(L" "); in template_wexpression() 1168 wstring result(one + L' ' + two + L' ' + three); in template_wexpression() 1169 CPPUNIT_CHECK( result == L"one two three" ); in template_wexpression() 1173 wstring result(one + L' ' + two + L' ' + three, 4); in template_wexpression() 1174 CPPUNIT_CHECK( result == L"two three" ); in template_wexpression() 1178 wstring result(one + L' ' + two + L' ' + three, 4, 3); in template_wexpression() 1179 CPPUNIT_CHECK( result == L"two" ); in template_wexpression() 1183 CPPUNIT_CHECK( (L' ' + one) == L" one" ); in template_wexpression() 1184 CPPUNIT_CHECK( (one + L' ') == L"one " ); in template_wexpression() [all …]
|
D | fstream_test.cpp | 474 s << L"1234567890\n"; in seek() 478 …wchar_t b1[] = { L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x… in seek() 486 CPPUNIT_CHECK( b1[9] == L'0' ); in seek() 497 wchar_t b2[10] = { L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y' }; in seek() 500 CPPUNIT_CHECK( b2[4] == L'5' ); in seek()
|
D | collate_facets_test.cpp | 89 wchar_t const str1[] = L"abcdef1"; in collate_facet() 90 wchar_t const str2[] = L"abcdef2"; in collate_facet() 109 wstring strs[] = {L"abdd", L"abcd", L"abbd", L"abcd"}; in collate_facet() 117 CPPUNIT_ASSERT( strs[0] == L"abbd" ); in collate_facet() 118 CPPUNIT_ASSERT( strs[1] == L"abcd" ); in collate_facet() 119 CPPUNIT_ASSERT( strs[2] == L"abcd" ); in collate_facet() 120 CPPUNIT_ASSERT( strs[3] == L"abdd" ); in collate_facet()
|
D | bitset_test.cpp | 71 CPPUNIT_ASSERT( wrepresentation == L"1000100010001" ); in bitset1() 99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" ); in iostream()
|
/ndk/tests/device/test-stlport/unit/ |
D | ctype_facets_test.cpp | 177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w() 178 CPPUNIT_CHECK( wct.is(ctype_base::upper, L'A') ); in _ctype_facet_w() 179 CPPUNIT_CHECK( wct.is(ctype_base::lower, L'a') ); in _ctype_facet_w() 180 CPPUNIT_CHECK( wct.is(ctype_base::alpha, L'A') ); in _ctype_facet_w() 181 CPPUNIT_CHECK( wct.is(ctype_base::space, L' ') ); in _ctype_facet_w() 182 CPPUNIT_CHECK( !wct.is(ctype_base::space, L'2') ); in _ctype_facet_w() 183 CPPUNIT_CHECK( wct.is(ctype_base::punct, L'.') ); in _ctype_facet_w() 184 CPPUNIT_CHECK( wct.is(ctype_base::xdigit, L'a') ); in _ctype_facet_w() 189 wchar_t values[] = L"0Aa ."; in _ctype_facet_w() 219 wchar_t range[] = L"abAc123 ."; in _ctype_facet_w() [all …]
|
D | string_test.cpp | 1164 wstring one(L"one"), two(L"two"), three(L"three"); in template_wexpression() 1165 wstring space(L" "); in template_wexpression() 1168 wstring result(one + L' ' + two + L' ' + three); in template_wexpression() 1169 CPPUNIT_CHECK( result == L"one two three" ); in template_wexpression() 1173 wstring result(one + L' ' + two + L' ' + three, 4); in template_wexpression() 1174 CPPUNIT_CHECK( result == L"two three" ); in template_wexpression() 1178 wstring result(one + L' ' + two + L' ' + three, 4, 3); in template_wexpression() 1179 CPPUNIT_CHECK( result == L"two" ); in template_wexpression() 1183 CPPUNIT_CHECK( (L' ' + one) == L" one" ); in template_wexpression() 1184 CPPUNIT_CHECK( (one + L' ') == L"one " ); in template_wexpression() [all …]
|
D | fstream_test.cpp | 474 s << L"1234567890\n"; in seek() 478 …wchar_t b1[] = { L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x', L'x… in seek() 486 CPPUNIT_CHECK( b1[9] == L'0' ); in seek() 497 wchar_t b2[10] = { L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y' }; in seek() 500 CPPUNIT_CHECK( b2[4] == L'5' ); in seek()
|
D | collate_facets_test.cpp | 89 wchar_t const str1[] = L"abcdef1"; in collate_facet() 90 wchar_t const str2[] = L"abcdef2"; in collate_facet() 109 wstring strs[] = {L"abdd", L"abcd", L"abbd", L"abcd"}; in collate_facet() 117 CPPUNIT_ASSERT( strs[0] == L"abbd" ); in collate_facet() 118 CPPUNIT_ASSERT( strs[1] == L"abcd" ); in collate_facet() 119 CPPUNIT_ASSERT( strs[2] == L"abcd" ); in collate_facet() 120 CPPUNIT_ASSERT( strs[3] == L"abdd" ); in collate_facet()
|
D | bitset_test.cpp | 71 CPPUNIT_ASSERT( wrepresentation == L"1000100010001" ); in bitset1() 99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" ); in iostream()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | symlinks | 3 $description = "Test the -L option."; 5 $details = "Verify that symlink handling with and without -L works properly."; 26 # Without -L, nothing should happen 27 # With -L, it should update targ 30 run_make_test(undef, '-L', "make targ from sym"); 35 run_make_test(undef, '-L', "make targ from sym"); 40 run_make_test(undef, '-L', "#MAKE#: `targ' is up to date."); 47 # Without -L, nothing should happen 48 # With -L, it should update targ 50 run_make_test(undef, '-L', "make targ from sym"); [all …]
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | dc.sed | 38 /|?L/b Load 49 /|?;/ s/|?;\([^{}]\)/|?~[s}s{L{s}q]S}[S}l\1L}1-d0>}s\1L\1l{xS\1]dS{xL}/ 50 /|?:/ s/|?:\([^{}]\)/|?~[s}L{s}L{s}L}s\1q]S}S}S{[L}1-d0>}S}l\1s\1L\1l{xS\1]dS{x/
|
D | flipcase.sed | 1 s,\([^A-Za-z]*\)\([A-Za-z]*\),\1\L\u\2,g
|
D | modulo.good | 6 s%@LDFLAGS@%-L/usr/lib%g
|
/ndk/sources/host-tools/make-3.81/config/ |
D | lib-link.m4 | 218 -L*) 219 dir=`echo "X$x" | sed -e 's/^X-L//'` 244 LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" 290 dnl Rely on "-L$found_dir". 296 if test "X$x" = "X-L$found_dir"; then 302 LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" 306 dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" 315 dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" 329 LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" 388 -L*) [all …]
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | lib-link.m4 | 309 -L*) 310 dir=`echo "X$x" | sed -e 's/^X-L//'` 360 LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" 408 dnl Rely on "-L$found_dir". 414 if test "X$x" = "X-L$found_dir"; then 420 LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" 424 dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" 433 dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" 447 LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" 516 -L*) [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | amiga.c | 81 if (SetSignal(0L,0L) & SIGBREAKF_CTRL_C) in MyExecute()
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | error.c | 163 fputws_unlocked (L"out of memory\n", stderr); in error_tail() 195 wmessage = (wchar_t *) L"???"; in error_tail()
|